
        /* ============================================
   ROOT TOKENS — derived from the jiffySMS logo
   ============================================ */
        :root {
            /* brand colors, sampled from logo */
            --navy-900: #0c2447;
            --navy-800: #123064;
            --navy-700: #173d7d;
            --teal-600: #0d8f85;
            --teal-500: #14a89c;
            --teal-400: #3cc2b6;
            --teal-100: #e3f5f2;
            --teal-050: #f2faf9;

            --ink: #0e2338;
            --ink-soft: #4c5c70;
            --paper: #fbfcfc;
            --white: #ffffff;
            --line: #e2e9ec;

            --font-display: 'Sora', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'IBM Plex Mono', monospace;

            --radius-s: 10px;
            --radius-m: 18px;
            --radius-l: 28px;

            --shadow-card: 0 2px 6px rgba(12, 36, 71, .05), 0 14px 32px -18px rgba(12, 36, 71, .20);
            --shadow-pop: 0 20px 45px -15px rgba(12, 36, 71, .30);

            --container: 1180px;
            --section-pad: clamp(64px, 9vw, 128px);
            --section-pad2: clamp(34px, 4vw, 58px);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-body);
            color: var(--ink);
            background: var(--paper);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        img,
        svg {
            display: block;
            max-width: 100%;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-display);
            margin: 0;
            color: var(--navy-900);
            line-height: 1.1;
        }

        p {
            margin: 0;
        }

        button {
            font-family: inherit;
            cursor: pointer;
        }

        .wrap {
            max-width: var(--container);
            margin-inline: auto;
             padding-inline: clamp(20px, 5vw, 40px); 
        }

        .eyebrow {
            font-family: var(--font-mono);
            font-weight: 600;
            font-size: .78rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--teal-600);
            display: inline-flex;
            align-items: center;
            gap: .55em;
        }

        .eyebrow::before {
            content: "";
            width: 22px;
            height: 2px;
            background: var(--teal-500);
            display: inline-block;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .55em;
            padding: .85em 1.6em;
            border-radius: 999px;
            font-weight: 600;
            font-size: .98rem;
            border: 1.5px solid transparent;
            transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--teal-500);
            color: var(--white);
            box-shadow: 0 10px 24px -8px rgba(20, 168, 156, .55);
        }

        .btn-primary:hover {
            background: var(--teal-600);
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: transparent;
            border-color: rgba(255, 255, 255, .5);
            color: var(--white);
        }

        .btn-ghost:hover {
            border-color: var(--white);
            background: rgba(255, 255, 255, .08);
        }

        .btn-outline-navy {
            background: transparent;
            border-color: var(--navy-800);
            color: var(--navy-800);
        }

        .btn-outline-navy:hover {
            background: var(--navy-800);
            color: var(--white);
        }

        .btn:focus-visible,
        a:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        button:focus-visible {
            outline: 3px solid var(--teal-400);
            outline-offset: 2px;
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: .001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .001ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* ============================================
   SIGNATURE MOTIF — the "launch trail" stripes
   (echoes the rocket streaks in the jiffySMS mark)
   ============================================ */
        .trail {
            position: absolute;
            pointer-events: none;
            z-index: 0;
        }

        .trail svg {
            width: 100%;
            height: 100%;
        }

        .trail-stripe {
            stroke: var(--teal-400);
            stroke-width: 6;
            stroke-linecap: round;
            opacity: .35;
        }

        /* ============================================
   HEADER / NAV
   ============================================ */
        header.site {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(251, 252, 252, .86);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--line);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-block: 14px;
        }

        .brand {
            display: flex;
            align-items: baseline;
            gap: .5em;
        }

        .brand-mark {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--navy-800);
            letter-spacing: -.01em;
        }

        .brand-mark em {
            font-style: italic;
            color: var(--teal-500);
            font-weight: 800;
            margin-left: .05em;
        }

        .brand-tag {
            font-family: var(--font-mono);
            font-size: .7rem;
            color: var(--ink-soft);
            letter-spacing: .03em;
            display: none;
        }

        @media(min-width:640px) {
            .brand-tag {
                display: inline;
            }
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 34px;
        }

        .nav-links a {
            font-size: .95rem;
            font-weight: 500;
            color: var(--ink);
            position: relative;
            padding-block: 4px;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 2px;
            background: var(--teal-500);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform .25s ease;
        }

        .nav-links a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 18px;
            position: relative;
        }


        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--navy-800);
        }

        @media (max-width:860px) {
            .nav-links {
                position: fixed;
                inset: 64px 0 0 0;
                background: var(--white);
                flex-direction: column;
                align-items: flex-start;
                padding: 32px clamp(20px, 5vw, 40px);
                gap: 22px;
                transform: translateY(-8px);
                opacity: 0;
                visibility: hidden;
                transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
                border-top: 1px solid var(--line);
            }

            .nav-links.open {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                height: 100vh;
                margin-top: 1rem;
            }

            .nav-links a {
                font-size: 1.1rem;
            }



            .nav-links.open~.nav-cta .btn-primary,
            .nav-links .mobile-cta {
                display: inline-flex;
                margin-top: 8px;
            }

            .nav-cta .btn-primary {
                display: none;
            }

            .nav-toggle {
                display: block;

            }

            button[aria-expanded="true"] {
                position: absolute;
                top: 139%;
                left: 70%;

            }
        }

        .mobile-cta {
            display: none;
        }

        /* ============================================
   HERO
   ============================================ */
        .hero {
            position: relative;
            background: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-800) 46%, var(--navy-700) 100%);
            color: var(--white);
            overflow: hidden;
            padding-top: clamp(64px, 9vw, 110px);
            padding-bottom: clamp(80px, 10vw, 130px);
            clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
        }

        .hero .trail {
            top: -10%;
            right: -6%;
            width: min(60vw, 640px);
            height: min(60vw, 640px);
        }

        .hero .trail-2 {
            top: 40%;
            left: -12%;
            width: 340px;
            height: 340px;
            opacity: .5;
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 56px;
            align-items: center;
        }

        @media(max-width:960px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }
        }

        .hero-eyebrow {
            font-family: var(--font-mono);
            font-size: .78rem;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--teal-400);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: .6em;
            margin-bottom: 22px;
        }

        .hero-eyebrow::before {
            content: "";
            width: 22px;
            height: 2px;
            background: var(--teal-400);
        }

        .hero h1 {
            color: var(--white);
            font-size: clamp(2.3rem, 4.6vw, 3.7rem);
            font-weight: 800;
            letter-spacing: -.02em;
            max-width: 16ch;
        }

        .hero h1 .accent {
            color: var(--teal-400);
            font-style: italic;
            font-weight: 700;
        }

        .hero p.lead {
            margin-top: 22px;
            font-size: clamp(1.02rem, 1.4vw, 1.18rem);
            color: rgba(255, 255, 255, .78);
            max-width: 52ch;
            line-height: 1.6;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 34px;
        }

        .hero-note {
            margin-top: 28px;
            font-family: var(--font-mono);
            font-size: .85rem;
            color: var(--teal-400);
            letter-spacing: .02em;
        }

        /* channel strip inside hero */
        .channel-strip {
            position: relative;
            z-index: 1;
            margin-top: 56px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: #0c24478c;
            border: 1px solid rgba(255, 255, 255, .16);
            border-radius: var(--radius-m);
            overflow: hidden;
        }

        @media(max-width:760px) {
            .channel-strip {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .channel-chip {
            background: rgba(12, 36, 71, .55);
            padding: 22px 20px;
            transition: background .25s ease, transform .25s ease;
        }

        .channel-chip:hover {
            background: rgba(20, 168, 156, .16);
            transform: translateY(-3px);
        }

        .channel-chip i {
            font-size: 1.4rem;
            color: var(--teal-400);
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, .08);
            border-radius: 10px;
            margin-bottom: 14px;
        }

        .channel-chip h3 {
            color: var(--white);
            font-size: .98rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .channel-chip p {
            color: rgba(255, 255, 255, .62);
            font-size: .85rem;
            line-height: 1.5;
        }

        /* hero envelope / rocket illustration */
        .hero-art {
            position: relative;
            z-index: 1;
            justify-self: center;
        }

        .hero-art svg {
            width: min(100%, 380px);
        }

        @media(max-width:960px) {
            .hero-art {
                display: none;
            }
        }

        /* ============================================
   SECTION SHELL
   ============================================ */
        section {
            padding-block: var(--section-pad);
            position: relative;
        }

        .section-head {
            max-width: 640px;
            margin-bottom: 56px;
        }

        .section-head h2 {
            font-size: clamp(1.7rem, 3vw, 2.5rem);
            margin-top: 16px;
            letter-spacing: -.01em;
        }

        .section-head p {
            margin-top: 16px;
            color: var(--ink-soft);
            font-size: 1.05rem;
            line-height: 1.65;
        }

        .center {
            text-align: center;
            margin-inline: auto;
        }

        .reveal {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
   SERVICES
   ============================================ */
        .services {
            background: var(--white);
        }

        .service-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .service-card {
            position: relative;
            background: var(--teal-050);
            border: 1px solid var(--line);
            border-radius: var(--radius-l);
            padding: clamp(28px, 4vw, 44px);
            overflow: hidden;
            transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-pop);
            border-color: var(--teal-400);
        }

        .service-card .corner {
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 120px;
            opacity: .5;
        }

        .service-head {
            display: flex;
            align-items: flex-start;
            gap: 22px;
            flex-wrap: wrap;
        }

        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--navy-900);
            color: var(--teal-400);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .service-head-text {
            flex: 1;
            min-width: 220px;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .service-card p.desc {
            color: var(--ink-soft);
            line-height: 1.65;
            font-size: .98rem;
            max-width: 70ch;
        }

        .service-groups {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
            gap: 28px;
            margin-top: 28px;
            padding-top: 28px;
            border-top: 1px dashed var(--line);
        }

        .service-group h5 {
            font-family: var(--font-mono);
            font-size: .76rem;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--navy-800);
            margin-bottom: 14px;
        }

        .service-group ul {
            display: grid;
            gap: 9px;
        }

        .service-group li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: .9rem;
            color: var(--ink-soft);
            line-height: 1.4;
        }

        .service-group li i {
            color: var(--teal-500);
            font-size: .8rem;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .service-disclaimer {
            margin-top: 24px;
            padding-top: 18px;
            border-top: 1px dashed var(--line);
            font-size: .82rem;
            color: var(--ink-soft);
            font-style: italic;
            display: flex;
            gap: 8px;
        }

        .service-disclaimer i {
            color: var(--teal-600);
            flex-shrink: 0;
            margin-top: 2px;
            font-style: normal;
        }

        /* ============================================
   ABOUT
   ============================================ */
        .about {
            background: var(--navy-900);
            color: var(--white);
            clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        @media(max-width:900px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .about .eyebrow {
            color: var(--teal-400);
        }

        .about .eyebrow::before {
            background: var(--teal-400);
        }

        .about h2 {
            color: var(--white);
        }

        .about p.lead {
            margin-top: 18px;
            color: rgba(255, 255, 255, .72);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .about-points {
            margin-top: 30px;
            display: grid;
            gap: 18px;
        }

        .about-point {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .about-point i {
            color: var(--teal-400);
            font-size: 1.2rem;
            margin-top: 2px;
        }

        .about-point h4 {
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .about-point p {
            color: rgba(255, 255, 255, .6);
            font-size: .92rem;
            line-height: 1.55;
        }

        .about-panel {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: var(--radius-l);
            padding: 36px;
        }

        .about-stat {
            padding-block: 18px;
            border-bottom: 1px solid rgba(255, 255, 255, .12);
        }

        .about-stat:last-child {
            border-bottom: none;
        }

        .about-stat .num {
            font-family: var(--font-mono);
            font-weight: 600;
            font-size: 1.7rem;
            color: var(--teal-400);
        }

        .about-stat .label {
            font-size: .9rem;
            color: rgba(255, 255, 255, .62);
            margin-top: 4px;
        }

        /* ============================================
   CONTACT
   ============================================ */
        .contact {
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 48px;
            align-items: start;
        }

        @media(max-width:900px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        .contact-info {
            display: grid;
            gap: 22px;
        }

        .info-card {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 20px;
            border: 1px solid var(--line);
            border-radius: var(--radius-m);
            background: var(--teal-050);
        }

        .info-card i {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--navy-900);
            color: var(--teal-400);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            flex-shrink: 0;
        }

        .info-card h4 {
            font-size: .98rem;
            margin-bottom: 4px;
        }

        .info-card p,
        .info-card a {
            color: var(--ink-soft);
            font-size: .92rem;
            line-height: 1.5;
        }

        .social-row {
            display: flex;
            gap: 12px;
            margin-top: 6px;
        }

        .social-row a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy-800);
            transition: background .2s ease, color .2s ease, border-color .2s ease;
        }

        .social-row a:hover {
            background: var(--teal-500);
            color: var(--white);
            border-color: var(--teal-500);
        }

        .contact-form {
            background: var(--teal-050);
            border: 1px solid var(--line);
            border-radius: var(--radius-l);
            padding: 36px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        @media(max-width:560px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        .field {
            margin-bottom: 18px;
        }

        .field label {
            display: block;
            font-size: .85rem;
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 8px;
        }

        .field input,
        .field textarea,
        .field select {
            width: 100%;
            border: 1.5px solid var(--line);
            background: var(--white);
            border-radius: var(--radius-s);
            padding: .85em 1em;
            font-family: var(--font-body);
            font-size: .96rem;
            color: var(--ink);
            transition: border-color .2s ease, box-shadow .2s ease;
        }

        .field input:focus,
        .field textarea:focus,
        .field select:focus {
            border-color: var(--teal-500);
            box-shadow: 0 0 0 4px var(--teal-100);
            outline: none;
        }

        .field textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-note {
            font-size: .82rem;
            color: var(--ink-soft);
            margin-top: 14px;
        }

        .form-success {
            display: none;
            align-items: center;
            gap: 12px;
            background: var(--teal-100);
            color: var(--teal-600);
            padding: 16px 18px;
            border-radius: var(--radius-s);
            font-weight: 600;
            font-size: .92rem;
            margin-top: 18px;
        }

        .form-success.show {
            display: flex;
        }

        /* ============================================
   FOOTER
   ============================================ */
        footer.site {
            background: var(--navy-900);
            color: rgba(255, 255, 255, .7);
            padding-block: 56px 28px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 36px;
        }

        @media(max-width:760px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media(max-width:480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        .footer-brand .brand-mark {
            color: var(--white);
        }

        .footer-brand p {
            margin-top: 14px;
            font-size: .9rem;
            line-height: 1.6;
            max-width: 32ch;
            color: rgba(255, 255, 255, .55);
        }

        .footer-col h5 {
            color: var(--white);
            font-size: .85rem;
            text-transform: uppercase;
            letter-spacing: .08em;
            font-family: var(--font-mono);
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-col ul {
            display: grid;
            gap: 10px;
        }

        .footer-col a {
            font-size: .92rem;
            color: rgba(255, 255, 255, .62);
            transition: color .2s ease;
        }

        .footer-col a:hover {
            color: var(--teal-400);
        }

        .footer-bottom {
            margin-top: 44px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, .1);
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: .82rem;
            color: rgba(255, 255, 255, .45);
        }

        .wa-floater {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 12px 28px -8px rgba(0, 0, 0, .35);
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .wa-floater:hover {
            transform: translateY(-4px) scale(1.06);
            box-shadow: 0 16px 34px -8px rgba(0, 0, 0, .4);
            color: #fff;
        }

        .wa-ping {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: #25D366;
            opacity: .55;
            animation: wa-pulse 2.2s ease-out infinite;
            z-index: -1;
        }

        @keyframes wa-pulse {
            0% {
                transform: scale(1);
                opacity: .55;
            }

            70% {
                transform: scale(1.7);
                opacity: 0;
            }

            100% {
                transform: scale(1.7);
                opacity: 0;
            }
        }

        @media (max-width:600px) {
            .wa-floater {
                width: 52px;
                height: 52px;
                font-size: 1.5rem;
                right: 16px;
                bottom: 16px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .wa-ping {
                animation: none;
                display: none;
            }
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            background: none;
            border: none;
            font-family: inherit;
            font-size: .95rem;
            font-weight: 500;
            color: var(--ink);
            padding: 4px 0;
        }

        .nav-dropdown-toggle i {
            font-size: .7rem;
            transition: transform .25s ease;
        }

        .nav-dropdown-toggle[aria-expanded="true"] i {
            transform: rotate(180deg);
        }

        /* Desktop: floating card dropdown */
        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 16px);
            left: 50%;
            transform: translateX(-50%) translateY(-8px);
            min-width: 240px;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-m);
            box-shadow: var(--shadow-pop);
            padding: 10px;
            display: grid;
            gap: 2px;
            opacity: 0;
            visibility: hidden;
            transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
            z-index: 50;
        }

        .nav-dropdown-menu.open {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .nav-dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: var(--radius-s);
            font-size: .9rem;
            font-weight: 500;
            color: var(--ink);
            transition: background .2s ease, color .2s ease;
        }

        .nav-dropdown-menu a i {
            color: var(--teal-500);
            font-size: 1rem;
            width: 20px;
            text-align: center;
        }

        .nav-dropdown-menu a:hover {
            background: var(--teal-050);
            color: var(--teal-600);
        }

        /* Mobile: force it into an inline accordion — beats the desktop .open rule */
        @media (max-width:860px) {
            .nav-dropdown {
                width: 100%;
            }

            .nav-dropdown-toggle {
                width: 100%;
                justify-content: space-between;
                font-size: 1.1rem;
            }

            .nav-dropdown-menu {
                position: static;
                min-width: 0;
                width: 100%;
                box-shadow: none;
                border: none;
                background: var(--teal-050);
                padding: 0 6px;
                margin-top: 0;
                max-height: 0;
                opacity: 1;
                visibility: visible;
                overflow: hidden;
                transform: none;
                transition: max-height .3s ease, margin-top .3s ease, padding .3s ease;
            }

            /* higher-specificity override so this wins over the desktop .open rule */
            .nav-dropdown-menu.open {
                max-height: 300px;
                margin-top: 10px;
                padding: 6px;
                transform: none;
                opacity: 1;
                visibility: visible;
            }

            /* let the mobile nav panel scroll if the accordion pushes content taller than the screen */
            .nav-links {
                overflow-y: auto;
            }
        }

        .footer-address {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 4px;
        }

        .footer-address i {
            color: var(--teal-400);
            font-size: 1rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .footer-address span {
            font-size: .92rem;
            line-height: 1.55;
            color: rgba(255, 255, 255, .62);
        }

        .contact-map {
            position: relative;
            margin-top: 56px;
            border-radius: var(--radius-l);
            overflow: hidden;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-pop);
        }

        .contact-map-frame {
            position: relative;
            width: 100%;
            height: 420px;
            filter: grayscale(.15) contrast(1.05);
        }

        .contact-map-frame iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        /* soft brand-tinted wash over the default map colors */
        .contact-map-frame::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, rgba(12, 36, 71, .12), rgba(20, 168, 156, .08));
            pointer-events: none;
        }

        .map-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--navy-900);
            color: var(--white);
            font-family: var(--font-mono);
            font-size: .78rem;
            font-weight: 600;
            letter-spacing: .03em;
            padding: .55em 1em;
            border-radius: 999px;
            box-shadow: 0 10px 20px -6px rgba(12, 36, 71, .4);
        }

        .map-tag i {
            color: var(--teal-400);
        }

        .contact-map-card {
            position: absolute;
            right: 28px;
            top: 28px;
            z-index: 3;
            max-width: 264px;

            height: 60px;
        }

        .contact-map-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--navy-900);
            color: var(--teal-400);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 14px;
        }

        .contact-map-text h4 {
            font-size: 1rem;
            margin-bottom: 6px;
        }

        .contact-map-text p {
            font-size: .86rem;
            color: var(--ink-soft);
            line-height: 1.55;
            margin-bottom: 16px;
        }

        .contact-map-btn {
            width: 100%;
            font-size: .9rem;
            padding: .75em 1.2em;
        }

        @media (max-width:640px) {
            .contact-map-frame {
                height: 340px;
            }

            .map-tag {
                top: 14px;
                left: 14px;
            }

            .contact-map-card {
                left: 14px;
                right: 14px;
                bottom: 50px;
                max-width: none;
                top: unset;
            }
        }

        .cookie-banner {
            position: fixed;
            left: 20px;
            right: 20px;
            bottom: 20px;
            z-index: 998;
            max-width: 920px;
            margin-inline: auto;
            background: var(--navy-900);
            color: var(--white);
            border-radius: var(--radius-m);
            border: 1px solid rgba(255, 255, 255, .1);
            box-shadow: 0 20px 45px -15px rgba(12, 36, 71, .5);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            transform: translateY(140%);
            opacity: 0;
            transition: transform .45s ease, opacity .45s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
            opacity: 1;
        }

        .cookie-content {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            flex: 1;
            min-width: 240px;
        }

        .cookie-content i {
            font-size: 1.4rem;
            color: var(--teal-400);
            margin-top: 2px;
            flex-shrink: 0;
        }

        .cookie-content p {
            font-size: .9rem;
            line-height: 1.55;
            color: rgba(255, 255, 255, .75);
        }

        .cookie-link {
            color: var(--teal-400);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .cookie-link:hover {
            color: var(--teal-400);
        }

        .cookie-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .cookie-btn {
            font-family: inherit;
            font-size: .88rem;
            font-weight: 600;
            padding: .7em 1.4em;
            border-radius: 999px;
            border: 1.5px solid transparent;
            transition: transform .2s ease, background .2s ease, border-color .2s ease;
            white-space: nowrap;
        }

        .cookie-btn-solid {
            background: var(--teal-500);
            color: var(--white);
        }

        .cookie-btn-solid:hover {
            background: var(--teal-600);
            transform: translateY(-2px);
        }

        .cookie-btn-outline {
            background: transparent;
            border-color: rgba(255, 255, 255, .35);
            color: rgba(255, 255, 255, .8);
        }

        .cookie-btn-outline:hover {
            border-color: var(--white);
            color: var(--white);
        }

        @media (max-width:640px) {
            .cookie-banner {
                left: 14px;
                right: 14px;
                bottom: 14px;
                flex-direction: column;
                align-items: stretch;
                padding: 18px;
            }

            .cookie-actions {
                justify-content: flex-end;
            }
        }


        .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    height: 40px;       /* controls logo size — adjust as needed */
    width: auto;        /* keeps aspect ratio intact */
    max-width: 180px;   /* prevents oversized logos from breaking layout */
    display: block;
    object-fit: contain;
}

.brand-tag {
    font-size: 0.85rem;
    color: #888;
    white-space: nowrap;
}

/* Responsive tweaks for smaller screens */
@media (max-width: 768px) {
    .brand-logo {
        height: 32px;
    }
    .brand-tag {
        display: none; /* hide tagline on mobile to save space */
    }
}
  