        :root {
            --teal: #1B7C83;
            --teal-dark: #124f54;
            --teal-mid: #2a939b;
            --teal-light: #e8f5f6;
            --ink: #080d0e;
            --ink-soft: #0f1a1b;
            --smoke: #f5f4f1;
            --mist: #eceae6;
            --warm-white: #faf9f7;
            --body: #3d4a4a;
            --muted: #7a8c8c;
            --border: rgba(27, 124, 131, 0.12);
            --border-strong: rgba(27, 124, 131, 0.22);
            --fs-xs: 0.75rem;
            --fs-sm: 0.875rem;
            --fs-base: 1rem;
            --fs-md: 1.05rem;
            --fs-lg: 1.15rem;
            --fs-xl: 1.35rem;
            --label: 1rem;
            --label-ls: 0.18em;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Manrope', sans-serif;
            background: var(--warm-white);
            color: var(--ink);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            cursor: none;
        }

        /* CURSOR */
        .cursor {
            position: fixed;
            width: 10px;
            height: 10px;
            background: var(--teal);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
            mix-blend-mode: multiply;
        }

        .cursor-ring {
            position: fixed;
            width: 36px;
            height: 36px;
            border: 1.5px solid var(--teal);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
            transition: transform 0.08s, width 0.3s, height 0.3s, opacity 0.3s;
            opacity: 0.4;
        }

        /* NOISE */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9997;
            opacity: 0.35;
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 500;
            padding: 0;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            background: transparent;
        }

        nav.scrolled {
            background: rgba(250, 249, 247, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        /* Support for dark heros where we want white text initially */
        nav.on-dark:not(.scrolled) {
            background: transparent;
        }

        nav.on-dark:not(.scrolled) .nav-links a,
        nav.on-dark:not(.scrolled) .nav-logo-text,
        nav.on-dark:not(.scrolled) .dropdown a {
            color: #fff;
        }

        nav.on-dark:not(.scrolled) .nav-cta {
            background: #fff;
            color: var(--ink);
            border-color: #fff;
        }

        nav.on-dark:not(.scrolled) .nav-cta:hover {
            background: transparent;
            color: #fff;
            border-color: #fff;
        }

        .nav-inner {
            max-width: 1380px;
            margin: 0 auto;
            padding: 1rem 3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .nav-logo-mark {
            width: 36px;
            height: 36px;
            background: var(--teal);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-logo-text {
            font-family: 'Manrope', sans-serif;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: -0.025em;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2.25rem;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.25s, transform 0.25s;
        }

        .nav-links a:hover {
            color: var(--teal);
        }

        /* DROPDOWN */
        .dropdown {
            position: relative;
            display: flex;
            align-items: center;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1rem;
            min-width: 200px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            z-index: 1000;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-menu a {
            font-size: 0.85rem !important;
            text-transform: none !important;
            letter-spacing: 0 !important;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            white-space: nowrap;
        }

        .dropdown-menu a:hover {
            background: var(--teal-light);
            color: var(--teal) !important;
        }

        .dropdown-arrow {
            width: 10px;
            height: 10px;
            margin-left: 4px;
            transition: transform 0.3s;
        }

        .dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .nav-avail {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: var(--label);
            font-weight: 600;
            color: var(--body);
        }

        .nav-dot {
            width: 7px;
            height: 7px;
            background: #2eb82e;
            border-radius: 50%;
            animation: pulse-green 2s ease infinite;
            flex-shrink: 0;
        }

        .nav-cta {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #fff;
            background: var(--ink);
            padding: 0.7rem 1.5rem;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid var(--ink);
        }

        .nav-cta:hover {
            background: transparent;
            color: var(--ink);
            transform: translateY(-1px);
        }

        .hamburger-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            background: none;
            border: none;
        }

        .hamburger-btn span {
            display: block;
            width: 22px;
            height: 1.5px;
            background: var(--ink);
            transition: all 0.3s;
        }

        @keyframes pulse-green {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(1.6);
            }
        }

        /* HERO */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding: 6rem 0 4rem;
            position: relative;
            overflow: hidden;
            background: var(--warm-white);
        }

        .hero-bg-grid {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image: linear-gradient(rgba(27, 124, 131, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(27, 124, 131, 0.05) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 30%, transparent 75%);
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(100px);
        }

        .hero-orb-1 {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(27, 124, 131, 0.1), transparent 70%);
            top: -150px;
            right: -100px;
            animation: orb-drift 12s ease-in-out infinite alternate;
        }

        .hero-orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(27, 124, 131, 0.06), transparent 70%);
            bottom: -100px;
            left: -80px;
            animation: orb-drift 15s ease-in-out infinite alternate-reverse;
        }

        @keyframes orb-drift {
            from {
                transform: translate(0, 0) scale(1);
            }

            to {
                transform: translate(30px, -30px) scale(1.05);
            }
        }

        .container {
            max-width: 1380px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: var(--label-ls);
            text-transform: uppercase;
            color: var(--teal);
            border: 1px solid var(--border-strong);
            background: rgba(27, 124, 131, 0.05);
            padding: 0.6rem 1.25rem;
            border-radius: 100px;
            margin-bottom: 2.25rem;
        }

        .hero-h1 {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(4rem, 6.5vw, 6.5rem);
            line-height: 0.98;
            letter-spacing: -0.03em;
            color: var(--ink);
            margin-bottom: 2rem;
            font-weight: 800;
        }

        .hero-h1 em {
            font-style: italic;
            color: var(--teal);
        }

        .hero-sub {
            font-size: 1.1rem;
            line-height: 1.85;
            color: var(--body);
            max-width: 480px;
            margin-bottom: 3rem;
            font-weight: 800;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 1.1rem;
            flex-wrap: wrap;
        }

        .btn-ink {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            background: var(--ink);
            color: #fff;
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 1.1rem 2.25rem;
            border-radius: 100px;
            text-decoration: none;
            transition: background 0.25s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }

        .btn-ink::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--teal);
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .btn-ink:hover::before {
            transform: translateX(0);
        }

        .btn-ink span {
            position: relative;
            z-index: 1;
        }

        .btn-ink svg {
            position: relative;
            z-index: 1;
            transition: transform 0.3s;
        }

        .btn-ink:hover svg {
            transform: translateX(4px);
        }

        .btn-ink:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 40px rgba(27, 124, 131, 0.25);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            border: 1.5px solid rgba(27, 124, 131, 0.3);
            color: var(--teal);
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 1.1rem 2.25rem;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.25s;
        }

        .btn-ghost:hover {
            background: rgba(27, 124, 131, 0.06);
            border-color: var(--teal);
            transform: translateY(-2px);
        }

        .hero-stats {
            display: flex;
            gap: 3.5rem;
            flex-wrap: wrap;
            margin-top: 4rem;
            padding-top: 2.75rem;
            border-top: 1px solid var(--border);
        }

        .hero-stat-num {
            font-family: 'Manrope', sans-serif;
            font-size: 3.25rem;
            color: var(--ink);
            line-height: 1;
            font-weight: 700;
        }

        .hero-stat-label {
            font-size: var(--label);
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--muted);
            margin-top: 0.4rem;
        }

        /* HERO CARD */
        .hero-card {
            background: #fff;
            border-radius: 26px;
            border: 1px solid var(--border);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(27, 124, 131, 0.05);
            padding: 2.25rem;
            animation: card-float 6s ease-in-out infinite;
            position: relative;
        }

        @keyframes card-float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .hero-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 27px;
            background: linear-gradient(135deg, rgba(27, 124, 131, 0.15), transparent 50%, rgba(27, 124, 131, 0.08));
            pointer-events: none;
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding-bottom: 1.75rem;
            border-bottom: 1px solid var(--mist);
        }

        .card-eyebrow {
            font-size: var(--label);
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 0.5rem;
        }

        .card-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--ink);
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: #e6f7e6;
            color: #1a7a1a;
            padding: 0.35rem 1rem;
            border-radius: 100px;
        }

        .status-badge-dot {
            width: 6px;
            height: 6px;
            background: #2eb82e;
            border-radius: 50%;
            animation: pulse-green 2s ease infinite;
        }

        .progress-list {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            margin-bottom: 2rem;
        }

        .prog-item-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.55rem;
        }

        .prog-label {
            font-size: var(--fs-sm);
            color: var(--body);
        }

        .prog-val {
            font-size: var(--fs-sm);
            font-weight: 700;
            color: var(--ink);
        }

        .prog-track {
            height: 5px;
            background: var(--smoke);
            border-radius: 100px;
            overflow: hidden;
        }

        .prog-fill {
            height: 100%;
            border-radius: 100px;
            animation: prog-in 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            transform: scaleX(0);
            transform-origin: left;
        }

        @keyframes prog-in {
            to {
                transform: scaleX(1);
            }
        }

        .prog-fill.teal {
            background: var(--teal);
        }

        .prog-fill.ink {
            background: var(--ink);
        }

        .prog-fill.cyan {
            background: #0891b2;
        }

        .card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .card-cell {
            background: var(--smoke);
            border-radius: 16px;
            padding: 1.25rem;
        }

        .card-cell-label {
            font-size: var(--label);
            color: var(--muted);
            margin-bottom: 0.4rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .card-cell-val {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--ink);
        }

        .card-cell.accent {
            background: var(--teal);
        }

        .card-cell.accent .card-cell-label {
            color: rgba(255, 255, 255, 0.65);
        }

        .card-cell.accent .card-cell-val {
            color: #fff;
        }

        .float-badge {
            position: absolute;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 0.9rem 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            animation: card-float 8s ease-in-out infinite;
        }

        .float-badge-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(27, 124, 131, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 0.9rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .float-badge-label {
            font-size: var(--label);
            color: var(--muted);
        }

        .float-badge-val {
            font-size: 0.93rem;
            font-weight: 700;
            color: var(--ink);
        }

        /* MARQUEE */
        .marquee-strip {
            background: var(--ink);
            padding: 1.25rem 0;
            overflow: hidden;
        }

        .marquee-inner {
            display: flex;
            white-space: nowrap;
            animation: marquee-scroll 35s linear infinite;
        }

        .marquee-item {
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.35);
            padding: 0 2.75rem;
            flex-shrink: 0;
        }

        .marquee-item span {
            color: rgba(255, 255, 255, 0.18);
            margin: 0 0.5rem;
        }

        @keyframes marquee-scroll {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* CLIENTS */
        .clients-strip {
            padding: 4rem 0;
            border-bottom: 1px solid var(--border);
        }

        .clients-label {
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--muted);
            text-align: center;
            margin-bottom: 2.25rem;
        }

        .clients-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4.5rem;
            flex-wrap: wrap;
        }

        .client-logo {
            font-size: 1rem;
            font-weight: 700;
            color: rgba(60, 74, 74, 0.35);
            letter-spacing: -0.02em;
            transition: color 0.25s;
            text-decoration: none;
        }

        .client-logo:hover {
            color: var(--teal);
        }

        /* SECTION */
        .section {
            padding: 8rem 0;
        }

        .section-alt {
            background: var(--smoke);
        }

        .section-label {
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--teal);
            display: block;
            margin-bottom: 1.1rem;
        }

        .section-h2 {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(2.75rem, 5vw, 4.5rem);
            line-height: 1.02;
            letter-spacing: -0.03em;
            color: var(--ink);
            font-weight: 800;
        }

        .section-h2 em {
            font-style: italic;
            color: var(--teal);
        }

        .section-sub {
            font-size: var(--fs-md);
            color: var(--body);
            line-height: 1.85;
            font-weight: 800;
            max-width: 400px;
        }

        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 4.5rem;
            flex-wrap: wrap;
        }

        .rule {
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(27, 124, 131, 0.2), transparent);
            margin: 3rem 0;
        }

        /* SERVICES */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 26px;
            overflow: hidden;
        }

        .service-item {
            background: var(--warm-white);
            padding: 3.5rem;
            transition: background 0.4s ease;
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        .service-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(27, 124, 131, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .service-item:hover {
            background: var(--teal-light);
        }

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

        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(27, 124, 131, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2.25rem;
            transition: background 0.3s, transform 0.3s;
        }

        .service-item:hover .service-icon {
            background: var(--teal);
            transform: rotate(-5deg) scale(1.1);
        }

        .service-item:hover .service-icon svg {
            stroke: #fff;
        }

        .service-num {
            font-size: var(--label);
            letter-spacing: 0.22em;
            color: var(--muted);
            text-transform: uppercase;
            margin-bottom: 0.6rem;
        }

        .service-name {
            font-family: 'Manrope', sans-serif;
            font-size: 1.85rem;
            color: var(--ink);
            margin-bottom: 0.9rem;
            line-height: 1.15;
            font-weight: 800;
        }

        .service-desc {
            font-size: var(--fs-base);
            color: var(--body);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
        }

        .stag {
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--teal);
            background: rgba(27, 124, 131, 0.07);
            border: 1px solid rgba(27, 124, 131, 0.18);
            padding: 0.3rem 0.85rem;
            border-radius: 100px;
        }

        /* PROJECTS */
        .project-featured {
            display: grid;
            grid-template-columns: 5fr 6fr;
            border-radius: 26px;
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--border);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
            margin-bottom: 1.25rem;
            transition: box-shadow 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .project-featured:hover {
            box-shadow: 0 30px 80px rgba(27, 124, 131, 0.12);
            transform: translateY(-6px);
        }

        .project-featured-img {
            background: var(--smoke);
            min-height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .project-featured-img::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(27, 124, 131, 0.08), transparent);
        }

        .project-featured-img img {
            max-width: 150px;
            object-fit: contain;
            position: relative;
            z-index: 1;
        }

        .project-featured-body {
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .project-badge {
            display: inline-block;
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: #fff;
            background: var(--teal);
            padding: 0.35rem 1rem;
            border-radius: 100px;
            margin-bottom: 1.4rem;
        }

        .project-num {
            font-size: var(--label);
            letter-spacing: 0.2em;
            color: var(--muted);
            text-transform: uppercase;
            margin-bottom: 0.6rem;
        }

        .project-title {
            font-family: 'Manrope', sans-serif;
            font-size: 3.25rem;
            line-height: 1.02;
            color: var(--ink);
            margin-bottom: 1.1rem;
            font-weight: 800;
        }

        .project-desc {
            font-size: var(--fs-base);
            color: var(--body);
            line-height: 1.85;
            margin-bottom: 1.75rem;
            font-weight: 800;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
            margin-bottom: 2.25rem;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--teal);
            text-decoration: none;
            transition: gap 0.3s;
        }

        .project-link:hover {
            gap: 1.1rem;
        }

        .projects-small {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .project-card {
            background: #fff;
            border-radius: 32px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            position: relative;
            text-decoration: none;
        }

        .project-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 40px 80px rgba(27, 124, 131, 0.15);
            border-color: var(--border-strong);
        }

        .project-card-img {
            height: 280px;
            background: var(--smoke);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .project-card-img::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top left, rgba(27, 124, 131, 0.08), transparent 70%);
            z-index: 1;
        }

        .project-card-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(0px);
            transition: backdrop-filter 0.5s;
            z-index: 2;
        }

        .project-card:hover .project-card-img::after {
            backdrop-filter: blur(2px);
        }

        .project-card-img img {
            max-width: 180px;
            max-height: 140px;
            object-fit: contain;
            position: relative;
            z-index: 3;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
        }

        .project-card:hover .project-card-img img {
            transform: scale(1.15) rotate(-2deg);
        }

        .project-card-body {
            padding: 2.25rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            background: #fff;
            position: relative;
            z-index: 4;
        }

        .project-card-cat {
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 0.75rem;
            display: block;
        }

        .project-card-title {
            font-family: 'Manrope', sans-serif;
            font-size: 1.5rem;
            color: var(--ink);
            margin-bottom: 1.25rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .project-card-title::after {
            content: '→';
            font-size: 1.2rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            color: var(--teal);
        }

        .project-card:hover .project-card-title::after {
            opacity: 1;
            transform: translateX(0);
        }

        .project-card-status {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: var(--fs-xs);
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--teal);
            background: var(--teal-light);
            padding: 0.4rem 0.9rem;
            border-radius: 100px;
            align-self: flex-start;
            margin-top: auto;
        }

        .status-dot {
            width: 5px;
            height: 5px;
            background: var(--teal);
            border-radius: 50%;
            animation: pulse-green 2s ease infinite;
        }

        .project-card-title {
            font-family: 'Manrope', sans-serif;
            font-size: 1.35rem;
            color: var(--ink);
            margin-bottom: 0.6rem;
            font-weight: 800;
        }

        .project-card-desc {
            font-size: var(--fs-sm);
            color: var(--body);
            line-height: 1.75;
            margin-bottom: 1.5rem;
            flex: 1;
        }

        /* TESTIMONIALS */
        .testimonials-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            margin-bottom: 1.25rem;
        }

        .video-wrap {
            border-radius: 22px;
            overflow: hidden;
            border: 1px solid var(--border);
            background: #000;
        }

        .video-wrap iframe {
            width: 100%;
            aspect-ratio: 16/9;
            display: block;
        }

        .video-footer {
            background: #fff;
            padding: 1.75rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .pull-quote-card {
            background: var(--ink);
            border-radius: 22px;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .pull-quote-card::before {
            content: '"';
            font-family: 'Manrope', sans-serif;
            font-size: 12rem;
            line-height: 0.7;
            color: rgba(255, 255, 255, 0.05);
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            pointer-events: none;
        }

        .pull-quote-text {
            font-family: 'Manrope', sans-serif;
            font-style: italic;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            margin-bottom: 2.25rem;
            position: relative;
            z-index: 1;
            font-weight: 700;
        }

        .pull-quote-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.4rem;
            position: relative;
            z-index: 1;
        }

        .reviewer-ava {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            color: #fff;
            flex-shrink: 0;
        }

        .reviewer-name {
            font-size: var(--fs-base);
            font-weight: 600;
            color: var(--teal);
        }

        .reviewer-role {
            font-size: var(--fs-sm);
            color: var(--muted);
        }

        .stars {
            color: var(--teal);
            letter-spacing: 2px;
            font-size: 0.95rem;
        }

        .quotes-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.25rem;
        }

        .quote-card {
            background: #fff;
            border-radius: 22px;
            padding: 2.25rem;
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: box-shadow 0.3s, transform 0.3s;
        }

        .quote-card:hover {
            box-shadow: 0 20px 60px rgba(27, 124, 131, 0.1);
            transform: translateY(-4px);
        }

        .big-q {
            font-family: 'Manrope', sans-serif;
            font-size: 4.5rem;
            line-height: 0.7;
            color: rgba(27, 124, 131, 0.12);
            user-select: none;
        }

        .quote-text {
            font-size: var(--fs-base);
            color: var(--body);
            line-height: 1.85;
            margin-top: -0.25rem;
            margin-bottom: 1.75rem;
            font-weight: 800;
        }

        .quote-footer {
            border-top: 1px solid var(--border);
            padding-top: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .sat-card {
            background: var(--teal);
            border-radius: 22px;
            padding: 2.75rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .sat-pct {
            font-family: 'Manrope', sans-serif;
            font-size: 5.5rem;
            line-height: 1;
            color: #fff;
            font-weight: 700;
        }

        .sat-label {
            font-size: var(--label);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 0.5rem;
        }

        .sat-sub {
            font-size: var(--fs-sm);
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.75;
            margin-top: 0.5rem;
        }

        /* TEAM */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }

        .team-card {
            background: #fff;
            border-radius: 22px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: box-shadow 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .team-card:hover {
            box-shadow: 0 24px 70px rgba(27, 124, 131, 0.12);
            transform: translateY(-8px);
        }

        .team-img-wrap {
            position: relative;
            height: 260px;
            overflow: hidden;
            background: var(--smoke);
        }

        .team-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .team-card:hover .team-img {
            transform: scale(1.08);
        }

        .team-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(8, 13, 14, 0.9) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s;
            display: flex;
            align-items: flex-end;
            padding: 1.75rem;
            flex-direction: column;
            justify-content: flex-end;
        }

        .team-card:hover .team-overlay {
            opacity: 1;
        }

        .team-bio {
            font-size: var(--fs-sm);
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.65;
            margin-bottom: 0.85rem;
        }

        .team-overlay-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .team-overlay-tag {
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #fff;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 0.25rem 0.7rem;
            border-radius: 100px;
        }

        .team-body {
            padding: 1.75rem;
        }

        .team-num {
            font-size: var(--label);
            letter-spacing: 0.2em;
            color: var(--muted);
            text-transform: uppercase;
            margin-bottom: 0.4rem;
        }

        .team-name {
            font-family: 'Manrope', sans-serif;
            font-size: 1.4rem;
            color: var(--ink);
            margin-bottom: 0.75rem;
            font-weight: 800;
        }

        .team-role {
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--teal);
            background: rgba(27, 124, 131, 0.08);
            border: 1px solid rgba(27, 124, 131, 0.18);
            padding: 0.3rem 0.85rem;
            border-radius: 100px;
            display: inline-block;
        }

        .team-mini-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            margin-top: 1.25rem;
        }

        .team-mini {
            background: #fff;
            border-radius: 20px;
            padding: 1.4rem;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: box-shadow 0.3s, transform 0.3s;
        }

        .team-mini:hover {
            box-shadow: 0 12px 36px rgba(27, 124, 131, 0.1);
            transform: translateY(-3px);
        }

        /* TEAM HORIZONTAL */
        .team-card-horizontal {
            display: flex;
            background: #fff;
            border-radius: 32px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            min-height: 380px;
        }

        .team-card-horizontal:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 100px rgba(27, 124, 131, 0.15);
            border-color: var(--border-strong);
        }

        .team-card-horizontal .team-img-wrap {
            flex: 0 0 45%;
            height: auto;
            position: relative;
            background: var(--smoke);
        }

        .team-card-horizontal .team-body {
            flex: 1;
            padding: 4.5rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .team-card-horizontal .team-name {
            font-size: 1.85rem;
            margin-bottom: 0.5rem;
        }

        .team-card-horizontal .team-bio {
            color: var(--body);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-top: 1.75rem;
            max-width: 90%;
        }

        .team-socials {
            display: flex;
            gap: 1rem;
            margin-top: 2.25rem;
        }

        .team-social-link {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: var(--smoke);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            text-decoration: none;
            border: 1px solid transparent;
        }

        .team-social-link:hover {
            background: var(--teal-light);
            color: var(--teal);
            transform: translateY(-3px);
            border-color: var(--border-strong);
        }

        .team-social-link svg {
            width: 18px;
            height: 18px;
            stroke-width: 2;
        }

        .team-mini-img {
            width: 60px;
            height: 60px;
            border-radius: 13px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .team-mini-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            margin-top: 0.45rem;
        }

        .team-mini-tag {
            font-size: 0.63rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--teal);
            background: rgba(27, 124, 131, 0.07);
            border: 1px solid rgba(27, 124, 131, 0.16);
            padding: 0.2rem 0.6rem;
            border-radius: 100px;
        }

        .join-card {
            background: var(--ink);
            border-radius: 20px;
            padding: 2.25rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .join-card::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(27, 124, 131, 0.15);
            bottom: -60px;
            right: -60px;
            filter: blur(40px);
            pointer-events: none;
        }

        .join-title {
            font-family: 'Manrope', sans-serif;
            font-size: 1.65rem;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 0.75rem;
            font-weight: 800;
        }

        .join-sub {
            font-size: var(--fs-sm);
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.7;
        }

        .join-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--teal);
            color: #fff;
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 0.85rem 1.6rem;
            border-radius: 100px;
            text-decoration: none;
            transition: background 0.2s, transform 0.2s;
            margin-top: 2rem;
            align-self: flex-start;
        }

        .join-btn:hover {
            background: var(--teal-mid);
            transform: translateY(-2px);
        }

        /* ABOUT */
        .about-grid {
            display: grid;
            /* grid-template-columns: 1fr 1fr; */
            gap: 5.5rem;
            align-items: center;
        }

        .about-quote-block {
            border-left: 2.5px solid var(--teal);
            padding-left: 1.75rem;
            margin: 2.25rem 0;
        }

        .about-quote-text {
            font-family: 'Manrope', sans-serif;
            font-style: italic;
            font-size: 1.45rem;
            color: var(--ink);
            line-height: 1.55;
            font-weight: 700;
        }

        .about-body {
            font-size: var(--fs-base);
            color: var(--body);
            line-height: 1.95;
            margin-bottom: 1.1rem;
        }

        .about-values {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            margin-top: 2.25rem;
        }

        .value-pill {
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--teal);
            background: rgba(27, 124, 131, 0.07);
            border: 1px solid rgba(27, 124, 131, 0.2);
            padding: 0.45rem 1.1rem;
            border-radius: 100px;
        }

        .about-img-wrap {
            border-radius: 26px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
        }

        .about-img-wrap img {
            width: 100%;
            height: 540px;
            object-fit: cover;
            display: block;
        }

        .about-img-badge {
            position: absolute;
            bottom: 1.75rem;
            left: 1.75rem;
            background: rgba(250, 249, 247, 0.96);
            backdrop-filter: blur(16px);
            border-radius: 16px;
            padding: 1rem 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.85rem;
            border: 1px solid rgba(27, 124, 131, 0.15);
        }

        .about-img-badge-icon {
            width: 38px;
            height: 38px;
            background: var(--teal);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .philosophy-grid {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 1.25rem;
            margin-top: 4.5rem;
        }

        .philosophy-card {
            background: #fff;
            border-radius: 22px;
            padding: 3rem;
            border: 1px solid var(--border);
        }

        .philosophy-card h3 {
            font-family: 'Manrope', sans-serif;
            font-size: 2rem;
            color: var(--ink);
            margin-bottom: 1.1rem;
            line-height: 1.25;
            font-weight: 800;
        }

        .philosophy-card h3 em {
            font-style: italic;
            color: var(--teal);
        }

        .philosophy-card p {
            font-size: var(--fs-base);
            color: var(--body);
            line-height: 1.9;
            margin-bottom: 1.1rem;
        }

        .mission-card {
            background: var(--teal);
            border-radius: 22px;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .mission-card::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.07);
            bottom: -80px;
            right: -80px;
        }

        .mission-title {
            font-family: 'Manrope', sans-serif;
            font-size: 1.65rem;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 0.85rem;
            font-weight: 800;
        }

        .mission-body {
            font-size: var(--fs-sm);
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.85;
        }

        .mission-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #fff;
            color: var(--teal);
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 0.85rem 1.6rem;
            border-radius: 100px;
            text-decoration: none;
            margin-top: 2.75rem;
            align-self: flex-start;
            transition: background 0.2s;
            position: relative;
            z-index: 1;
        }

        .mission-btn:hover {
            background: rgba(255, 255, 255, 0.92);
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.1rem;
            margin-top: 1.25rem;
        }

        .stat-card {
            background: #fff;
            border-radius: 18px;
            padding: 2rem;
            text-align: center;
            border: 1px solid var(--border);
            transition: box-shadow 0.3s, transform 0.3s;
        }

        .stat-card:hover {
            box-shadow: 0 12px 40px rgba(27, 124, 131, 0.1);
            transform: translateY(-4px);
        }

        .stat-num {
            font-family: 'Manrope', sans-serif;
            font-size: 3.25rem;
            color: var(--teal);
            line-height: 1;
            font-weight: 700;
        }

        .stat-label {
            font-size: var(--label);
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--muted);
            margin-top: 0.5rem;
        }

        /* CONTACT */
        .contact-grid {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 3rem;
        }

        .contact-form-wrap {
            background: #fff;
            border-radius: 26px;
            padding: 3rem;
            border: 1px solid var(--border);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
        }

        .form-section-label {
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 0.9rem;
            display: block;
        }

        .svc-tag-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            margin-bottom: 2rem;
        }

        .svc-tag {
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--teal);
            background: rgba(27, 124, 131, 0.07);
            border: 1px solid rgba(27, 124, 131, 0.2);
            padding: 0.45rem 1rem;
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .svc-tag.active,
        .svc-tag:hover {
            background: var(--teal);
            color: #fff;
            border-color: var(--teal);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .form-group {
            position: relative;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 1.1rem 1.25rem;
            border: 1.5px solid rgba(27, 124, 131, 0.18);
            border-radius: 14px;
            background: var(--smoke);
            color: var(--ink);
            font-family: 'Manrope', sans-serif;
            font-size: var(--fs-base);
            transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
            outline: none;
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: var(--teal);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(27, 124, 131, 0.08);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: var(--muted);
            font-size: var(--fs-sm);
        }

        .form-textarea {
            resize: none;
            height: 130px;
        }

        .budget-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.55rem;
            margin: 1.1rem 0;
        }

        .budget-label {
            cursor: pointer;
        }

        .budget-label input {
            display: none;
        }

        .budget-label span {
            display: block;
            text-align: center;
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--muted);
            border: 1.5px solid rgba(27, 124, 131, 0.18);
            border-radius: 11px;
            padding: 0.75rem;
            background: var(--smoke);
            transition: all 0.2s;
            cursor: pointer;
        }

        .budget-label input:checked+span {
            background: var(--teal);
            color: #fff;
            border-color: var(--teal);
        }

        .budget-label span:hover {
            border-color: var(--teal);
            color: var(--teal);
        }

        .submit-btn {
            width: 100%;
            background: var(--ink);
            color: #fff;
            border: none;
            border-radius: 14px;
            padding: 1.2rem;
            font-family: 'Manrope', sans-serif;
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.65rem;
            transition: background 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
            margin-top: 1.4rem;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--teal);
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .submit-btn:hover::before {
            transform: translateX(0);
        }

        .submit-btn span,
        .submit-btn svg {
            position: relative;
            z-index: 1;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(27, 124, 131, 0.25);
        }

        .contact-side {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .contact-cta-card {
            background: var(--ink);
            border-radius: 22px;
            padding: 2.5rem;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .contact-cta-card::before {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: rgba(27, 124, 131, 0.15);
            bottom: -70px;
            right: -70px;
            filter: blur(50px);
        }

        .contact-cta-card h3 {
            font-family: 'Manrope', sans-serif;
            font-size: 1.75rem;
            color: #fff;
            margin-bottom: 0.85rem;
            font-weight: 800;
            line-height: 1.3;
            position: relative;
            z-index: 1;
        }

        .contact-cta-card p {
            font-size: var(--fs-sm);
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .contact-avail {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.4rem;
            font-size: var(--fs-sm);
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            z-index: 1;
        }

        .avail-dot {
            width: 7px;
            height: 7px;
            background: #2eb82e;
            border-radius: 50%;
            animation: pulse-green 2s ease infinite;
            flex-shrink: 0;
        }

        .info-card {
            background: #fff;
            border-radius: 18px;
            padding: 1.4rem 1.65rem;
            border: 1px solid var(--border);
            display: flex;
            align-items: flex-start;
            gap: 1.1rem;
            transition: box-shadow 0.25s, transform 0.25s;
        }

        .info-card:hover {
            box-shadow: 0 8px 28px rgba(27, 124, 131, 0.1);
            transform: translateY(-2px);
        }

        .info-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(27, 124, 131, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-label {
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 0.35rem;
        }

        .info-value {
            font-size: var(--fs-base);
            font-weight: 600;
            color: var(--ink);
            text-decoration: none;
        }

        .info-value:hover {
            color: var(--teal);
        }

        .info-sub {
            font-size: var(--fs-sm);
            color: var(--muted);
            margin-top: 0.2rem;
        }

        .social-card {
            background: #fff;
            border-radius: 18px;
            padding: 1.4rem 1.65rem;
            border: 1px solid var(--border);
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 0.9rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            text-decoration: none;
            color: var(--body);
            font-size: var(--fs-base);
            font-weight: 500;
            padding: 0.55rem 0.85rem;
            border-radius: 11px;
            transition: background 0.2s, color 0.2s;
        }

        .social-link:hover {
            background: var(--teal-light);
            color: var(--teal);
        }

        .social-link-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(27, 124, 131, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .social-link:hover .social-link-icon {
            background: var(--teal);
        }

        .social-link:hover .social-link-icon svg {
            stroke: #fff;
        }

        /* CTA BANNER */
        .cta-banner {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
            background: var(--warm-white);
        }

        .cta-inner {
            background: var(--ink);
            padding: 7rem 4rem;
            border-radius: 48px;
            position: relative;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .cta-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(27, 124, 131, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(27, 124, 131, 0.1) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.3;
            mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
        }

        .cta-orb {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(27, 124, 131, 0.15), transparent 70%);
            filter: blur(80px);
            pointer-events: none;
            border-radius: 50%;
            z-index: 1;
        }

        .cta-orb-1 { top: -200px; right: -100px; animation: orb-drift 12s infinite alternate; }
        .cta-orb-2 { bottom: -200px; left: -100px; animation: orb-drift 15s infinite alternate-reverse; }

        .cta-h2 {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            color: #fff;
            line-height: 1.05;
            font-weight: 800;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
            letter-spacing: -0.02em;
        }

        .cta-h2 em {
            color: var(--teal-mid);
            font-style: italic;
        }

        .cta-p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 640px;
            margin: 0 auto 3.5rem;
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }

        .cta-inner .btn-ink {
            background: #fff;
            color: var(--ink);
            padding: 1.25rem 2.75rem;
        }

        .cta-inner .btn-ink:hover {
            background: var(--teal);
            color: #fff;
        }

        .cta-inner .btn-ink svg path {
            stroke: var(--ink);
        }

        .cta-inner .btn-ink:hover svg path {
            stroke: #fff;
        }

        /* FOOTER */
        footer {
            background: #080d0e;
            padding: 5.5rem 0 2.75rem;
        }

        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
            margin-bottom: 1.1rem;
        }

        .footer-logo-mark {
            width: 32px;
            height: 32px;
            background: var(--teal);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-text {
            font-family: 'Manrope', sans-serif;
            font-size: 1.45rem;
            color: #fff;
            font-weight: 800;
        }

        .footer-desc {
            font-size: var(--fs-sm);
            color: rgba(255, 255, 255, 0.35);
            line-height: 1.85;
            max-width: 260px;
        }

        .footer-col-title {
            font-size: var(--label);
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 1.4rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
            font-size: var(--fs-sm);
            transition: color 0.2s;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            padding-top: 2.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copy {
            font-size: var(--fs-sm);
            color: rgba(255, 255, 255, 0.3);
        }

        /* TOAST */
        .toast {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: var(--ink);
            color: #fff;
            border-radius: 100px;
            padding: 1rem 2rem;
            font-size: var(--fs-sm);
            font-weight: 500;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 999;
            white-space: nowrap;
        }

        .toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        /* FADE UP */
        .fade-up {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-up.in {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-up-delay-1 {
            transition-delay: 0.1s;
        }

        .fade-up-delay-2 {
            transition-delay: 0.2s;
        }

        .fade-up-delay-3 {
            transition-delay: 0.3s;
        }

        .fade-up-delay-4 {
            transition-delay: 0.4s;
        }

        /* RESPONSIVE */
        @media(max-width:1100px) {
            .projects-small {
                grid-template-columns: repeat(2, 1fr);
            }

            .quotes-row {
                grid-template-columns: 1fr 1fr;
            }

            .container {
                padding: 0 2rem;
            }

            .nav-inner {
                padding: 1.4rem 2rem;
            }
        }

        @media(max-width:900px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-card-wrap {
                display: none;
            }

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

            .project-featured {
                grid-template-columns: 1fr;
            }

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

            .quotes-row {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-mini-row {
                grid-template-columns: 1fr;
            }

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

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

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

            .footer-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }

            .hamburger-btn {
                display: flex;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                gap: 0;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--warm-white);
                border-bottom: 1px solid var(--border);
                padding: 1rem 2rem 1.5rem;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links a {
                padding: 0.85rem 0;
                border-bottom: 1px solid var(--mist);
                width: 100%;
            }

            .nav-cta {
                margin-top: 1rem;
                text-align: center;
            }

            .nav-avail {
                display: none;
            }
        }

        @media(max-width:600px) {
            .team-grid {
                grid-template-columns: 1fr;
            }

            .projects-small {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 1.5rem;
            }

            .section {
                padding: 5.5rem 0;
            }

            .hero {
                padding: 7rem 0 4rem;
            }
        }
