
:root {
    --ink: #0f172a;
    --muted: #475569;
    --ocean: #0b5c62;
    --ocean-dark: #083f43;
    --sand: #f5efe6;
    --coral: #ff7a59;
    --lime: #c7f5d9;
    --white: #ffffff;
    --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.12);
    --shadow-strong: 0 28px 80px rgba(15, 23, 42, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--ink);
    background: var(--sand);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Fraunces', serif;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
}

.mwp-nav {
    background: rgba(245, 239, 230, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-toggler {
    border: 1px solid rgba(15, 23, 42, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(15, 23, 42, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    background-size: 1.25em 1.25em;
}

.brand-mark {
    background: var(--ocean);
    color: var(--white);
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 12px;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
}

.brand-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
}

.nav-link {
    color: var(--ink) !important;
    font-weight: 500;
    margin-left: 16px;
}

.nav-link:hover {
    color: var(--ocean) !important;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(199, 245, 217, 0.6), transparent 50%),
        radial-gradient(circle at 80% 10%, rgba(255, 122, 89, 0.4), transparent 45%),
        linear-gradient(120deg, var(--ocean) 0%, var(--ocean-dark) 60%, #051f23 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.hero-copy .eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    margin-bottom: 20px;
}

.hero-copy .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 28px 0 30px;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.meta-title {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 6px;
}

.hero-card {
    position: relative;
}

.card-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 122, 89, 0.6), transparent 60%);
    filter: blur(40px);
    z-index: 0;
}

.hero-panel {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
}

.hero-panel h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-list li::before {
    content: "•";
    margin-right: 8px;
    color: var(--coral);
}

.page-hero {
    padding: 90px 0 50px;
    background: linear-gradient(120deg, rgba(11, 92, 98, 0.12), rgba(255, 122, 89, 0.12));
}

.page-hero .eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--ocean);
    margin-bottom: 12px;
    display: inline-block;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.page-hero .lead {
    max-width: 640px;
    color: var(--muted);
}

.breadcrumbs {
    background: #efe7dd;
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

/* Admin */
.admin-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    background: #f3f4f6;
}

.admin-sidebar {
    background: linear-gradient(180deg, #0b1117 0%, #111827 100%);
    color: #e2e8f0;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.admin-brand {
    display: flex;
    gap: 14px;
    align-items: center;
}

.admin-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.admin-subtitle {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.7);
}

.admin-nav {
    display: grid;
    gap: 10px;
}

.admin-link {
    color: #e2e8f0;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.2);
    font-weight: 500;
}

.admin-link:hover {
    color: #fff;
    background: rgba(56, 189, 248, 0.18);
    border-color: rgba(56, 189, 248, 0.4);
}

.admin-footer {
    margin-top: auto;
    display: grid;
    gap: 8px;
    font-size: 0.9rem;
}

.admin-logout {
    color: #fda4af;
    font-weight: 600;
}

.admin-main {
    padding: 36px 40px 48px;
    background: radial-gradient(circle at top, #ffffff 0%, #f3f4f6 45%);
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-end;
    margin-bottom: 24px;
}

.admin-kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 8px;
}

.admin-heading {
    margin: 0;
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
}

.admin-actions {
    display: flex;
    gap: 12px;
}

.admin-alert {
    border-radius: 14px;
    padding: 12px 16px;
}

.admin-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 28px;
}

.admin-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.admin-card-highlight {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #fff;
}

.admin-card-kicker {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

.admin-card-value {
    font-size: 2.4rem;
    font-weight: 600;
    margin-top: 8px;
}

.admin-card-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.admin-section {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.admin-link-inline {
    color: #2563eb;
    font-weight: 600;
}

.admin-table {
    display: grid;
    gap: 8px;
}

.admin-table-head,
.admin-table-row {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1fr 0.8fr;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    align-items: center;
}

.admin-table-head {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #64748b;
    background: #f1f5f9;
}

.admin-table-row {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: inherit;
}

.admin-table-row:hover {
    border-color: #93c5fd;
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.12);
}

.admin-table-static:hover {
    box-shadow: none;
    border-color: #e2e8f0;
}

.admin-table-empty {
    text-align: center;
    padding: 20px;
    color: #64748b;
}

.admin-table-actions {
    grid-template-columns: 1.2fr 1.4fr 1fr 0.8fr 1.2fr;
}

.admin-actions-inline {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.admin-actions-inline form {
    margin: 0;
}

.admin-chip {
    background: #e0f2fe;
    color: #0369a1;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
}

.admin-detail-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.admin-detail-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: #64748b;
    margin-bottom: 18px;
}

.admin-detail-message {
    background: #f8fafc;
    border-radius: 14px;
    padding: 16px;
}

.admin-form-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    max-width: 520px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.admin-filter {
    display: grid;
    grid-template-columns: 1.6fr 0.6fr auto;
    gap: 12px;
    margin-bottom: 16px;
}

.admin-auth {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at top left, #e0f2fe 0%, #f8fafc 50%, #e2e8f0 100%);
    padding: 24px;
}

.admin-auth-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    width: min(420px, 92vw);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.admin-auth-brand {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.admin-auth-title {
    font-size: 1.4rem;
    font-weight: 600;
}

.admin-auth-subtitle {
    color: #64748b;
    font-size: 0.9rem;
}

.admin-auth-footer {
    margin-top: 16px;
    text-align: center;
}

@media (max-width: 900px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .admin-nav {
        grid-auto-flow: column;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .admin-main {
        padding: 24px;
    }

    .admin-table-head,
    .admin-table-row {
        grid-template-columns: 1fr;
    }

    .admin-table-actions {
        grid-template-columns: 1fr;
    }

    .admin-filter {
        grid-template-columns: 1fr;
    }
}

.breadcrumbs li::after {
    content: "/";
    margin-left: 8px;
    color: rgba(15, 23, 42, 0.4);
}

.breadcrumbs li:last-child::after {
    content: "";
}

.breadcrumbs a {
    color: var(--ocean);
    font-weight: 500;
}

.breadcrumbs .current {
    color: var(--muted);
}

.panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.pill {
    background: var(--lime);
    color: var(--ocean-dark);
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
}

.section {
    padding: 90px 0;
}

.section-muted {
    background: #f0e9de;
}

.section-dark {
    background: #0b2d31;
    color: var(--white);
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

.section-head h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.section-head p {
    max-width: 640px;
    color: var(--muted);
}

.section-head.light p {
    color: rgba(255, 255, 255, 0.75);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.service-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ocean);
    margin-bottom: 12px;
    font-weight: 600;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.system-card {
    background: var(--white);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-soft);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.process-step {
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.step-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--coral);
}

.work-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 28px;
    height: 100%;
}

.work-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.75rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    align-items: center;
}

.about-card {
    background: var(--white);
    padding: 28px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.about-card ul {
    padding-left: 18px;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    align-items: center;
}

.contact-card {
    background: var(--white);
    padding: 28px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 18px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-field label {
    font-weight: 600;
    margin-bottom: 6px;
    display: inline-block;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    padding: 10px 12px;
    font-size: 0.95rem;
}

.form-field ul {
    list-style: none;
    padding-left: 0;
    margin: 6px 0 0;
    color: #b91c1c;
    font-size: 0.85rem;
}

.flash-success {
    background: #dcfce7;
    color: #14532d;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
}

.contact-value {
    font-weight: 600;
}

.mwp-footer {
    background: #071b1f;
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    align-items: start;
}

.footer-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 24px;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-cookie-settings {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-cookie-settings:hover {
    color: #ffffff;
}

.legal-content {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.cookie-banner {
    position: fixed;
    inset: auto 24px 24px 24px;
    background: #0b1117;
    color: #e2e8f0;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    z-index: 1050;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.cookie-banner-content {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-title {
    font-weight: 600;
    margin: 0 0 6px;
}

.cookie-text {
    margin: 0;
    color: rgba(226, 232, 240, 0.85);
}

.cookie-text a {
    color: #38bdf8;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


.btn {
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(255, 122, 89, 0.3);
}

.btn-primary:hover {
    background: #ff5d36;
    border-color: #ff5d36;
    color: var(--white);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.reveal {
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.2s; }
.reveal.delay-2 { animation-delay: 0.4s; }
.reveal.delay-3 { animation-delay: 0.6s; }
.reveal.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .nav-link { margin-left: 8px; }
    .hero { padding-top: 100px; }
}

@media (max-width: 768px) {
    .navbar-brand { flex-direction: column; align-items: flex-start; gap: 4px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-panel { padding: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }

    .cookie-banner {
        inset: auto 12px 12px 12px;
    }
}

/* ─── NAV CTA + DROPDOWN ──────────────────────────────────────── */

.btn-nav-cta {
    background: var(--coral);
    color: var(--white);
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 999px;
    font-size: 0.92rem;
    border: 2px solid var(--coral);
    transition: background 0.2s, border-color 0.2s;
}

.btn-nav-cta:hover {
    background: #ff5d36;
    border-color: #ff5d36;
    color: var(--white);
}

.nav-phone-link {
    font-weight: 600 !important;
    color: var(--ocean) !important;
}

.mwp-dropdown {
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: var(--shadow-strong);
    padding: 8px;
    background: var(--white);
    min-width: 220px;
}

.mwp-dropdown .dropdown-item {
    border-radius: 10px;
    padding: 9px 14px;
    font-weight: 500;
    color: var(--ink);
    font-size: 0.95rem;
}

.mwp-dropdown .dropdown-item:hover {
    background: var(--sand);
    color: var(--ocean);
}

/* ─── HERO — trust bar ────────────────────────────────────────── */

.hero-accent {
    color: var(--coral);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-icon {
    width: 22px;
    height: 22px;
    background: var(--lime);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--ocean-dark);
    flex-shrink: 0;
}

/* ─── DIFFERENTIATOR BANNER ───────────────────────────────────── */

.diff-banner {
    background: var(--coral);
    color: var(--white);
    padding: 14px 0;
}

.diff-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    text-align: center;
}

.diff-banner p {
    margin: 0;
    font-size: 1rem;
}

.diff-banner-cta {
    color: var(--white);
    font-weight: 700;
    white-space: nowrap;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.diff-banner-cta:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ─── SERVICE CARDS WITH LINK ─────────────────────────────────── */

.service-card-link {
    display: block;
    height: 100%;
    color: inherit;
}

.service-card-link:hover {
    color: inherit;
}

.service-card-link:hover .service-card {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.service-card-link:hover .service-more {
    color: var(--coral);
}

.service-more {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ocean);
    transition: color 0.2s;
}

/* ─── WHY CARDS ───────────────────────────────────────────────── */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ocean-dark), var(--ocean));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    color: var(--white);
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(11, 92, 98, 0.08);
    border: 1px solid rgba(11, 92, 98, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--ocean);
    transition: background 0.3s ease, transform 0.3s var(--ease-out-expo), color 0.3s ease;
}

.service-card:hover .card-icon,
.service-card-link:hover .card-icon {
    background: var(--ocean);
    color: var(--white);
    transform: scale(1.08);
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ─── FAQ ACCORDION ───────────────────────────────────────────── */

.faq-accordion {
    max-width: 860px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px !important;
    border: 1px solid rgba(15, 23, 42, 0.09) !important;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.faq-item .accordion-button {
    background: var(--white);
    color: var(--ink);
    font-weight: 600;
    font-size: 1.02rem;
    padding: 18px 22px;
    border-radius: 0;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--ocean);
    box-shadow: none;
}

.faq-item .accordion-button::after {
    filter: none;
}

.faq-item .accordion-button:not(.collapsed)::after {
    filter: none;
}

.faq-item .accordion-body {
    padding: 0 22px 18px;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── FINAL CTA SECTION ───────────────────────────────────────── */

.section-cta {
    background: #071b1f;
    color: var(--white);
}

.cta-final-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.cta-final-copy h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 12px;
}

.cta-final-copy p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin-bottom: 6px;
}

.cta-note {
    font-size: 0.88rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.cta-final-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    min-width: 220px;
}

.cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-contact-item {
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.8);
}

.cta-contact-item:hover {
    color: var(--white);
}

.cta-contact-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1px;
}

.cta-contact-value {
    font-weight: 600;
    font-size: 0.97rem;
}

/* ─── PAGE HERO ACTIONS ───────────────────────────────────────── */

.page-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-outline-ocean {
    border: 2px solid var(--ocean);
    color: var(--ocean);
    background: transparent;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.btn-outline-ocean:hover {
    background: var(--ocean);
    color: var(--white);
}

/* ─── SERVICE DETAIL (usluge stranica) ──────────────────────── */

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 56px;
    align-items: start;
}

.service-detail-grid--reverse {
    grid-template-columns: 280px 1fr;
}

.service-detail-copy h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    margin: 12px 0 16px;
}

.service-detail-copy p {
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 18px;
}

.service-detail-list {
    padding-left: 0;
    list-style: none;
    margin: 0 0 24px;
    display: grid;
    gap: 10px;
}

.service-detail-list li::before {
    content: "✓";
    color: var(--ocean);
    font-weight: 700;
    margin-right: 9px;
}

.service-meta-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.07);
    display: grid;
    gap: 14px;
}

.service-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
}

.meta-val {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
}

/* ─── CONTACT PAGE ────────────────────────────────────────────── */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.contact-form-title {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.contact-form-sub {
    color: var(--muted);
    margin-bottom: 20px;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 10px;
    margin-bottom: 0;
}

.contact-info-card {
    background: var(--white);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.07);
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.contact-info-items {
    display: grid;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-info-value {
    font-weight: 600;
    color: var(--ink);
    display: block;
}

a.contact-info-value:hover {
    color: var(--ocean);
}

.contact-tips {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.contact-tips li::before {
    content: "→";
    color: var(--ocean);
    margin-right: 8px;
    font-weight: 600;
}

.contact-promise-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.contact-promise-item:last-child {
    margin-bottom: 0;
}

.promise-icon {
    font-size: 1.4rem;
    margin-top: 1px;
}

.contact-promise-item p {
    margin: 2px 0 0;
    font-size: 0.9rem;
    color: var(--muted);
}

/* ─── FOOTER (novo) ───────────────────────────────────────────── */

.footer-col-brand {
    max-width: 300px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    margin: 10px 0 14px;
}

.footer-contact-inline {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-inline a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.footer-contact-inline a:hover {
    color: var(--white);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.footer-links-list a:hover {
    color: var(--white);
}

.footer-address {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-address a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-address a:hover {
    color: var(--white);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */

@media (max-width: 1100px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-detail-grid--reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-grid--reverse .service-detail-meta {
        order: 2;
    }
}

@media (max-width: 992px) {
    .cta-final-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .nav-phone { display: none; }
}

@media (max-width: 768px) {
    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .diff-banner-inner {
        flex-direction: column;
        gap: 10px;
    }

    .page-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-final-actions {
        width: 100%;
    }

    .cta-final-actions .btn {
        width: 100%;
        text-align: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .service-meta-card {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ════════════════════════════════════════════════════════════════
   ✦ VISUAL LAYER — Animations, effects, wow factor
   ════════════════════════════════════════════════════════════════ */

/* ─── CSS VARS: animation extras ─── */
:root {
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ─── KEYFRAMES ─────────────────────────────────────────────── */

@keyframes blobDrift1 {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(60px, -40px) scale(1.1); }
    66%  { transform: translate(-30px, 50px) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes blobDrift2 {
    0%   { transform: translate(0, 0) scale(1); }
    40%  { transform: translate(-70px, 30px) scale(1.08); }
    70%  { transform: translate(40px, -60px) scale(0.92); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes blobDrift3 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(50px, 40px) scale(1.12); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50%       { transform: translateY(-14px) rotate(0.4deg); }
}

@keyframes panelShine {
    0%   { transform: translateX(-200%) rotate(15deg); opacity: 0; }
    20%  { opacity: 1; }
    100% { transform: translateX(400%) rotate(15deg); opacity: 0; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

@keyframes btnShimmer {
    0%   { left: -100%; }
    60%, 100% { left: 150%; }
}

@keyframes statPop {
    0%   { transform: scale(0.7) translateY(20px); opacity: 0; }
    60%  { transform: scale(1.05) translateY(-3px); }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes navGlow {
    0%, 100% { box-shadow: 0 2px 20px rgba(11, 92, 98, 0.08); }
    50%       { box-shadow: 0 2px 30px rgba(11, 92, 98, 0.14); }
}

/* ─── HERO ANIMATED ORBS ────────────────────────────────────── */

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.hero-orb--1 {
    width: 500px;
    height: 500px;
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(11, 92, 98, 0.7), rgba(8, 63, 67, 0.3));
    animation: blobDrift1 18s ease-in-out infinite;
}

.hero-orb--2 {
    width: 420px;
    height: 420px;
    top: -60px;
    right: -60px;
    background: radial-gradient(circle, rgba(255, 122, 89, 0.55), rgba(255, 100, 60, 0.15));
    animation: blobDrift2 22s ease-in-out infinite;
}

.hero-orb--3 {
    width: 280px;
    height: 280px;
    bottom: -40px;
    left: 30%;
    background: radial-gradient(circle, rgba(199, 245, 217, 0.5), transparent);
    animation: blobDrift3 14s ease-in-out infinite;
}

/* ─── HERO DOT NOISE TEXTURE ────────────────────────────────── */

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* ─── HERO PANEL FLOAT + SHINE ───────────────────────────────── */

.hero-card {
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-panel {
    overflow: hidden;
}

.hero-panel-shine {
    position: absolute;
    top: -60%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(255, 255, 255, 0.12) 50%,
        transparent 65%
    );
    animation: panelShine 5s ease-in-out infinite 1s;
    pointer-events: none;
    z-index: 2;
}

/* ─── GRADIENT TYPEWRITER TEXT ───────────────────────────────── */

.hero-typewriter {
    background: linear-gradient(135deg, #ff7a59 0%, #ffb347 40%, #ff7a59 80%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    white-space: nowrap;
}

.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: var(--coral);
    margin-left: 3px;
    vertical-align: middle;
    animation: cursorBlink 0.75s step-end infinite;
    border-radius: 2px;
}

/* ─── BUTTON SHIMMER ─────────────────────────────────────────── */

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.28),
        transparent
    );
    animation: btnShimmer 3s ease-in-out infinite 0.5s;
    pointer-events: none;
}

/* ─── STATS STRIP ────────────────────────────────────────────── */

.stats-strip {
    background: #051a1d;
    padding: 36px 0;
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(11, 92, 98, 0.3) 0%,
        rgba(255, 122, 89, 0.1) 50%,
        rgba(11, 92, 98, 0.3) 100%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item.sr-visible {
    animation: statPop 0.6s var(--ease-out-expo) forwards;
}

.stat-item:nth-child(2).sr-visible { animation-delay: 0.1s; }
.stat-item:nth-child(3).sr-visible { animation-delay: 0.2s; }
.stat-item:nth-child(4).sr-visible { animation-delay: 0.3s; }

.stat-value {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-unit {
    color: var(--coral);
    font-size: 0.65em;
}

.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 6px;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */

[data-sr] {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.65s var(--ease-out-expo),
        transform 0.65s var(--ease-out-expo);
}

[data-sr].sr-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── CARD TILT (3D effect — via JS) ────────────────────────── */

[data-tilt] {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.12s ease, box-shadow 0.3s ease;
}

[data-tilt]:hover {
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(11, 92, 98, 0.15);
}

/* ─── CARD GRADIENT BORDER ON HOVER ─────────────────────────── */

.service-card {
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--ocean), var(--coral), var(--lime));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

/* ─── WHY CARD ICON ANIMATION ────────────────────────────────── */

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(11, 92, 98, 0.35);
}

/* ─── PROCESS STEP CONNECTOR LINE ───────────────────────────── */

.process-grid {
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 14px);
    width: calc(75% - 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--ocean), var(--coral), var(--ocean));
    background-size: 200% 100%;
    animation: gradientShift 4s linear infinite;
    opacity: 0.35;
    pointer-events: none;
}

@media (max-width: 768px) {
    .process-grid::before { display: none; }
}

/* ─── NAVBAR SCROLL STATE ────────────────────────────────────── */

.mwp-nav {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.mwp-nav.is-scrolled {
    background: rgba(245, 239, 230, 0.97) !important;
    box-shadow: 0 4px 28px rgba(15, 23, 42, 0.1);
}

/* ─── CUSTOM CURSOR GLOW ─────────────────────────────────────── */

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(11, 92, 98, 0.07) 0%,
        rgba(255, 122, 89, 0.04) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease;
    will-change: transform;
}

@media (hover: none) {
    .cursor-glow { display: none; }
}

/* ─── PAGE HERO DECORATIVE ORB ───────────────────────────────── */

.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 89, 0.12), transparent 70%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 92, 98, 0.1), transparent 70%);
    pointer-events: none;
}

/* ─── SECTION CTA GLOW ───────────────────────────────────────── */

.section-cta {
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 92, 98, 0.25), transparent 65%);
    pointer-events: none;
}

/* ─── DIFF BANNER PULSE ──────────────────────────────────────── */

.diff-banner strong {
    position: relative;
    display: inline-block;
}

.diff-banner strong::after {
    content: '';
    position: absolute;
    inset: -4px -8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    animation: none;
}

/* ─── STATS RESPONSIVE ───────────────────────────────────────── */

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
    .stat-item:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
}

/* ─── LOGO ───────────────────────────────────────────────────── */

.logo-mark {
    width: 40px;
    height: 36px;
    color: var(--ocean);
    flex-shrink: 0;
    display: block;
}

.logo-mark--light {
    color: #ffffff;
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1;
}

.logo-wm-main {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1;
}

.logo-wm-sub {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1;
}

.logo-wordmark--light .logo-wm-main {
    color: #ffffff;
}

.logo-wordmark--light .logo-wm-sub {
    color: rgba(255, 255, 255, 0.45);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

/* Override old brand-mark and brand-name if they appear anywhere */
.brand-mark { display: none; }
.brand-name  { display: none; }
