        :root {
            --teal: #1B7C83;
            --teal-dark: #124f54;
            --teal-glow: #151515;
            --teal-mid: #2a939b;
            --teal-light: #e8f5f6;
            --ink: #080d0e;
            --ink-soft: #0f1a1b;
            --smoke: #f5f4f1;
            --mist: #eceae6;
            --warm-white: #faf9f7;
            --body: #3d4a4a;
            --muted: #7a8c8c;
            --border: rgba(15, 23, 42, 0.08);
            --border-strong: rgba(15, 23, 42, 0.16);
            --border-glow: inset 0 1px 1px rgba(255, 255, 255, 0.9);
            --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;
            line-height: 1.85;
        }

        /* 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(255, 255, 255, 0.95);
            backdrop-filter: blur(24px) saturate(180%);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
        } */

        /* 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: var(--warm-white);
        }

        nav.on-dark:not(.scrolled) .hamburger-btn span {
            background: var(--warm-white);
        }

        nav.on-dark:not(.scrolled) .nav-cta {
            background: var(--smoke);
            color: var(--ink);
            border-color: var(--warm-white);
        }

        nav.on-dark:not(.scrolled) .nav-cta:hover {
            background: transparent;
            color: var(--warm-white);
            border-color: var(--warm-white);
        }

        .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: var(--smoke);
            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: var(--warm-white);
            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: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(15, 171, 188, 0.12), transparent 70%);
            top: -250px;
            right: -150px;
            animation: orb-drift 12s ease-in-out infinite alternate;
            filter: blur(120px);
        }

        .hero-orb-2 {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(15, 171, 188, 0.08), transparent 70%);
            bottom: -200px;
            left: -150px;
            animation: orb-drift 15s ease-in-out infinite alternate-reverse;
            filter: blur(120px);
        }

        @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.95;
            letter-spacing: -0.045em;
            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.9;
            color: var(--body);
            max-width: 480px;
            margin-bottom: 3rem;
            font-weight: 500;
        }

        .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: var(--warm-white);
            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 20px 40px var(--teal-glow), 0 0 0 4px rgba(20, 184, 166, 0.1);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            border: 1px solid var(--border-strong);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            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.3s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.9);
            border-color: var(--teal);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        }

        .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: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 26px;
            border: 1px solid var(--border);
            box-shadow: var(--border-glow), 0 40px 100px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(15, 171, 188, 0.06);
            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(4, 4, 5, 0.65);
        }

        .card-cell.accent .card-cell-val {
            color: var(--warm-white);
        }

        .float-badge {
            position: absolute;
            background: var(--smoke);
            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(4, 4, 5, 0.35);
            padding: 0 2.75rem;
            flex-shrink: 0;
        }

        .marquee-item span {
            color: rgba(4, 4, 5, 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: 1.5rem;
            font-weight: 900;
            color: rgba(60, 74, 74, 0.35);
            letter-spacing: -0.02em;
            transition: color 0.25s;
            text-decoration: none;
            color: #878282;
        }

        .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: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            cursor: default;
            position: relative;
            overflow: hidden;
            box-shadow: var(--border-glow);
        }

        .service-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--teal-glow), transparent);
            opacity: 0;
            transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .service-item:hover {
            background: var(--smoke);
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04), var(--border-glow);
            z-index: 1;
        }

        .service-item:hover::after {
            opacity: 0.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: var(--smoke);
            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: var(--warm-white);
            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: var(--smoke);
            border-radius: 32px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            display: flex;
            flex-direction: column;
            position: relative;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        }

        .project-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 40px 80px rgba(15, 171, 188, 0.08), 0 15px 35px rgba(0, 0, 0, 0.05);
            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: var(--smoke);
            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: var(--smoke);
            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(4, 4, 5, 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(4, 4, 5, 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: var(--warm-white);
            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: var(--smoke);
            border-radius: 22px;
            padding: 2.25rem;
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        }

        .quote-card:hover {
            box-shadow: 0 30px 60px rgba(15, 171, 188, 0.08), 0 10px 25px rgba(0, 0, 0, 0.04);
            transform: translateY(-6px) scale(1.01);
            border-color: var(--border-strong);
        }

        .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: var(--warm-white);
            font-weight: 700;
        }

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

        .sat-sub {
            font-size: var(--fs-sm);
            color: rgba(4, 4, 5, 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: var(--smoke);
            border-radius: 22px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        }

        .team-card:hover {
            box-shadow: 0 40px 80px rgba(15, 171, 188, 0.08), 0 15px 35px rgba(0, 0, 0, 0.05);
            transform: translateY(-10px) scale(1.02);
            border-color: var(--border-strong);
        }

        .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(4, 4, 5, 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: var(--warm-white);
            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: var(--smoke);
            border-radius: 20px;
            padding: 1.4rem;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
        }

        .team-mini:hover {
            box-shadow: 0 20px 40px rgba(15, 171, 188, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
            transform: translateY(-4px) scale(1.02);
            border-color: var(--border-strong);
        }

        /* TEAM HORIZONTAL */
        .team-card-horizontal {
            display: flex;
            background: var(--smoke);
            border-radius: 32px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            min-height: 380px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
        }

        .team-card-horizontal:hover {
            transform: translateY(-12px) scale(1.01);
            box-shadow: 0 50px 100px rgba(15, 171, 188, 0.1), 0 20px 40px rgba(0, 0, 0, 0.05);
            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: var(--warm-white);
            line-height: 1.2;
            margin-bottom: 0.75rem;
            font-weight: 800;
        }

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

        .join-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--teal);
            color: var(--warm-white);
            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: var(--smoke);
            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: var(--warm-white);
            line-height: 1.3;
            margin-bottom: 0.85rem;
            font-weight: 800;
        }

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

        .mission-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--smoke);
            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: var(--smoke);
            border-radius: 18px;
            padding: 2rem;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
        }

        .stat-card:hover {
            box-shadow: 0 25px 50px rgba(15, 171, 188, 0.08), 0 10px 25px rgba(0, 0, 0, 0.04);
            transform: translateY(-6px) scale(1.02);
            border-color: var(--border-strong);
        }

        .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: var(--smoke);
            border-radius: 26px;
            padding: 3rem;
            border: 1px solid var(--border);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03), var(--border-glow);
        }

        .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: var(--warm-white);
            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: var(--smoke);
            box-shadow: 0 0 0 4px var(--teal-glow);
        }

        .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: var(--warm-white);
            border-color: var(--teal);
        }

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

        .submit-btn {
            width: 100%;
            background: var(--ink);
            color: var(--warm-white);
            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 20px 40px var(--teal-glow), 0 0 0 4px rgba(20, 184, 166, 0.1);
        }

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

        .contact-cta-card {
            background: var(--ink);
            border-radius: 22px;
            padding: 2.5rem;
            color: var(--warm-white);
            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: var(--warm-white);
            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(4, 4, 5, 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(4, 4, 5, 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: var(--smoke);
            border-radius: 18px;
            padding: 1.4rem 1.65rem;
            border: 1px solid var(--border);
            display: flex;
            align-items: flex-start;
            gap: 1.1rem;
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.015);
        }

        .info-card:hover {
            box-shadow: 0 20px 40px rgba(15, 171, 188, 0.06), 0 5px 15px rgba(0, 0, 0, 0.03);
            transform: translateY(-4px) scale(1.01);
            border-color: var(--border-strong);
        }

        .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: var(--smoke);
            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: 8rem 0;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 80% 0%, rgba(20, 184, 166, 0.25), transparent 50%),
                radial-gradient(circle at 20% 100%, rgba(56, 189, 248, 0.15), transparent 50%),
                var(--warm-white);
        }

        .cta-inner {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(40px) saturate(200%);
            padding: 7rem 4rem;
            border-radius: 48px;
            position: relative;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .cta-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(20, 184, 166, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 184, 166, 0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.6;
            mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
            z-index: 0;
        }

        .cta-orb {
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(15, 171, 188, 0.15), transparent 70%);
            filter: blur(100px);
            pointer-events: none;
            border-radius: 50%;
            z-index: 0;
        }

        .cta-orb-1 {
            top: -250px;
            right: -150px;
            animation: orb-drift 12s ease-in-out infinite alternate;
        }

        .cta-orb-2 {
            bottom: -250px;
            left: -150px;
            animation: orb-drift 15s ease-in-out infinite alternate-reverse;
        }

        .cta-h2 {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(3rem, 6vw, 5rem);
            color: var(--ink);
            line-height: 1.05;
            font-weight: 800;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
            letter-spacing: -0.04em;
        }

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

        .cta-p {
            font-size: 1.25rem;
            color: var(--body);
            max-width: 640px;
            margin: 0 auto 3.5rem;
            line-height: 1.8;
            position: relative;
            z-index: 2;
            font-weight: 500;
        }

        .cta-inner .btn-ink {
            background: var(--ink);
            color: var(--warm-white);
            padding: 1.25rem 2.75rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .cta-inner .btn-ink:hover {
            background: var(--teal);
            color: var(--warm-white);
            box-shadow: 0 20px 40px var(--teal-glow), 0 0 0 4px rgba(20, 184, 166, 0.1);
        }

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

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

        /* FOOTER */
        footer {
            background: var(--smoke);
            padding: 8rem 0 3rem;
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--border);
        }

        footer::after {
            content: 'KEHEM IT';
            position: absolute;
            bottom: -5vw;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Manrope', sans-serif;
            font-size: 28vw;
            font-weight: 800;
            color: rgba(15, 171, 188, 0.02);
            white-space: nowrap;
            pointer-events: none;
            z-index: 1;
            line-height: 1;
            letter-spacing: -0.04em;
        }

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

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

        .footer-logo-mark {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--teal), var(--teal-dark));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(15, 171, 188, 0.2);
        }

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

        .footer-desc {
            font-size: 1.1rem;
            color: var(--body);
            line-height: 1.9;
            max-width: 300px;
            font-weight: 500;
        }

        .footer-col-title {
            font-size: 0.85rem;
            font-weight: 800;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--ink);
            margin-bottom: 1.75rem;
        }

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

        .footer-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
            transition: color 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            position: relative;
            display: inline-block;
            width: fit-content;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--teal);
            transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

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

        .footer-links a:hover::after {
            width: 100%;
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }

        .footer-copy {
            font-size: 1rem;
            font-weight: 600;
            color: var(--muted);
        }

        /* TOAST */
        .toast {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: var(--ink);
            color: var(--warm-white);
            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;
            }
        }

        /* apple style  */


        .visual {
            position: relative;
            height: 650px;
        }

        .glow {
            position: absolute;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, #8ee6ec 0%, rgba(142, 230, 236, 0) 70%);
            top: 80px;
            right: 70px;
            opacity: .45;
        }

        .card {
            position: absolute;
            background: rgba(255, 255, 255, .78);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, .6);
            border-radius: 28px;
            padding: 28px;
            box-shadow: 0 25px 60px rgba(15, 23, 42, .08);
        }

        .card h4 {
            font-size: 20px;
            margin-bottom: 14px;
        }

        .card p {
            color: #667085;
            line-height: 1.7;
            font-size: 15px;
        }

        .card1 {
            width: 340px;
            top: 30px;
            right: 60px;
        }

        .card2 {
            width: 290px;
            left: 10px;
            top: 210px;
        }

        .card3 {
            width: 370px;
            right: 10px;
            bottom: 70px;
        }

        .floating-dot {
            position: absolute;
            width: 16px;
            height: 16px;
            background: #167d86;
            border-radius: 50%;
            left: 130px;
            top: 90px;
            box-shadow: 0 0 0 10px rgba(22, 125, 134, .08);
        }

        /* RESPONSIVE */
        @media(max-width:1100px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .visual {
                height: 520px;
                margin-top: 30px;
            }

            .hero h1 {
                font-size: 58px;
            }
        }

        @media(max-width:700px) {
            .menu {
                display: none;
            }

            .hero h1 {
                font-size: 42px;
            }

            .subtext {
                font-size: 17px;
            }

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

            .stats {
                gap: 25px;
                flex-wrap: wrap;
            }

            .visual {
                display: none;
            }
        }

        .what-we-do-apple {
            padding: 140px 0;
            background:
                radial-gradient(circle at top right, rgba(27, 124, 131, .05), transparent 30%),
                linear-gradient(to bottom, #ffffff, #f8fbfb);
        }

        .apple-head {
            display: flex;
            justify-content: space-between;
            gap: 60px;
            align-items: end;
            margin-bottom: 70px;
        }

        .apple-head .section-h2 {
            font-size: 64px;
            line-height: 1.02;
            letter-spacing: -2.5px;
            font-weight: 600;
            color: #0f1720;
        }

        .apple-head .section-h2 em {
            font-style: italic;
            font-weight: 500;
            color: #1B7C83;
        }

        .apple-head .section-sub {
            max-width: 520px;
            font-size: 20px;
            line-height: 1.8;
            color: #667085;
        }

        .apple-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 26px;
        }

        .apple-card {
            position: relative;
            padding: 34px;
            border-radius: 28px;
            background: rgba(255, 255, 255, .82);
            border: 1px solid rgba(255, 255, 255, .9);
            box-shadow:
                0 10px 30px rgba(15, 23, 42, .04),
                0 1px 0 rgba(255, 255, 255, .8) inset;
            backdrop-filter: blur(18px);
            transition: .45s ease;
            text-decoration: none;
            overflow: hidden;
        }

        .apple-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(27, 124, 131, .06),
                    transparent 35%,
                    transparent 70%,
                    rgba(27, 124, 131, .04));
            opacity: 0;
            transition: .45s ease;
        }

        .apple-card:hover {
            transform: translateY(-10px);
            box-shadow:
                0 30px 60px rgba(15, 23, 42, .08),
                0 1px 0 rgba(255, 255, 255, .9) inset;
        }

        .apple-card:hover::before {
            opacity: 1;
        }

        .service-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
        }

        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #eef7f7;
            color: #1B7C83;
        }

        .service-no {
            font-size: 13px;
            letter-spacing: 2px;
            color: #98a2b3;
            font-weight: 600;
        }

        .service-name {
            font-size: 30px;
            line-height: 1.1;
            letter-spacing: -1px;
            font-weight: 600;
            color: #101828;
            margin-bottom: 18px;
        }

        .service-desc {
            font-size: 17px;
            line-height: 1.8;
            color: #667085;
            margin-bottom: 28px;
            max-width: 520px;
        }

        .service-link {
            font-size: 15px;
            font-weight: 600;
            color: #1B7C83;
        }

        @media(max-width:1100px) {

            .apple-head {
                flex-direction: column;
                align-items: flex-start;
            }

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

            .apple-head .section-h2 {
                font-size: 52px;
            }

        }

        @media(max-width:768px) {

            .what-we-do-apple {
                padding: 90px 0;
            }

            .apple-head .section-h2 {
                font-size: 40px;
            }

            .apple-head .section-sub {
                font-size: 17px;
            }

            .apple-card {
                padding: 26px;
                border-radius: 24px;
            }

            .service-name {
                font-size: 24px;
            }

            .service-desc {
                font-size: 16px;
            }

        }


        .why-kehem-apple {
            padding: 140px 0;
            background:
                radial-gradient(circle at left top, rgba(27, 124, 131, .06), transparent 30%),
                linear-gradient(to bottom, #f8fbfb, #ffffff);
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 70px;
            align-items: center;
        }

        .why-left .section-h2 {
            font-size: 64px;
            line-height: 1.02;
            letter-spacing: -2.4px;
            font-weight: 600;
            margin-top: 18px;
            color: #0f1720;
        }

        .why-left .section-h2 em {
            color: #1B7C83;
            font-style: italic;
            font-weight: 500;
        }

        .why-intro {
            margin-top: 26px;
            max-width: 560px;
            font-size: 20px;
            line-height: 1.8;
            color: #667085;
        }

        .trust-mini {
            margin-top: 42px;
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .mini-stat {
            min-width: 140px;
            padding: 20px 22px;
            border-radius: 22px;
            background: rgba(255, 255, 255, .75);
            border: 1px solid rgba(15, 23, 42, .06);
            box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
        }

        .mini-stat strong {
            display: block;
            font-size: 28px;
            letter-spacing: -1px;
            color: #101828;
        }

        .mini-stat span {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #98a2b3;
        }

        .why-right {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .why-card {
            display: flex;
            gap: 24px;
            padding: 30px;
            border-radius: 28px;
            background: rgba(255, 255, 255, .82);
            border: 1px solid rgba(255, 255, 255, .95);
            box-shadow:
                0 10px 30px rgba(15, 23, 42, .04),
                0 1px 0 rgba(255, 255, 255, .8) inset;
            backdrop-filter: blur(18px);
            transition: .4s ease;
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 24px 50px rgba(15, 23, 42, .08),
                0 1px 0 rgba(255, 255, 255, .9) inset;
        }

        .why-no {
            min-width: 58px;
            height: 58px;
            border-radius: 18px;
            background: #eef7f7;
            color: #1B7C83;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .why-content h4 {
            font-size: 28px;
            line-height: 1.15;
            letter-spacing: -1px;
            font-weight: 600;
            color: #101828;
            margin-bottom: 10px;
        }

        .why-content p {
            font-size: 17px;
            line-height: 1.8;
            color: #667085;
            max-width: 520px;
        }

        @media(max-width:1100px) {

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

            .why-left .section-h2 {
                font-size: 52px;
            }

        }

        @media(max-width:768px) {

            .why-kehem-apple {
                padding: 90px 0;
            }

            .why-left .section-h2 {
                font-size: 40px;
            }

            .why-intro {
                font-size: 17px;
            }

            .why-card {
                padding: 24px;
                gap: 18px;
                border-radius: 24px;
            }

            .why-no {
                min-width: 50px;
                height: 50px;
                border-radius: 16px;
                font-size: 14px;
            }

            .why-content h4 {
                font-size: 22px;
            }

            .why-content p {
                font-size: 16px;
            }

        }

        .projects-apple {
            padding: 140px 0;
            background:
                radial-gradient(circle at right top, rgba(27, 124, 131, .05), transparent 28%),
                linear-gradient(to bottom, #ffffff, #f8fbfb);
        }

        /* HEADER */
        .apple-project-head {
            display: flex;
            justify-content: space-between;
            align-items: end;
            gap: 50px;
            margin-bottom: 70px;
        }

        .apple-project-head .section-h2 {
            font-size: 64px;
            line-height: 1.02;
            letter-spacing: -2.5px;
            font-weight: 600;
            color: #101828;
            margin-top: 16px;
        }

        .apple-project-head .section-h2 em {
            color: #1B7C83;
            font-style: italic;
            font-weight: 500;
        }

        .project-intro {
            margin-top: 20px;
            max-width: 560px;
            font-size: 20px;
            line-height: 1.8;
            color: #667085;
        }

        .btn-project-ghost {
            padding: 16px 28px;
            border-radius: 999px;
            border: 1px solid rgba(16, 24, 40, .08);
            background: #fff;
            color: #101828;
            font-weight: 600;
            transition: .35s ease;
            white-space: nowrap;
        }

        .btn-project-ghost:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 35px rgba(15, 23, 42, .06);
        }

        /* GRID */
        .projects-apple-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr;
            gap: 26px;
        }

        /* CARD */
        .project-apple {
            display: flex;
            flex-direction: column;
            border-radius: 30px;
            overflow: hidden;
            background: rgba(255, 255, 255, .85);
            border: 1px solid rgba(255, 255, 255, .9);
            box-shadow:
                0 10px 30px rgba(15, 23, 42, .04),
                0 1px 0 rgba(255, 255, 255, .8) inset;
            text-decoration: none;
            transition: .45s ease;
        }

        .project-apple:hover {
            transform: translateY(-10px);
            box-shadow:
                0 30px 60px rgba(15, 23, 42, .08),
                0 1px 0 rgba(255, 255, 255, .85) inset;
        }

        .project-apple.featured {
            min-height: 620px;
        }

        .project-visual {
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        .project-apple.featured .project-visual {
            height: 360px;
        }

        .project-visual img {
            max-width: 78%;
            max-height: 78%;
            object-fit: contain;
            border-radius: 18px;
        }

        /* BG Variations */
        .bg-one {
            background: linear-gradient(135deg, #eaf8f8, #d8f1f2);
        }

        .bg-two {
            background: linear-gradient(135deg, #f4f4f5, #ececee);
        }

        .bg-three {
            background: linear-gradient(135deg, #eef7f7, #e3f4f4);
        }

        .project-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex: 1;
        }

        .project-tag {
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #98a2b3;
            font-weight: 600;
        }

        .project-content h3 {
            font-size: 34px;
            line-height: 1.05;
            letter-spacing: -1.2px;
            color: #101828;
            margin: 12px 0 14px;
            font-weight: 600;
        }

        .project-content p {
            font-size: 17px;
            line-height: 1.8;
            color: #667085;
        }

        .project-status {
            margin-top: 26px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #475467;
        }

        .project-status span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #1B7C83;
        }

        .project-status.live span {
            box-shadow: 0 0 0 8px rgba(27, 124, 131, .10);
        }

        /* RESPONSIVE */
        @media(max-width:1180px) {

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

            .project-apple.featured {
                min-height: auto;
            }

            .apple-project-head {
                flex-direction: column;
                align-items: flex-start;
            }

            .apple-project-head .section-h2 {
                font-size: 52px;
            }

        }

        @media(max-width:768px) {

            .projects-apple {
                padding: 90px 0;
            }

            .apple-project-head .section-h2 {
                font-size: 40px;
            }

            .project-intro {
                font-size: 17px;
            }

            .project-visual,
            .project-apple.featured .project-visual {
                height: 220px;
            }

            .project-content {
                padding: 24px;
            }

            .project-content h3 {
                font-size: 28px;
            }

            .project-content p {
                font-size: 16px;
            }

        }

        .cta-apple-section {
            padding: 120px 0 140px;
            background:
                radial-gradient(circle at center, rgba(27, 124, 131, .05), transparent 38%),
                linear-gradient(to bottom, #ffffff, #f8fbfb);
        }

        .cta-apple-card {
            position: relative;
            overflow: hidden;
            border-radius: 38px;
            padding: 70px;
            display: grid;
            grid-template-columns: 1.35fr .75fr;
            gap: 50px;
            background:
                linear-gradient(135deg,
                    rgba(255, 255, 255, .95),
                    rgba(248, 251, 251, .92));
            border: 1px solid rgba(255, 255, 255, .95);
            box-shadow:
                0 25px 60px rgba(15, 23, 42, .06),
                0 1px 0 rgba(255, 255, 255, .85) inset;
        }

        .cta-glow {
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            right: -80px;
            top: -120px;
            background: radial-gradient(circle,
                    rgba(27, 124, 131, .18),
                    rgba(27, 124, 131, 0));
            pointer-events: none;
        }

        .cta-mini-label {
            display: inline-block;
            padding: 8px 14px;
            border-radius: 999px;
            background: #eef7f7;
            color: #1B7C83;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .cta-h2 {
            font-size: 72px;
            line-height: 1;
            letter-spacing: -3px;
            font-weight: 600;
            color: #101828;
        }

        .cta-h2 em {
            color: #1B7C83;
            font-style: italic;
            font-weight: 500;
        }

        .cta-p {
            margin-top: 24px;
            max-width: 640px;
            font-size: 21px;
            line-height: 1.8;
            color: #667085;
        }

        .cta-actions {
            margin-top: 40px;
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .cta-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 30px;
            border-radius: 999px;
            background: #1B7C83;
            color: #fff;
            font-weight: 600;
            text-decoration: none;
            transition: .35s ease;
            box-shadow: 0 18px 35px rgba(27, 124, 131, .20);
        }

        .cta-btn-primary:hover {
            transform: translateY(-4px);
        }

        .cta-btn-ghost {
            padding: 18px 28px;
            border-radius: 999px;
            border: 1px solid rgba(16, 24, 40, .08);
            background: #fff;
            color: #101828;
            font-weight: 600;
            text-decoration: none;
            transition: .35s ease;
        }

        .cta-btn-ghost:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 35px rgba(15, 23, 42, .06);
        }

        .cta-side-metrics {
            display: flex;
            flex-direction: column;
            gap: 18px;
            justify-content: center;
        }

        .metric-box {
            padding: 26px 28px;
            border-radius: 26px;
            background: rgba(255, 255, 255, .8);
            border: 1px solid rgba(15, 23, 42, .05);
            box-shadow: 0 10px 25px rgba(15, 23, 42, .04);
        }

        .metric-box strong {
            display: block;
            font-size: 34px;
            line-height: 1;
            letter-spacing: -1px;
            color: #101828;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .metric-box span {
            font-size: 13px;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            color: #98a2b3;
            font-weight: 600;
        }

        /* RESPONSIVE */
        @media(max-width:1100px) {

            .cta-apple-card {
                grid-template-columns: 1fr;
                padding: 55px;
            }

            .cta-side-metrics {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .metric-box {
                flex: 1;
                min-width: 180px;
            }

            .cta-h2 {
                font-size: 56px;
            }

        }

        @media(max-width:768px) {

            .cta-apple-section {
                padding: 80px 0 100px;
            }

            .cta-apple-card {
                padding: 34px;
                border-radius: 28px;
            }

            .cta-h2 {
                font-size: 40px;
                letter-spacing: -2px;
            }

            .cta-p {
                font-size: 17px;
            }

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

            .cta-btn-primary,
            .cta-btn-ghost {
                width: 100%;
                justify-content: center;
            }

            .cta-side-metrics {
                flex-direction: column;
            }

            .metric-box {
                min-width: 100%;
            }

        }

        .footer-apple {
            padding: 100px 0 40px;
            background:
                radial-gradient(circle at top right, rgba(27, 124, 131, .06), transparent 30%),
                linear-gradient(to bottom, #0f1720, #091018);
            color: #fff;
        }

        /* TOP */
        .footer-top {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 70px;
            align-items: start;
        }

        /* BRAND */
        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            color: #fff;
            font-size: 28px;
            letter-spacing: -1px;
            font-weight: 600;
        }

        .footer-logo-mark {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1B7C83, #135e63);
            color: #fff;
            box-shadow: 0 12px 30px rgba(27, 124, 131, .25);
        }

        .footer-desc {
            margin-top: 24px;
            max-width: 480px;
            font-size: 17px;
            line-height: 1.9;
            color: rgba(255, 255, 255, .68);
        }

        .footer-status {
            margin-top: 28px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .08);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
        }

        .status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #35d07f;
            box-shadow: 0 0 0 8px rgba(53, 208, 127, .12);
        }

        /* GRID */
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .footer-col h4 {
            font-size: 14px;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .45);
            margin-bottom: 24px;
            font-weight: 700;
        }

        .footer-col a {
            display: block;
            margin-bottom: 14px;
            text-decoration: none;
            color: rgba(255, 255, 255, .82);
            font-size: 16px;
            transition: .3s ease;
        }

        .footer-col a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

        /* LINE */
        .footer-line {
            height: 1px;
            background: rgba(255, 255, 255, .08);
            margin: 70px 0 28px;
        }

        /* BOTTOM */
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-copy {
            color: rgba(255, 255, 255, .55);
            font-size: 15px;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .social-btn {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .07);
            transition: .35s ease;
        }

        .social-btn:hover {
            transform: translateY(-4px);
            background: #1B7C83;
            border-color: #1B7C83;
        }

        /* RESPONSIVE */
        @media(max-width:1100px) {

            .footer-top {
                grid-template-columns: 1fr;
                gap: 55px;
            }

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

        }

        @media(max-width:768px) {

            .footer-apple {
                padding: 70px 0 30px;
            }

            .footer-logo {
                font-size: 24px;
            }

            .footer-desc {
                font-size: 16px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 26px;
            }

            .footer-line {
                margin: 45px 0 24px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

        }


        .services-hero-apple {
            position: relative;
            overflow: hidden;
            min-height: 68vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 170px 0 110px;
            background:
                radial-gradient(circle at top right, rgba(27, 124, 131, .07), transparent 28%),
                radial-gradient(circle at bottom left, rgba(27, 124, 131, .04), transparent 30%),
                linear-gradient(to bottom, #ffffff, #f8fbfb);
        }

        /* soft grid */
        .hero-grid-bg {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px);
            background-size: 42px 42px;
            mask-image: radial-gradient(circle at center, black 45%, transparent 85%);
            opacity: .55;
            pointer-events: none;
        }

        .services-hero-inner {
            position: relative;
            z-index: 2;
            max-width: 980px;
            margin: 0 auto;
            text-align: center;
        }

        .services-hero-title {
            margin-top: 18px;
            font-size: clamp(3.7rem, 7vw, 6.4rem);
            line-height: .98;
            letter-spacing: -3px;
            font-weight: 600;
            color: #101828;
        }

        .services-hero-title em {
            font-style: italic;
            font-weight: 500;
            color: #1B7C83;
        }

        .services-hero-sub {
            margin: 28px auto 0;
            max-width: 720px;
            font-size: 21px;
            line-height: 1.85;
            color: #667085;
        }

        .services-hero-pills {
            margin-top: 42px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        .services-hero-pills span {
            padding: 13px 20px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .82);
            border: 1px solid rgba(16, 24, 40, .06);
            box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
            font-size: 14px;
            font-weight: 600;
            color: #344054;
            letter-spacing: .2px;
        }

        /* Responsive */
        @media(max-width:992px) {

            .services-hero-apple {
                min-height: 60vh;
                padding: 150px 0 90px;
            }

            .services-hero-sub {
                font-size: 18px;
                max-width: 640px;
            }

        }

        @media(max-width:768px) {

            .services-hero-apple {
                min-height: auto;
                padding: 130px 0 75px;
            }

            .services-hero-title {
                letter-spacing: -2px;
            }

            .services-hero-sub {
                font-size: 16px;
                line-height: 1.75;
                margin-top: 22px;
            }

            .services-hero-pills {
                margin-top: 30px;
                gap: 10px;
            }

            .services-hero-pills span {
                padding: 11px 16px;
                font-size: 13px;
            }

        }

        .services-list-apple {
            padding: 140px 0;
            background:
                radial-gradient(circle at top right, rgba(27, 124, 131, .05), transparent 28%),
                linear-gradient(to bottom, #ffffff, #f8fbfb);
        }

        .services-stack {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        /* =========================================
   PREMIUM SERVICES — COMPLETE REDESIGN
========================================= */

        .services-stack {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        /* CARD */
        .service-row {
            position: relative;

            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 60px;

            padding: 42px;

            border-radius: 36px;

            background:
                linear-gradient(145deg,
                    rgba(255, 255, 255, .96) 0%,
                    rgba(248, 250, 252, .92) 100%);

            border: 1px solid rgba(15, 23, 42, .06);

            overflow: hidden;

            transition:
                transform .45s cubic-bezier(.16, 1, .3, 1),
                box-shadow .45s ease,
                border-color .45s ease;

            box-shadow:
                0 1px 0 rgba(255, 255, 255, .95) inset,
                0 10px 30px rgba(15, 23, 42, .04),
                0 30px 80px rgba(15, 23, 42, .06);
        }

        /* ambient glow */
        .service-row::before {
            content: "";

            position: absolute;
            top: -120px;
            right: -120px;

            width: 320px;
            height: 320px;

            background:
                radial-gradient(circle,
                    rgba(27, 124, 131, .10),
                    transparent 70%);

            pointer-events: none;
        }

        /* hover */
        .service-row:hover {
            transform: translateY(-8px);

            border-color: rgba(27, 124, 131, .10);

            box-shadow:
                0 1px 0 rgba(255, 255, 255, .98) inset,
                0 20px 60px rgba(15, 23, 42, .08),
                0 50px 120px rgba(15, 23, 42, .10);
        }

        /* =========================================
   LEFT
========================================= */

        .service-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .svc-top {
            display: flex;
            flex-direction: column;
        }

        .svc-icon-box {
            width: 74px;
            height: 74px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 24px;

            background:
                linear-gradient(180deg,
                    #edf8f8 0%,
                    #e3f1f1 100%);

            color: #1B7C83;

            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, .9),
                0 12px 30px rgba(27, 124, 131, .10);
        }

        .svc-no {
            margin-top: 24px;

            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;

            color: #98A2B3;
        }

        .service-left h3 {
            margin-top: 14px;

            font-size: 42px;
            line-height: 1;
            letter-spacing: -2px;

            font-weight: 650;

            color: #101828;
        }

        /* CTA */
        .tier-callout {
            margin-top: 42px;
        }

        .tier-callout p {
            margin-bottom: 18px;

            font-size: 15px;
            line-height: 1.7;

            color: #667085;
        }

        .submit-btn {
            height: 56px;
            padding: 0 34px;

            border: 0;
            border-radius: 999px;

            display: inline-flex;
            align-items: center;
            justify-content: center;

            background:
                linear-gradient(135deg,
                    #248b92 0%,
                    #166b71 100%);

            color: white;

            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;

            box-shadow:
                0 14px 30px rgba(27, 124, 131, .20);

            transition:
                transform .3s ease,
                box-shadow .3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);

            box-shadow:
                0 20px 40px rgba(27, 124, 131, .26);
        }

        /* =========================================
   RIGHT
========================================= */

        .service-right {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .svc-desc {
            max-width: 700px;

            font-size: 19px;
            line-height: 1.85;

            color: #667085;

            letter-spacing: -.2px;
        }

        /* deliverables */
        .svc-deliverables {
            margin-top: 28px;

            font-size: 14px;
            line-height: 1.8;

            font-weight: 700;

            color: #101828;
        }

        .svc-deliverables span {
            font-weight: 500;
            color: #667085;
        }

        /* tags */
        .svc-tags {
            margin-top: 30px;

            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .svc-tags span {
            padding: 12px 18px;

            border-radius: 999px;

            background:
                linear-gradient(180deg,
                    rgba(255, 255, 255, .96),
                    rgba(248, 250, 252, .96));

            border: 1px solid rgba(16, 24, 40, .06);

            color: #344054;

            font-size: 13px;
            font-weight: 650;

            transition:
                transform .25s ease,
                border-color .25s ease,
                background .25s ease;
        }

        .svc-tags span:hover {
            transform: translateY(-2px);

            border-color: rgba(27, 124, 131, .12);

            background:
                linear-gradient(180deg,
                    #f4fbfb,
                    #edf8f8);
        }

        /* =========================================
   RESPONSIVE
========================================= */

        @media (max-width: 1100px) {

            .service-row {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .service-left h3 {
                font-size: 38px;
            }
        }

        @media (max-width: 768px) {

            .services-list-apple {
                padding: 90px 0;
            }

            .services-stack {
                gap: 20px;
            }

            .service-row {
                padding: 28px;
                border-radius: 28px;
                gap: 30px;
            }

            .svc-icon-box {
                width: 64px;
                height: 64px;
                border-radius: 20px;
            }

            .service-left h3 {
                font-size: 32px;
                letter-spacing: -1.5px;
            }

            .svc-desc {
                font-size: 16px;
                line-height: 1.8;
            }

            .svc-tags {
                gap: 10px;
            }

            .svc-tags span {
                padding: 10px 14px;
                font-size: 12px;
            }

            .tier-callout {
                margin-top: 34px;
            }

            .submit-btn {
                width: 100%;
            }
        }

        .engagement-apple {
            padding: 140px 0;
            background:
                radial-gradient(circle at top left, rgba(27, 124, 131, .05), transparent 28%),
                linear-gradient(to bottom, #f8fbfb, #ffffff);
        }

        /* HEADER */
        .engage-head {
            text-align: center;
            max-width: 860px;
            margin: 0 auto 70px;
        }

        .engage-head .section-h2 {
            margin-top: 16px;
            font-size: 64px;
            line-height: 1.02;
            letter-spacing: -2.5px;
            font-weight: 600;
            color: #101828;
        }

        .engage-head .section-h2 em {
            color: #1B7C83;
            font-style: italic;
            font-weight: 500;
        }

        .engage-sub {
            margin: 22px auto 0;
            max-width: 620px;
            font-size: 20px;
            line-height: 1.8;
            color: #667085;
        }

        /* GRID */
        .engage-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }

        /* CARD */
        .engage-card {
            position: relative;
            padding: 42px 34px;
            border-radius: 30px;
            text-align: center;
            background: rgba(255, 255, 255, .88);
            border: 1px solid rgba(16, 24, 40, .06);
            box-shadow:
                0 12px 30px rgba(15, 23, 42, .04),
                0 1px 0 rgba(255, 255, 255, .9) inset;
            transition: .45s ease;
        }

        .engage-card:hover {
            transform: translateY(-10px);
            box-shadow:
                0 28px 60px rgba(15, 23, 42, .08),
                0 1px 0 rgba(255, 255, 255, .95) inset;
        }

        .engage-card.featured {
            border: 1px solid rgba(27, 124, 131, .20);
            box-shadow:
                0 22px 50px rgba(27, 124, 131, .10),
                0 1px 0 rgba(255, 255, 255, .95) inset;
        }

        .popular-pill {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            padding: 8px 16px;
            border-radius: 999px;
            background: #1B7C83;
            color: #fff;
            font-size: 11px;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            font-weight: 700;
        }

        /* ICON */
        .engage-icon {
            width: 74px;
            height: 74px;
            margin: 0 auto 28px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #eef7f7;
            color: #1B7C83;
        }

        .engage-card h3 {
            font-size: 34px;
            line-height: 1.05;
            letter-spacing: -1.2px;
            color: #101828;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .engage-card p {
            font-size: 17px;
            line-height: 1.85;
            color: #667085;
            min-height: 130px;
        }

        .engage-note {
            margin-top: 22px;
            display: inline-block;
            padding: 10px 16px;
            border-radius: 999px;
            background: #f8fafb;
            border: 1px solid rgba(16, 24, 40, .05);
            font-size: 13px;
            font-weight: 600;
            color: #344054;
        }

        /* RESPONSIVE */
        @media(max-width:1100px) {

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

            .engage-head .section-h2 {
                font-size: 52px;
            }

            .engage-card p {
                min-height: auto;
            }

        }

        @media(max-width:768px) {

            .engagement-apple {
                padding: 90px 0;
            }

            .engage-head {
                margin-bottom: 50px;
            }

            .engage-head .section-h2 {
                font-size: 40px;
            }

            .engage-sub {
                font-size: 16px;
            }

            .engage-card {
                padding: 32px 24px;
                border-radius: 24px;
            }

            .engage-icon {
                width: 62px;
                height: 62px;
                border-radius: 18px;
                margin-bottom: 22px;
            }

            .engage-card h3 {
                font-size: 28px;
            }

            .engage-card p {
                font-size: 16px;
            }

        }


        .projects-hero-dark {
            position: relative;
            overflow: hidden;
            min-height: 72vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 180px 0 120px;
            background:
                radial-gradient(circle at top right, rgba(27, 124, 131, .18), transparent 24%),
                radial-gradient(circle at bottom left, rgba(27, 124, 131, .08), transparent 30%),
                linear-gradient(180deg, #0f1720 0%, #0b1118 100%);
            color: #fff;
        }

        /* Grid */
        .projects-grid-bg {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
            background-size: 42px 42px;
            mask-image: radial-gradient(circle at center, black 42%, transparent 85%);
            opacity: .7;
            pointer-events: none;
        }

        /* Content */
        .projects-hero-inner {
            position: relative;
            z-index: 2;
            max-width: 980px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-label-dark {
            color: #9fe3e7;
        }

        .projects-hero-title {
            margin-top: 18px;
            font-size: clamp(3.8rem, 7vw, 6.6rem);
            line-height: .96;
            letter-spacing: -3px;
            font-weight: 600;
            color: #ffffff;
        }

        .projects-hero-title em {
            color: #7dd7dd;
            font-style: italic;
            font-weight: 500;
        }

        .projects-hero-sub {
            margin: 28px auto 0;
            max-width: 720px;
            font-size: 21px;
            line-height: 1.9;
            color: rgba(255, 255, 255, .68);
        }

        /* Stats */
        .hero-stats-row {
            margin-top: 46px;
            display: flex;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .hero-stat {
            min-width: 170px;
            padding: 18px 24px;
            border-radius: 22px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            backdrop-filter: blur(14px);
        }

        .hero-stat strong {
            display: block;
            font-size: 30px;
            line-height: 1;
            letter-spacing: -1px;
            color: #fff;
            font-weight: 600;
        }

        .hero-stat span {
            display: block;
            margin-top: 8px;
            font-size: 12px;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .5);
            font-weight: 700;
        }

        /* Responsive */
        @media(max-width:992px) {

            .projects-hero-dark {
                min-height: 64vh;
                padding: 160px 0 100px;
            }

            .projects-hero-sub {
                font-size: 18px;
                max-width: 620px;
            }

        }

        @media(max-width:768px) {

            .projects-hero-dark {
                min-height: auto;
                padding: 130px 0 80px;
            }

            .projects-hero-title {
                letter-spacing: -2px;
            }

            .projects-hero-sub {
                font-size: 16px;
                line-height: 1.75;
                margin-top: 22px;
            }

            .hero-stats-row {
                margin-top: 34px;
                gap: 12px;
            }

            .hero-stat {
                min-width: 140px;
                padding: 16px 18px;
                border-radius: 18px;
            }

            .hero-stat strong {
                font-size: 24px;
            }

            .hero-stat span {
                font-size: 11px;
            }

        }

        .casework-apple {
            padding: 140px 0;
            background:
                radial-gradient(circle at top right, rgba(27, 124, 131, .04), transparent 26%),
                linear-gradient(to bottom, #ffffff, #f8fbfb);
        }

        .casework-stack {
            display: flex;
            flex-direction: column;
            gap: 34px;
        }

        /* CARD */
        .case-card {
            display: grid;
            grid-template-columns: 1.05fr 1fr;
            min-height: 560px;
            overflow: hidden;
            border-radius: 36px;
            background: rgba(255, 255, 255, .88);
            border: 1px solid rgba(16, 24, 40, .06);
            box-shadow:
                0 18px 40px rgba(15, 23, 42, .05),
                0 1px 0 rgba(255, 255, 255, .9) inset;
            transition: .45s ease;
        }

        .case-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 28px 70px rgba(15, 23, 42, .08),
                0 1px 0 rgba(255, 255, 255, .95) inset;
        }

        .case-card.reverse {
            grid-template-columns: 1fr 1.05fr;
        }

        .case-card.reverse .case-visual {
            order: 2;
        }

        .case-card.reverse .case-content {
            order: 1;
        }

        /* VISUAL */
        .case-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 50px;
            position: relative;
        }

        .case-visual img {
            max-width: 260px;
            max-height: 260px;
            width: 100%;
            object-fit: contain;
            filter: drop-shadow(0 18px 35px rgba(0, 0, 0, .08));
        }

        .soft-bg {
            background:
                radial-gradient(circle at center, rgba(255, 255, 255, .9), transparent 60%),
                #f5f7f8;
        }

        .dark-bg {
            background:
                radial-gradient(circle at center, rgba(255, 255, 255, .06), transparent 55%),
                linear-gradient(135deg, #0e1318, #151c24);
        }

        .teal-bg {
            background:
                radial-gradient(circle at center, rgba(255, 255, 255, .28), transparent 55%),
                linear-gradient(135deg, #dff6f6, #eefafa);
        }

        /* CONTENT */
        .case-content {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .case-badge {
            display: inline-flex;
            width: max-content;
            padding: 9px 14px;
            border-radius: 999px;
            background: #f8fafb;
            border: 1px solid rgba(16, 24, 40, .05);
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 700;
            color: #667085;
        }

        .case-title {
            margin-top: 22px;
            font-size: 52px;
            line-height: 1;
            letter-spacing: -2px;
            color: #101828;
            font-weight: 600;
        }

        .case-text {
            margin-top: 18px;
            font-size: 18px;
            line-height: 1.85;
            color: #667085;
        }

        .case-text strong {
            color: #101828;
            font-weight: 700;
        }

        .case-link {
            margin-top: 34px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #1B7C83;
            font-weight: 700;
            font-size: 15px;
        }

        .case-link:after {
            content: "→";
            transition: .25s ease;
        }

        .case-link:hover:after {
            transform: translateX(4px);
        }

        /* RESPONSIVE */
        @media(max-width:1100px) {

            .case-card,
            .case-card.reverse {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .case-card.reverse .case-visual,
            .case-card.reverse .case-content {
                order: unset;
            }

            .case-visual {
                min-height: 320px;
            }

            .case-content {
                padding: 42px;
            }

            .case-title {
                font-size: 42px;
            }

        }

        @media(max-width:768px) {

            .casework-apple {
                padding: 90px 0;
            }

            .casework-stack {
                gap: 24px;
            }

            .case-card {
                border-radius: 26px;
            }

            .case-visual {
                min-height: 240px;
                padding: 32px;
            }

            .case-visual img {
                max-width: 180px;
                max-height: 180px;
            }

            .case-content {
                padding: 28px;
            }

            .case-title {
                font-size: 34px;
                letter-spacing: -1px;
            }

            .case-text {
                font-size: 16px;
                line-height: 1.75;
                margin-top: 14px;
            }

            .case-link {
                margin-top: 24px;
            }

        }

        .cta-case-apple {
            padding: 140px 0;
            background:
                radial-gradient(circle at top right, rgba(27, 124, 131, .05), transparent 30%),
                linear-gradient(to bottom, #f8fbfb, #ffffff);
        }

        /* BOX */
        .cta-case-box {
            max-width: 980px;
            margin: 0 auto;
            text-align: center;
            padding: 72px 60px;
            border-radius: 38px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .88));
            border: 1px solid rgba(16, 24, 40, .06);
            box-shadow:
                0 20px 55px rgba(15, 23, 42, .06),
                0 1px 0 rgba(255, 255, 255, .95) inset;
            position: relative;
            overflow: hidden;
        }

        /* glow accent */
        .cta-case-box::before {
            content: "";
            position: absolute;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(27, 124, 131, .08);
            top: -140px;
            right: -100px;
            filter: blur(20px);
        }

        .cta-case-box::after {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(27, 124, 131, .05);
            bottom: -120px;
            left: -80px;
            filter: blur(18px);
        }

        /* TEXT */
        .cta-case-title {
            position: relative;
            z-index: 2;
            margin-top: 18px;
            font-size: clamp(3rem, 6vw, 5.2rem);
            line-height: .98;
            letter-spacing: -2.5px;
            font-weight: 600;
            color: #101828;
        }

        .cta-case-title em {
            color: #1B7C83;
            font-style: italic;
            font-weight: 500;
        }

        .cta-case-sub {
            position: relative;
            z-index: 2;
            margin: 28px auto 0;
            max-width: 700px;
            font-size: 20px;
            line-height: 1.9;
            color: #667085;
        }

        /* BUTTONS */
        .cta-case-actions {
            position: relative;
            z-index: 2;
            margin-top: 42px;
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cta-btn-primary,
        .cta-btn-secondary {
            text-decoration: none;
            padding: 16px 26px;
            border-radius: 999px;
            font-size: 15px;
            font-weight: 700;
            transition: .35s ease;
        }

        .cta-btn-primary {
            background: #101828;
            color: #fff;
            box-shadow: 0 14px 30px rgba(16, 24, 40, .16);
        }

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            background: #1B7C83;
        }

        .cta-btn-secondary {
            background: #fff;
            color: #101828;
            border: 1px solid rgba(16, 24, 40, .08);
        }

        .cta-btn-secondary:hover {
            transform: translateY(-3px);
            border-color: #1B7C83;
            color: #1B7C83;
        }

        /* Responsive */
        @media(max-width:768px) {

            .cta-case-apple {
                padding: 90px 0;
            }

            .cta-case-box {
                padding: 46px 24px;
                border-radius: 26px;
            }

            .cta-case-title {
                letter-spacing: -1.4px;
            }

            .cta-case-sub {
                margin-top: 20px;
                font-size: 16px;
                line-height: 1.75;
            }

            .cta-case-actions {
                margin-top: 28px;
                gap: 12px;
                flex-direction: column;
            }

            .cta-btn-primary,
            .cta-btn-secondary {
                width: 100%;
                padding: 15px 20px;
            }

        }

        .about-hero-apple {
            position: relative;
            overflow: hidden;
            min-height: 72vh;
            display: flex;
            align-items: center;
            padding: 180px 0 120px;
            background:
                radial-gradient(circle at top right, rgba(27, 124, 131, .06), transparent 26%),
                radial-gradient(circle at bottom left, rgba(27, 124, 131, .04), transparent 30%),
                linear-gradient(to bottom, #ffffff, #f8fbfb);
        }

        /* background grid */
        .about-grid-bg {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px);
            background-size: 42px 42px;
            mask-image: radial-gradient(circle at 35% 40%, black 42%, transparent 82%);
            opacity: .7;
            pointer-events: none;
        }

        /* content */
        .about-hero-inner {
            position: relative;
            z-index: 2;
            max-width: 980px;
        }

        .about-hero-title {
            margin-top: 18px;
            font-size: clamp(3.8rem, 7vw, 6.5rem);
            line-height: .96;
            letter-spacing: -3px;
            font-weight: 600;
            color: #101828;
        }

        .about-hero-title em {
            color: #1B7C83;
            font-style: italic;
            font-weight: 500;
        }

        .about-hero-sub {
            margin-top: 30px;
            max-width: 700px;
            font-size: 21px;
            line-height: 1.9;
            color: #667085;
        }

        /* pills */
        .about-hero-meta {
            margin-top: 42px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .meta-pill {
            padding: 13px 20px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .82);
            border: 1px solid rgba(16, 24, 40, .06);
            box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
            font-size: 14px;
            font-weight: 600;
            color: #344054;
            letter-spacing: .2px;
        }

        /* responsive */
        @media(max-width:992px) {

            .about-hero-apple {
                min-height: 64vh;
                padding: 160px 0 100px;
            }

            .about-hero-sub {
                font-size: 18px;
                max-width: 620px;
            }

        }

        @media(max-width:768px) {

            .about-hero-apple {
                min-height: auto;
                padding: 130px 0 80px;
            }

            .about-hero-title {
                letter-spacing: -2px;
            }

            .about-hero-sub {
                margin-top: 22px;
                font-size: 16px;
                line-height: 1.75;
            }

            .about-hero-meta {
                margin-top: 30px;
                gap: 10px;
            }

            .meta-pill {
                padding: 11px 16px;
                font-size: 13px;
            }

        }


        .about-story-apple {
            padding: 140px 0;
            background:
                radial-gradient(circle at top right, rgba(27, 124, 131, .05), transparent 28%),
                linear-gradient(to bottom, #ffffff, #f8fbfb);
        }

        .about-story-grid {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 72px;
            align-items: start;
        }

        /* LEFT */
        .about-story-title {
            margin-top: 16px;
            font-size: 64px;
            line-height: 1.02;
            letter-spacing: -2.4px;
            color: #101828;
            font-weight: 600;
        }

        .about-story-title em {
            color: #1B7C83;
            font-style: italic;
            font-weight: 500;
        }

        .about-quote {
            margin-top: 30px;
            padding: 28px 30px;
            border-radius: 26px;
            background: rgba(255, 255, 255, .9);
            border: 1px solid rgba(16, 24, 40, .06);
            box-shadow: 0 12px 28px rgba(15, 23, 42, .04);
        }

        .about-quote p {
            font-size: 24px;
            line-height: 1.55;
            letter-spacing: -.4px;
            color: #101828;
            font-weight: 500;
        }

        .about-story-text {
            margin-top: 28px;
            font-size: 18px;
            line-height: 1.95;
            color: #667085;
            max-width: 720px;
        }

        /* RIGHT PANEL */
        .about-story-panel {
            position: relative;
            padding: 36px;
            border-radius: 34px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .88));
            border: 1px solid rgba(16, 24, 40, .06);
            box-shadow:
                0 20px 50px rgba(15, 23, 42, .06),
                0 1px 0 rgba(255, 255, 255, .95) inset;
            overflow: hidden;
        }

        .panel-glow {
            position: absolute;
            top: -80px;
            right: -80px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(27, 124, 131, .08);
            filter: blur(18px);
        }

        .story-metric {
            position: relative;
            z-index: 2;
            padding: 26px 0;
            border-bottom: 1px solid rgba(16, 24, 40, .06);
        }

        .story-metric:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .story-metric span {
            display: inline-block;
            font-size: 12px;
            letter-spacing: 2px;
            color: #98a2b3;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .story-metric h4 {
            font-size: 28px;
            line-height: 1.1;
            letter-spacing: -1px;
            color: #101828;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .story-metric p {
            font-size: 16px;
            line-height: 1.8;
            color: #667085;
        }

        /* Responsive */
        @media(max-width:1100px) {

            .about-story-grid {
                grid-template-columns: 1fr;
                gap: 44px;
            }

            .about-story-title {
                font-size: 52px;
            }

        }

        @media(max-width:768px) {

            .about-story-apple {
                padding: 90px 0;
            }

            .about-story-title {
                font-size: 40px;
                letter-spacing: -1.4px;
            }

            .about-quote {
                padding: 22px;
                border-radius: 22px;
            }

            .about-quote p {
                font-size: 20px;
                line-height: 1.5;
            }

            .about-story-text {
                font-size: 16px;
                line-height: 1.8;
                margin-top: 20px;
            }

            .about-story-panel {
                padding: 24px;
                border-radius: 24px;
            }

            .story-metric {
                padding: 20px 0;
            }

            .story-metric h4 {
                font-size: 24px;
            }

            .story-metric p {
                font-size: 15px;
            }

        }


        .values-apple {
            padding: 140px 0;
            background:
                radial-gradient(circle at top left, rgba(27, 124, 131, .05), transparent 28%),
                linear-gradient(to bottom, #f8fbfb, #ffffff);
        }

        /* HEAD */
        .values-head {
            max-width: 860px;
            margin: 0 auto 70px;
            text-align: center;
        }

        .values-title {
            margin-top: 16px;
            font-size: 64px;
            line-height: 1.02;
            letter-spacing: -2.4px;
            color: #101828;
            font-weight: 600;
        }

        .values-title em {
            color: #1B7C83;
            font-style: italic;
            font-weight: 500;
        }

        .values-sub {
            margin: 24px auto 0;
            max-width: 640px;
            font-size: 20px;
            line-height: 1.85;
            color: #667085;
        }

        /* GRID */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }

        /* CARD */
        .value-card {
            position: relative;
            padding: 38px 34px;
            border-radius: 30px;
            background: rgba(255, 255, 255, .9);
            border: 1px solid rgba(16, 24, 40, .06);
            box-shadow:
                0 14px 34px rgba(15, 23, 42, .04),
                0 1px 0 rgba(255, 255, 255, .95) inset;
            transition: .45s ease;
            overflow: hidden;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow:
                0 28px 65px rgba(15, 23, 42, .08),
                0 1px 0 rgba(255, 255, 255, .95) inset;
        }

        .value-card::before {
            content: "";
            position: absolute;
            top: -80px;
            right: -70px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(27, 124, 131, .06);
            filter: blur(16px);
        }

        /* TEXT */
        .value-no {
            position: relative;
            z-index: 2;
            display: inline-block;
            font-size: 12px;
            letter-spacing: 2px;
            color: #98a2b3;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .value-label {
            position: relative;
            z-index: 2;
            display: inline-flex;
            padding: 8px 14px;
            border-radius: 999px;
            background: #f8fafb;
            border: 1px solid rgba(16, 24, 40, .05);
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 700;
            color: #667085;
        }

        .value-card h3 {
            position: relative;
            z-index: 2;
            margin-top: 22px;
            font-size: 34px;
            line-height: 1.08;
            letter-spacing: -1.2px;
            color: #101828;
            font-weight: 600;
        }

        .value-card p {
            position: relative;
            z-index: 2;
            margin-top: 18px;
            font-size: 17px;
            line-height: 1.9;
            color: #667085;
        }

        /* Responsive */
        @media(max-width:1100px) {

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

            .values-title {
                font-size: 52px;
            }

        }

        @media(max-width:768px) {

            .values-apple {
                padding: 90px 0;
            }

            .values-head {
                margin-bottom: 46px;
            }

            .values-title {
                font-size: 40px;
                letter-spacing: -1.4px;
            }

            .values-sub {
                font-size: 16px;
                line-height: 1.75;
            }

            .value-card {
                padding: 28px 24px;
                border-radius: 24px;
            }

            .value-card h3 {
                font-size: 28px;
            }

            .value-card p {
                font-size: 15px;
                line-height: 1.8;
            }

        }

        .timeline-apple {
            padding: 140px 0;
            background:
                radial-gradient(circle at top right, rgba(27, 124, 131, .05), transparent 28%),
                linear-gradient(to bottom, #ffffff, #f8fbfb);
        }

        /* Header */
        .timeline-head {
            max-width: 820px;
            margin: 0 auto 80px;
            text-align: center;
        }

        .timeline-title {
            margin-top: 16px;
            font-size: 64px;
            line-height: 1.02;
            letter-spacing: -2.4px;
            font-weight: 600;
            color: #101828;
        }

        .timeline-title em {
            color: #1B7C83;
            font-style: italic;
            font-weight: 500;
        }

        .timeline-sub {
            margin: 24px auto 0;
            max-width: 620px;
            font-size: 20px;
            line-height: 1.85;
            color: #667085;
        }

        /* Timeline */
        .timeline-wrap {
            position: relative;
            max-width: 980px;
            margin: 0 auto;
            padding-left: 120px;
        }

        .timeline-wrap::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 58px;
            width: 2px;
            background:
                linear-gradient(to bottom,
                    rgba(27, 124, 131, .18),
                    rgba(27, 124, 131, .45),
                    rgba(27, 124, 131, .12));
        }

        /* Item */
        .timeline-item {
            position: relative;
            display: grid;
            grid-template-columns: 90px 34px 1fr;
            gap: 24px;
            align-items: start;
            margin-bottom: 34px;
        }

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

        .timeline-year {
            padding-top: 14px;
            font-size: 14px;
            font-weight: 700;
            color: #98a2b3;
            letter-spacing: 1px;
        }

        .timeline-dot {
            margin-top: 18px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #1B7C83;
            box-shadow:
                0 0 0 8px rgba(27, 124, 131, .08),
                0 10px 18px rgba(27, 124, 131, .18);
            position: relative;
            z-index: 2;
        }

        /* Card */
        .timeline-card {
            padding: 34px;
            border-radius: 30px;
            background: rgba(255, 255, 255, .9);
            border: 1px solid rgba(16, 24, 40, .06);
            box-shadow:
                0 16px 36px rgba(15, 23, 42, .05),
                0 1px 0 rgba(255, 255, 255, .95) inset;
            transition: .4s ease;
        }

        .timeline-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 28px 65px rgba(15, 23, 42, .08),
                0 1px 0 rgba(255, 255, 255, .95) inset;
        }

        .timeline-tag {
            display: inline-flex;
            padding: 8px 14px;
            border-radius: 999px;
            background: #f8fafb;
            border: 1px solid rgba(16, 24, 40, .05);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            color: #667085;
        }

        .timeline-card h3 {
            margin-top: 18px;
            font-size: 34px;
            line-height: 1.08;
            letter-spacing: -1.2px;
            font-weight: 600;
            color: #101828;
        }

        .timeline-card p {
            margin-top: 14px;
            font-size: 17px;
            line-height: 1.9;
            color: #667085;
            max-width: 620px;
        }

        /* Responsive */
        @media(max-width:992px) {

            .timeline-wrap {
                padding-left: 0;
            }

            .timeline-wrap::before {
                left: 14px;
            }

            .timeline-item {
                grid-template-columns: 28px 1fr;
                gap: 18px;
            }

            .timeline-year {
                display: none;
            }

            .timeline-dot {
                margin-top: 22px;
            }

            .timeline-card h3 {
                font-size: 30px;
            }

        }

        @media(max-width:768px) {

            .timeline-apple {
                padding: 90px 0;
            }

            .timeline-head {
                margin-bottom: 50px;
            }

            .timeline-title {
                font-size: 40px;
                letter-spacing: -1.4px;
            }

            .timeline-sub {
                font-size: 16px;
                line-height: 1.75;
            }

            .timeline-card {
                padding: 24px;
                border-radius: 24px;
            }

            .timeline-card h3 {
                font-size: 24px;
            }

            .timeline-card p {
                font-size: 15px;
                line-height: 1.8;
            }

            .timeline-dot {
                width: 15px;
                height: 15px;
            }

        }


        .team-hero-apple {
            position: relative;
            overflow: hidden;
            min-height: 62vh;
            display: flex;
            align-items: center;
            padding: 180px 0 100px;
            background:
                radial-gradient(circle at top right, rgba(27, 124, 131, .06), transparent 28%),
                radial-gradient(circle at bottom left, rgba(27, 124, 131, .04), transparent 30%),
                linear-gradient(to bottom, #ffffff, #f8fbfb);
        }

        /* background grid */
        .team-grid-bg {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(15, 23, 42, .03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(15, 23, 42, .03) 1px, transparent 1px);
            background-size: 42px 42px;
            mask-image: radial-gradient(circle at center, black 40%, transparent 82%);
            opacity: .8;
            pointer-events: none;
        }

        /* content */
        .team-hero-inner {
            position: relative;
            z-index: 2;
            max-width: 980px;
            margin: 0 auto;
            text-align: center;
        }

        .team-hero-title {
            margin-top: 18px;
            font-size: clamp(4rem, 7vw, 6.4rem);
            line-height: .96;
            letter-spacing: -3px;
            font-weight: 600;
            color: #101828;
        }

        .team-hero-title em {
            color: #1B7C83;
            font-style: italic;
            font-weight: 500;
        }

        .team-hero-sub {
            margin: 28px auto 0;
            max-width: 720px;
            font-size: 21px;
            line-height: 1.9;
            color: #667085;
        }

        /* pills */
        .team-hero-pills {
            margin-top: 42px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
        }

        .team-pill {
            padding: 13px 20px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .9);
            border: 1px solid rgba(16, 24, 40, .06);
            box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
            font-size: 14px;
            font-weight: 600;
            color: #344054;
            letter-spacing: .2px;
            transition: .3s ease;
        }

        .team-pill:hover {
            transform: translateY(-3px);
            border-color: rgba(27, 124, 131, .25);
            color: #1B7C83;
        }

        /* responsive */
        @media(max-width:992px) {

            .team-hero-apple {
                min-height: 56vh;
                padding: 160px 0 90px;
            }

            .team-hero-sub {
                font-size: 18px;
                max-width: 620px;
            }

        }

        @media(max-width:768px) {

            .team-hero-apple {
                min-height: auto;
                padding: 130px 0 75px;
            }

            .team-hero-title {
                letter-spacing: -2px;
            }

            .team-hero-sub {
                margin-top: 22px;
                font-size: 16px;
                line-height: 1.75;
            }

            .team-hero-pills {
                margin-top: 30px;
                gap: 10px;
            }

            .team-pill {
                padding: 11px 16px;
                font-size: 13px;
            }

        }


        .team-dev-apple {
            padding: 140px 0;
            background:
                radial-gradient(circle at top right, rgba(27, 124, 131, .05), transparent 28%),
                linear-gradient(to bottom, #ffffff, #f8fbfb);
        }

        /* header */
        .team-dev-head {
            max-width: 760px;
            margin: 0 auto 70px;
            text-align: center;
        }

        .team-dev-title {
            margin-top: 16px;
            font-size: 64px;
            line-height: 1;
            letter-spacing: -2.4px;
            font-weight: 600;
            color: #101828;
        }

        .team-dev-sub {
            margin: 24px auto 0;
            max-width: 620px;
            font-size: 20px;
            line-height: 1.85;
            color: #667085;
        }

        /* grid */
        .team-dev-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }

        /* card */
        .dev-card {
            border-radius: 32px;
            overflow: hidden;
            background: rgba(255, 255, 255, .92);
            border: 1px solid rgba(16, 24, 40, .06);
            box-shadow:
                0 18px 40px rgba(15, 23, 42, .05),
                0 1px 0 rgba(255, 255, 255, .95) inset;
            transition: .45s ease;
        }

        .dev-card:hover {
            transform: translateY(-10px);
            box-shadow:
                0 28px 70px rgba(15, 23, 42, .08),
                0 1px 0 rgba(255, 255, 255, .95) inset;
        }

        /* image */
        .dev-image-wrap {
            position: relative;
            height: 380px;
            overflow: hidden;
            background: #eef4f4;
        }

        .dev-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .7s ease;
        }

        .dev-card:hover .dev-image-wrap img {
            transform: scale(1.05);
        }

        /* overlay */
        .dev-overlay {
            position: absolute;
            inset: auto 0 0 0;
            padding: 26px;
            background: linear-gradient(to top, rgba(16, 24, 40, .88), transparent);
        }

        .dev-overlay p {
            color: rgba(255, 255, 255, .92);
            font-size: 15px;
            line-height: 1.75;
        }

        /* body */
        .dev-body {
            padding: 28px;
        }

        .dev-body h3 {
            font-size: 30px;
            line-height: 1.08;
            letter-spacing: -1px;
            font-weight: 600;
            color: #101828;
        }

        .dev-role {
            display: block;
            margin-top: 10px;
            font-size: 15px;
            font-weight: 600;
            color: #1B7C83;
        }

        .dev-tags {
            margin-top: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .dev-tags span {
            padding: 9px 14px;
            border-radius: 999px;
            background: #f8fafb;
            border: 1px solid rgba(16, 24, 40, .05);
            font-size: 12px;
            font-weight: 700;
            color: #667085;
            letter-spacing: .3px;
        }

        /* responsive */
        @media(max-width:1100px) {

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

            .team-dev-title {
                font-size: 52px;
            }

            .dev-image-wrap {
                height: 420px;
            }

        }

        @media(max-width:768px) {

            .team-dev-apple {
                padding: 90px 0;
            }

            .team-dev-head {
                margin-bottom: 46px;
            }

            .team-dev-title {
                font-size: 40px;
                letter-spacing: -1.4px;
            }

            .team-dev-sub {
                font-size: 16px;
                line-height: 1.75;
            }

            .dev-card {
                border-radius: 24px;
            }

            .dev-image-wrap {
                height: 320px;
            }

            .dev-overlay {
                padding: 20px;
            }

            .dev-overlay p {
                font-size: 14px;
            }

            .dev-body {
                padding: 22px;
            }

            .dev-body h3 {
                font-size: 24px;
            }

        }


        .creative-apple {
            padding: 140px 0;
            background:
                radial-gradient(circle at top left, rgba(27, 124, 131, .05), transparent 28%),
                linear-gradient(to bottom, #f8fbfb, #ffffff);
        }

        /* header */
        .creative-head {
            max-width: 820px;
            margin: 0 auto 70px;
            text-align: center;
        }

        .creative-title {
            margin-top: 16px;
            font-size: 64px;
            line-height: 1;
            letter-spacing: -2.4px;
            font-weight: 600;
            color: #101828;
        }

        .creative-title em {
            color: #1B7C83;
            font-style: italic;
            font-weight: 500;
        }

        .creative-sub {
            margin: 24px auto 0;
            max-width: 640px;
            font-size: 20px;
            line-height: 1.85;
            color: #667085;
        }

        /* list */
        .creative-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        /* card */
        .creative-card {
            display: grid;
            grid-template-columns: 360px 1fr;
            gap: 0;
            border-radius: 34px;
            overflow: hidden;
            background: rgba(255, 255, 255, .92);
            border: 1px solid rgba(16, 24, 40, .06);
            box-shadow:
                0 18px 40px rgba(15, 23, 42, .05),
                0 1px 0 rgba(255, 255, 255, .95) inset;
            transition: .45s ease;
        }

        .creative-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 28px 70px rgba(15, 23, 42, .08),
                0 1px 0 rgba(255, 255, 255, .95) inset;
        }

        /* image */
        .creative-image {
            position: relative;
            min-height: 360px;
            background: #eef4f4;
            overflow: hidden;
        }

        .creative-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .7s ease;
        }

        .creative-card:hover .creative-image img {
            transform: scale(1.05);
        }

        /* body */
        .creative-body {
            padding: 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .creative-role-tag {
            display: inline-flex;
            width: max-content;
            padding: 8px 14px;
            border-radius: 999px;
            background: #f8fafb;
            border: 1px solid rgba(16, 24, 40, .05);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            color: #667085;
        }

        .creative-body h3 {
            margin-top: 22px;
            font-size: 42px;
            line-height: 1.04;
            letter-spacing: -1.5px;
            font-weight: 600;
            color: #101828;
        }

        .creative-body p {
            margin-top: 18px;
            max-width: 620px;
            font-size: 18px;
            line-height: 1.9;
            color: #667085;
        }

        /* skills */
        .creative-skills {
            margin-top: 26px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .creative-skills span {
            padding: 10px 14px;
            border-radius: 999px;
            background: #ffffff;
            border: 1px solid rgba(16, 24, 40, .06);
            font-size: 12px;
            font-weight: 700;
            color: #344054;
        }

        /* responsive */
        @media(max-width:1100px) {

            .creative-card {
                grid-template-columns: 1fr;
            }

            .creative-image {
                min-height: 420px;
            }

            .creative-title {
                font-size: 52px;
            }

        }

        @media(max-width:768px) {

            .creative-apple {
                padding: 90px 0;
            }

            .creative-head {
                margin-bottom: 46px;
            }

            .creative-title {
                font-size: 40px;
                letter-spacing: -1.4px;
            }

            .creative-sub {
                font-size: 16px;
                line-height: 1.75;
            }

            .creative-card {
                border-radius: 24px;
            }

            .creative-image {
                min-height: 280px;
            }

            .creative-body {
                padding: 24px;
            }

            .creative-body h3 {
                font-size: 28px;
            }

            .creative-body p {
                font-size: 15px;
                line-height: 1.8;
            }

        }


        .culture-apple {
            padding: 140px 0;
            background:
                radial-gradient(circle at top right, rgba(27, 124, 131, .05), transparent 28%),
                linear-gradient(to bottom, #ffffff, #f8fbfb);
        }

        .culture-grid {
            display: grid;
            grid-template-columns: 1.35fr .85fr;
            gap: 34px;
            align-items: stretch;
        }

        /* left */
        .culture-content {
            padding: 54px;
            border-radius: 34px;
            background: rgba(255, 255, 255, .92);
            border: 1px solid rgba(16, 24, 40, .06);
            box-shadow:
                0 18px 42px rgba(15, 23, 42, .05),
                0 1px 0 rgba(255, 255, 255, .95) inset;
        }

        .culture-title {
            margin-top: 16px;
            font-size: 64px;
            line-height: 1;
            letter-spacing: -2.4px;
            font-weight: 600;
            color: #101828;
        }

        .culture-title em {
            color: #1B7C83;
            font-style: italic;
            font-weight: 500;
        }

        .culture-text {
            margin-top: 26px;
            font-size: 19px;
            line-height: 1.95;
            color: #667085;
            max-width: 760px;
        }

        .culture-text.small {
            margin-top: 18px;
            font-size: 17px;
        }

        .culture-pills {
            margin-top: 34px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .culture-pills span {
            padding: 11px 16px;
            border-radius: 999px;
            background: #f8fafb;
            border: 1px solid rgba(16, 24, 40, .05);
            font-size: 13px;
            font-weight: 700;
            color: #344054;
            letter-spacing: .2px;
        }

        /* right */
        .culture-join {
            position: relative;
            overflow: hidden;
            padding: 48px;
            border-radius: 34px;
            background:
                linear-gradient(135deg, #101828, #16212f 55%, #1B7C83);
            box-shadow:
                0 24px 60px rgba(16, 24, 40, .18);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .join-glow {
            position: absolute;
            top: -80px;
            right: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
            filter: blur(16px);
        }

        .join-label {
            position: relative;
            z-index: 2;
            display: inline-flex;
            width: max-content;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .1);
            color: rgba(255, 255, 255, .75);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.4px;
            text-transform: uppercase;
        }

        .culture-join h3 {
            position: relative;
            z-index: 2;
            margin-top: 20px;
            font-size: 44px;
            line-height: 1.02;
            letter-spacing: -1.6px;
            font-weight: 600;
            color: #fff;
        }

        .culture-join p {
            position: relative;
            z-index: 2;
            margin-top: 18px;
            font-size: 17px;
            line-height: 1.85;
            color: rgba(255, 255, 255, .68);
            max-width: 320px;
        }

        .join-btn {
            position: relative;
            z-index: 2;
            margin-top: 28px;
            display: inline-flex;
            width: max-content;
            text-decoration: none;
            padding: 15px 22px;
            border-radius: 999px;
            background: #fff;
            color: #101828;
            font-size: 14px;
            font-weight: 700;
            transition: .35s ease;
        }

        .join-btn:hover {
            transform: translateY(-3px);
            color: #1B7C83;
        }

        /* responsive */
        @media(max-width:1100px) {

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

            .culture-title {
                font-size: 52px;
            }

            .culture-join h3 {
                font-size: 38px;
            }

        }

        @media(max-width:768px) {

            .culture-apple {
                padding: 90px 0;
            }

            .culture-content,
            .culture-join {
                padding: 28px 24px;
                border-radius: 24px;
            }

            .culture-title {
                font-size: 40px;
                letter-spacing: -1.4px;
            }

            .culture-text {
                font-size: 16px;
                line-height: 1.8;
                margin-top: 20px;
            }

            .culture-text.small {
                font-size: 15px;
            }

            .culture-pills {
                margin-top: 24px;
                gap: 10px;
            }

            .culture-pills span {
                font-size: 12px;
                padding: 10px 14px;
            }

            .culture-join h3 {
                font-size: 30px;
            }

            .culture-join p {
                font-size: 15px;
                line-height: 1.75;
            }

            .join-btn {
                width: 100%;
                justify-content: center;
            }

        }


        .hero-process-apple {
            position: relative;
            overflow: hidden;
            min-height: 58vh;
            padding: 150px 0 90px;
            background:
                radial-gradient(circle at 20% 10%, rgba(27, 124, 131, .08), transparent 26%),
                radial-gradient(circle at 80% 20%, rgba(27, 124, 131, .06), transparent 24%),
                linear-gradient(to bottom, #ffffff, #f8fbfb 65%, #ffffff);
        }

        /* background lines */
        .hero-grid-lines {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(16, 24, 40, .03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(16, 24, 40, .03) 1px, transparent 1px);
            background-size: 42px 42px;
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 90%);
            pointer-events: none;
        }

        /* glow orbs */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            pointer-events: none;
        }

        .hero-orb-one {
            width: 260px;
            height: 260px;
            top: -70px;
            left: -60px;
            background: rgba(27, 124, 131, .10);
        }

        .hero-orb-two {
            width: 220px;
            height: 220px;
            right: -60px;
            bottom: 40px;
            background: rgba(27, 124, 131, .08);
        }

        /* content */
        .process-hero-inner {
            position: relative;
            z-index: 2;
            max-width: 980px;
            margin: 0 auto;
            text-align: center;
        }

        .process-hero-title {
            margin-top: 18px;
            font-size: clamp(3.4rem, 7vw, 6.6rem);
            line-height: .95;
            letter-spacing: -3px;
            font-weight: 600;
            color: #101828;
        }

        .process-hero-title em {
            color: #1B7C83;
            font-style: italic;
            font-weight: 500;
        }

        .process-hero-sub {
            margin: 28px auto 0;
            max-width: 760px;
            font-size: 22px;
            line-height: 1.85;
            color: #667085;
        }

        /* steps */
        .process-mini-steps {
            margin: 42px auto 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            max-width: 900px;
        }

        .process-mini-steps span {
            padding: 12px 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .86);
            border: 1px solid rgba(16, 24, 40, .06);
            box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .6px;
            color: #344054;
            transition: .35s ease;
        }

        .process-mini-steps span:hover {
            transform: translateY(-3px);
            color: #1B7C83;
        }

        /* responsive */
        @media(max-width:900px) {

            .hero-process-apple {
                min-height: auto;
                padding: 130px 0 70px;
            }

            .process-hero-title {
                letter-spacing: -2px;
            }

            .process-hero-sub {
                font-size: 18px;
                max-width: 620px;
            }

        }

        @media(max-width:768px) {

            .hero-process-apple {
                padding: 110px 0 60px;
            }

            .process-hero-title {
                font-size: 42px;
                line-height: 1.02;
                letter-spacing: -1.4px;
            }

            .process-hero-sub {
                margin-top: 20px;
                font-size: 16px;
                line-height: 1.75;
            }

            .process-mini-steps {
                margin-top: 28px;
                gap: 10px;
            }

            .process-mini-steps span {
                font-size: 11px;
                padding: 10px 14px;
            }

            .hero-grid-lines {
                background-size: 28px 28px;
            }

        }


        .process-apple {
            padding: 140px 0;
            background:
                radial-gradient(circle at top right, rgba(27, 124, 131, .05), transparent 26%),
                linear-gradient(to bottom, #ffffff, #f8fbfb);
        }

        .process-wrap {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 74px;
        }

        .process-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom,
                    transparent,
                    rgba(16, 24, 40, .08),
                    rgba(16, 24, 40, .08),
                    transparent);
            transform: translateX(-50%);
        }

        /* row */
        .process-row {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 90px 1fr;
            gap: 36px;
            align-items: center;
        }

        .process-row.reverse .process-copy {
            order: 3;
        }

        .process-row.reverse .process-dot {
            order: 2;
        }

        .process-row.reverse .process-visual {
            order: 1;
        }

        /* text */
        .process-copy h2 {
            margin-top: 10px;
            font-size: 46px;
            line-height: 1;
            letter-spacing: -1.8px;
            font-weight: 600;
            color: #101828;
        }

        .process-copy p {
            margin-top: 18px;
            font-size: 18px;
            line-height: 1.9;
            color: #667085;
            max-width: 520px;
        }

        .align-right {
            text-align: right;
            justify-self: end;
        }

        .align-right p {
            margin-left: auto;
        }

        .process-kicker {
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            color: #1B7C83;
        }

        .process-meta {
            margin-top: 24px;
            display: inline-block;
            padding: 14px 18px;
            border-radius: 18px;
            background: #fff;
            border: 1px solid rgba(16, 24, 40, .06);
            font-size: 14px;
            color: #667085;
            box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
        }

        .process-meta strong {
            display: block;
            margin-bottom: 4px;
            color: #101828;
        }

        /* dot */
        .process-dot {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #1B7C83;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            margin: auto;
            position: relative;
            z-index: 2;
            box-shadow: 0 0 0 10px #f8fbfb;
        }

        /* visual */
        .process-visual {
            height: 320px;
            border-radius: 34px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(16, 24, 40, .05);
            box-shadow: 0 22px 50px rgba(15, 23, 42, .06);
        }

        .glass-card {
            position: absolute;
            inset: 18px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, .45);
            background: rgba(255, 255, 255, .25);
            backdrop-filter: blur(10px);
        }

        .soft-one {
            background: linear-gradient(135deg, #eef7f7, #dcefed);
        }

        .soft-two {
            background: linear-gradient(135deg, #eff4ff, #dfe7ff);
        }

        .soft-three {
            background: linear-gradient(135deg, #f8f6ef, #eee7d3);
        }

        .soft-four {
            background: linear-gradient(135deg, #f7f1ff, #eadfff);
        }

        .soft-five {
            background: linear-gradient(135deg, #eefcf5, #d8f6e6);
        }

        .soft-six {
            background: linear-gradient(135deg, #fdf2f2, #ffe1e1);
        }

        /* mobile */
        @media(max-width:980px) {

            .process-line {
                left: 32px;
            }

            .process-row,
            .process-row.reverse {
                grid-template-columns: 64px 1fr;
                gap: 20px;
            }

            .process-row .process-dot,
            .process-row.reverse .process-dot {
                order: 1;
            }

            .process-row .process-copy,
            .process-row.reverse .process-copy {
                order: 2;
                text-align: left;
                justify-self: start;
            }

            .process-row .process-visual,
            .process-row.reverse .process-visual {
                grid-column: 2/3;
                order: 3;
                height: 240px;
            }

            .align-right p {
                margin-left: 0;
            }

            .process-copy h2 {
                font-size: 34px;
            }

            .process-copy p {
                font-size: 16px;
                line-height: 1.75;
            }

            .process-dot {
                width: 52px;
                height: 52px;
                box-shadow: 0 0 0 8px #f8fbfb;
            }

        }

        @media(max-width:768px) {

            .process-apple {
                padding: 90px 0;
            }

            .process-wrap {
                gap: 52px;
            }

            .process-copy h2 {
                font-size: 28px;
            }

            .process-meta {
                font-size: 13px;
                padding: 12px 14px;
            }

            .process-visual {
                border-radius: 24px;
            }
        }


        .hero-testimonial-apple {
            position: relative;
            overflow: hidden;
            min-height: 56vh;
            padding: 150px 0 90px;
            background:
                linear-gradient(180deg, #eef9f8 0%, #f7fcfc 52%, #ffffff 100%);
        }

        /* subtle texture */
        .hero-noise {
            position: absolute;
            inset: 0;
            opacity: .18;
            background-image:
                radial-gradient(circle at 20% 20%, rgba(27, 124, 131, .06) 0, transparent 20%),
                radial-gradient(circle at 80% 30%, rgba(27, 124, 131, .05) 0, transparent 18%),
                radial-gradient(circle at 50% 80%, rgba(16, 24, 40, .03) 0, transparent 16%);
            pointer-events: none;
        }

        /* glow */
        .hero-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(55px);
            pointer-events: none;
        }

        .hero-glow-left {
            width: 260px;
            height: 260px;
            left: -70px;
            top: 20px;
            background: rgba(27, 124, 131, .12);
        }

        .hero-glow-right {
            width: 220px;
            height: 220px;
            right: -50px;
            bottom: 30px;
            background: rgba(27, 124, 131, .08);
        }

        /* content */
        .testimonial-hero-inner {
            position: relative;
            z-index: 2;
            max-width: 980px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial-hero-title {
            margin-top: 18px;
            font-size: clamp(3.4rem, 7vw, 6.3rem);
            line-height: .95;
            letter-spacing: -3px;
            font-weight: 600;
            color: #101828;
        }

        .testimonial-hero-title em {
            color: #1B7C83;
            font-style: italic;
            font-weight: 500;
        }

        .testimonial-hero-sub {
            margin: 28px auto 0;
            max-width: 720px;
            font-size: 22px;
            line-height: 1.85;
            color: #667085;
        }

        /* badges */
        .testimonial-mini-badges {
            margin-top: 42px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .testimonial-mini-badges span {
            padding: 12px 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .82);
            border: 1px solid rgba(16, 24, 40, .05);
            box-shadow: 0 10px 22px rgba(15, 23, 42, .04);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .5px;
            color: #344054;
            transition: .35s ease;
        }

        .testimonial-mini-badges span:hover {
            transform: translateY(-3px);
            color: #1B7C83;
        }

        /* responsive */
        @media(max-width:900px) {

            .hero-testimonial-apple {
                min-height: auto;
                padding: 130px 0 70px;
            }

            .testimonial-hero-title {
                letter-spacing: -2px;
            }

            .testimonial-hero-sub {
                font-size: 18px;
                max-width: 620px;
            }

        }

        @media(max-width:768px) {

            .hero-testimonial-apple {
                padding: 110px 0 60px;
            }

            .testimonial-hero-title {
                font-size: 42px;
                line-height: 1.02;
                letter-spacing: -1.4px;
            }

            .testimonial-hero-sub {
                margin-top: 20px;
                font-size: 16px;
                line-height: 1.75;
            }

            .testimonial-mini-badges {
                margin-top: 28px;
                gap: 10px;
            }

            .testimonial-mini-badges span {
                font-size: 11px;
                padding: 10px 14px;
            }

        }


        /* ======================================
   APPLE TESTIMONIAL SECTION
====================================== */

        .apple-testimonial {
            background: #ffffff;
            padding: 8rem 0;
        }

        /* TOP GRID */

        .apple-testimonial-top {
            display: grid;
            grid-template-columns: 1.08fr 1fr;
            gap: 2rem;
            align-items: stretch;
            margin-bottom: 2rem;
        }

        /* SHARED CARD */

        .apple-video-card,
        .apple-main-quote,
        .apple-result-card {
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(15, 23, 42, 0.06);
            border-radius: 34px;
            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.04),
                0 2px 8px rgba(0, 0, 0, 0.03);
            backdrop-filter: blur(18px);
        }

        /* ===========================
   VIDEO CARD
=========================== */

        .apple-video-card {
            padding: 1.25rem;
        }

        .apple-video-shell {
            border-radius: 26px;
            overflow: hidden;
            background: #000;
            aspect-ratio: 16 / 10;
        }

        .apple-video-shell iframe {
            width: 100%;
            height: 100%;
            display: block;
        }

        /* ===========================
   MAIN QUOTE
=========================== */

        .apple-main-quote {
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .apple-mini-label {
            display: inline-block;
            margin-bottom: 1.6rem;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--teal);
        }

        .apple-hero-quote {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(2rem, 1vw, 3.3rem);
            line-height: 1.18;
            letter-spacing: -0.04em;
            font-weight: 800;
            color: var(--ink);
            max-width: 560px;
        }

        /* ===========================
   PERSON META
=========================== */

        .apple-person {
            display: flex;
            align-items: center;
            gap: 0.95rem;
            margin-top: 2rem;
        }

        .apple-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--teal), #47aab1);
            color: #fff;
            font-size: 0.9rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

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

        .apple-role {
            font-size: 0.92rem;
            color: var(--body);
            margin-top: 0.18rem;
        }

        /* ===========================
   BOTTOM RESULT GRID
=========================== */

        .apple-results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .apple-result-card {
            padding: 2.4rem;
            transition: all .35s ease;
        }

        .apple-result-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.08),
                0 6px 14px rgba(0, 0, 0, 0.04);
        }

        .apple-stat {
            font-family: 'Manrope', sans-serif;
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -0.05em;
            color: var(--ink);
            margin-bottom: 1rem;
        }

        .apple-result-card h3 {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 0.9rem;
            font-family: 'Manrope', sans-serif;
        }

        .apple-result-card p {
            font-size: 0.97rem;
            line-height: 1.75;
            color: var(--body);
            margin-bottom: 1.4rem;
        }

        .apple-result-card span {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--teal);
        }

        /* ===========================
   RESPONSIVE
=========================== */

        @media (max-width: 1100px) {

            .apple-testimonial-top {
                grid-template-columns: 1fr;
            }

            .apple-results-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {

            .apple-testimonial {
                padding: 6rem 0;
            }

            .apple-main-quote,
            .apple-result-card {
                padding: 2rem;
            }

            .apple-video-card {
                padding: 1rem;
            }

            .apple-hero-quote {
                font-size: 2rem;
            }

            .apple-avatar {
                width: 42px;
                height: 42px;
                font-size: 0.82rem;
            }

            .apple-stat {
                font-size: 2.6rem;
            }
        }



        /* ===================================
   APPLE STYLE METRICS SECTION
=================================== */

        .apple-metrics-section {
            padding: 120px 0;
            background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        /* subtle glow */
        .apple-metrics-section::before {
            content: "";
            position: absolute;
            width: 520px;
            height: 520px;
            background: radial-gradient(circle, rgba(27, 124, 131, 0.07) 0%, transparent 72%);
            top: -220px;
            right: -160px;
            pointer-events: none;
        }

        /* grid */
        .apple-metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        /* cards */
        .metric-card {
            background: rgba(255, 255, 255, 0.78);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border: 1px solid rgba(255, 255, 255, 0.95);
            border-radius: 28px;
            padding: 42px 30px;
            text-align: center;
            box-shadow:
                0 8px 24px rgba(0, 0, 0, 0.04),
                0 20px 60px rgba(0, 0, 0, 0.05);
            transition: all .45s cubic-bezier(.22, 1, .36, 1);
            position: relative;
        }

        /* hover */
        .metric-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 18px 40px rgba(0, 0, 0, 0.06),
                0 30px 70px rgba(0, 0, 0, 0.08);
        }

        /* number */
        .metric-number {
            font-size: clamp(2.8rem, 4vw, 4.6rem);
            line-height: 1;
            font-weight: 700;
            letter-spacing: -0.05em;
            color: #111111;
            margin-bottom: 14px;
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
        }

        /* label */
        .metric-label {
            font-size: 1rem;
            color: #6e6e73;
            line-height: 1.6;
            font-weight: 500;
            max-width: 180px;
            margin: 0 auto;
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
        }

        /* bottom accent line */
        .metric-line {
            width: 48px;
            height: 3px;
            border-radius: 50px;
            background: linear-gradient(90deg, #1B7C83, #62B8BE);
            margin: 22px auto 0;
            opacity: .95;
        }

        /* slight highlight */
        .metric-card::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 28px;
            padding: 1px;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.95),
                    rgba(255, 255, 255, 0));
            -webkit-mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

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

        @media (max-width:768px) {
            .apple-metrics-section {
                padding: 90px 0;
            }

            .apple-metrics-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .metric-card {
                padding: 34px 24px;
                border-radius: 24px;
            }

            .metric-number {
                font-size: 3rem;
            }
        }


        /* ===================================
   APPLE STYLE PRICING HERO
=================================== */

        .apple-pricing-hero {
            position: relative;
            min-height: 42vh;
            padding: 180px 0 90px;
            background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 72%);
            overflow: hidden;
        }

        /* ambient background glow */
        .pricing-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: .55;
            pointer-events: none;
        }

        .orb-left {
            width: 340px;
            height: 340px;
            background: rgba(27, 124, 131, 0.10);
            top: -120px;
            left: -90px;
        }

        .orb-right {
            width: 420px;
            height: 420px;
            background: rgba(27, 124, 131, 0.08);
            right: -120px;
            bottom: -160px;
        }

        /* center content */
        .pricing-hero-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        /* label */
        .pricing-label {
            display: inline-block;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: #1B7C83;
            margin-bottom: 28px;
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
        }

        /* title */
        .pricing-title {
            margin: 0;
            font-size: clamp(3.4rem, 7vw, 6.4rem);
            line-height: .95;
            font-weight: 700;
            letter-spacing: -0.06em;
            color: #111111;
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
        }

        /* italic highlight */
        .pricing-title em {
            font-style: normal;
            color: #1B7C83;
            position: relative;
        }

        /* subtitle */
        .pricing-subtitle {
            max-width: 720px;
            margin: 28px auto 0;
            font-size: 1.28rem;
            line-height: 1.7;
            font-weight: 400;
            color: #6e6e73;
            letter-spacing: -0.01em;
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
        }

        /* subtle top shine */
        .apple-pricing-hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.9),
                    transparent);
        }

        /* responsive */
        @media (max-width:992px) {
            .apple-pricing-hero {
                padding: 160px 0 80px;
            }

            .pricing-subtitle {
                font-size: 1.12rem;
                max-width: 620px;
            }
        }

        @media (max-width:768px) {
            .apple-pricing-hero {
                min-height: auto;
                padding: 130px 0 70px;
            }

            .pricing-title {
                font-size: 3rem;
                line-height: 1.02;
            }

            .pricing-subtitle {
                font-size: 1rem;
                line-height: 1.65;
                margin-top: 22px;
                padding: 0 10px;
            }

            .pricing-label {
                margin-bottom: 22px;
                padding: 9px 16px;
                font-size: .72rem;
            }

            .orb-left,
            .orb-right {
                filter: blur(60px);
                opacity: .45;
            }
        }



        /* ==================================
   APPLE STYLE PRICING SECTION
================================== */

        .apple-pricing-section {
            padding: 120px 0;
            background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
        }

        .apple-pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            align-items: stretch;
        }

        /* Cards */
        .price-card {
            position: relative;
            padding: 42px 34px;
            border-radius: 32px;
            background: rgba(255, 255, 255, .82);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border: 1px solid rgba(255, 255, 255, .9);
            box-shadow:
                0 8px 30px rgba(0, 0, 0, .04),
                0 20px 60px rgba(0, 0, 0, .06);
            transition: all .45s cubic-bezier(.22, 1, .36, 1);
        }

        .price-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 16px 40px rgba(0, 0, 0, .07),
                0 30px 70px rgba(0, 0, 0, .08);
        }

        /* Featured */
        .featured-card {
            background: #111111;
            border: 1px solid rgba(27, 124, 131, .55);
            transform: scale(1.03);
        }

        .featured-card:hover {
            transform: scale(1.03) translateY(-8px);
        }

        .featured-pill {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: #1B7C83;
            color: #fff;
            padding: 8px 16px;
            border-radius: 999px;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        /* Typography */
        .plan-badge {
            display: inline-block;
            font-size: .76rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            font-weight: 700;
            color: #8e8e93;
            margin-bottom: 18px;
        }

        .teal-badge {
            color: #62B8BE;
        }

        .plan-title {
            font-size: 2.1rem;
            font-weight: 700;
            letter-spacing: -0.04em;
            color: #111;
            margin: 0;
        }

        .plan-desc {
            margin: 18px 0 26px;
            font-size: 1rem;
            line-height: 1.7;
            color: #6e6e73;
        }

        .plan-meta {
            font-size: .75rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            font-weight: 700;
            color: #1B7C83;
            margin-bottom: 8px;
        }

        .plan-price {
            font-size: 3.2rem;
            font-weight: 700;
            letter-spacing: -0.05em;
            color: #111;
            margin-bottom: 28px;
        }

        .plan-fit-title {
            font-size: .92rem;
            font-weight: 700;
            color: #111;
            margin-bottom: 8px;
        }

        .plan-fit-text {
            font-size: .95rem;
            line-height: 1.7;
            color: #6e6e73;
            margin-bottom: 22px;
        }

        .plan-list {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .plan-list li {
            position: relative;
            padding-left: 26px;
            font-size: .97rem;
            color: #444;
        }

        .plan-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: #1B7C83;
            font-weight: 700;
        }

        .white-list li {
            color: rgba(255, 255, 255, .88);
        }

        .plan-note {
            font-size: .88rem;
            color: #8e8e93;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        /* Buttons */
        .plan-btn {
            display: block;
            text-align: center;
            padding: 15px 20px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            font-size: .95rem;
            transition: .3s ease;
        }

        .light-btn {
            background: #f2f2f2;
            color: #111;
        }

        .light-btn:hover {
            background: #e9e9ec;
        }

        .dark-btn {
            background: #1B7C83;
            color: #fff;
        }

        .dark-btn:hover {
            background: #15686d;
        }

        /* Helpers */
        .white-text {
            color: #fff;
        }

        .dark-muted {
            color: rgba(255, 255, 255, .68);
        }

        .invisible {
            opacity: 0;
            user-select: none;
        }

        /* Responsive */
        @media(max-width:1100px) {
            .apple-pricing-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .featured-card {
                transform: none;
            }

            .featured-card:hover {
                transform: translateY(-8px);
            }
        }

        @media(max-width:768px) {
            .apple-pricing-section {
                padding: 90px 0;
            }

            .price-card {
                padding: 34px 24px;
                border-radius: 26px;
            }

            .plan-price {
                font-size: 2.6rem;
            }

            .plan-title {
                font-size: 1.8rem;
            }
        }


        /* ===================================
   APPLE STYLE FAQ SECTION
=================================== */

        .apple-faq-section {
            padding: 120px 0;
            background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        /* ambient glow */
        .apple-faq-section::before {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(27, 124, 131, .07) 0%, transparent 70%);
            top: -220px;
            right: -180px;
            pointer-events: none;
        }

        /* wrapper */
        .faq-wrapper {
            max-width: 860px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* heading */
        .faq-heading-wrap {
            text-align: center;
            margin-bottom: 48px;
        }

        .faq-label {
            display: inline-block;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .9);
            border: 1px solid rgba(0, 0, 0, .05);
            box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
            font-size: .74rem;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: #1B7C83;
            margin-bottom: 22px;
        }

        .faq-title {
            margin: 0;
            font-size: clamp(2.7rem, 6vw, 4.8rem);
            line-height: 1;
            letter-spacing: -0.05em;
            font-weight: 700;
            color: #111;
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
        }

        .faq-title em {
            font-style: normal;
            color: #1B7C83;
        }

        .faq-subtitle {
            margin: 20px auto 0;
            max-width: 620px;
            color: #6e6e73;
            font-size: 1.08rem;
            line-height: 1.7;
        }

        /* faq list */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        /* item */
        .faq-item {
            background: rgba(255, 255, 255, .84);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, .92);
            border-radius: 26px;
            padding: 0;
            box-shadow:
                0 8px 24px rgba(0, 0, 0, .04),
                0 20px 50px rgba(0, 0, 0, .05);
            overflow: hidden;
            transition: .35s ease;
        }

        .faq-item:hover {
            transform: translateY(-3px);
            box-shadow:
                0 14px 32px rgba(0, 0, 0, .05),
                0 24px 60px rgba(0, 0, 0, .06);
        }

        /* remove marker */
        .faq-item summary {
            list-style: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        /* summary row */
        .faq-item summary {
            cursor: pointer;
            padding: 26px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            font-size: 1.16rem;
            font-weight: 600;
            color: #111;
            user-select: none;
        }

        /* icon */
        .faq-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #f2f2f2;
            position: relative;
            flex-shrink: 0;
            transition: .35s ease;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            background: #1B7C83;
            transform: translate(-50%, -50%);
            border-radius: 10px;
        }

        .faq-icon::before {
            width: 12px;
            height: 2px;
        }

        .faq-icon::after {
            width: 2px;
            height: 12px;
            transition: .35s ease;
        }

        /* when open */
        .faq-item[open] .faq-icon {
            background: rgba(27, 124, 131, .12);
        }

        .faq-item[open] .faq-icon::after {
            opacity: 0;
            transform: translate(-50%, -50%) rotate(90deg);
        }

        /* content */
        .faq-content {
            padding: 0 30px 28px;
            color: #6e6e73;
            font-size: 1rem;
            line-height: 1.8;
            max-width: 92%;
        }

        /* responsive */
        @media (max-width:768px) {

            .apple-faq-section {
                padding: 90px 0;
            }

            .faq-heading-wrap {
                margin-bottom: 36px;
            }

            .faq-title {
                font-size: 2.4rem;
                line-height: 1.05;
            }

            .faq-subtitle {
                font-size: 1rem;
            }

            .faq-item {
                border-radius: 22px;
            }

            .faq-item summary {
                padding: 22px 20px;
                font-size: 1rem;
            }

            .faq-content {
                padding: 0 20px 22px;
                max-width: 100%;
                font-size: .95rem;
            }
        }





        /* ===============================
   APPLE-STYLE CONTACT SECTION
================================= */

        :root {
            --bg: #f5f5f7;
            --card: #ffffff;
            --text: #1d1d1f;
            --muted: #6e6e73;
            --line: #e5e5ea;
            --brand: #1B7C83;
            --brand-dark: #14666c;
            --shadow: 0 20px 60px rgba(0, 0, 0, .08);
        }

        .section {
            padding: 140px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
        }

        .container {
            max-width: 1320px;
            margin: auto;
            padding: 0 32px;
        }

        /* ===============================
   GRID
================================= */

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 64px;
            align-items: start;
        }

        /* ===============================
   LEFT SIDE
================================= */

        .section-label {
            display: inline-block;
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--brand);
            margin-bottom: 18px;
        }

        .hero-h1 {
            font-size: clamp(3rem, 6vw, 5.5rem);
            line-height: 1.02;
            font-weight: 700;
            letter-spacing: -.04em;
            color: var(--text);
            margin: 0;
        }

        .hero-h1 em {
            font-style: normal;
            color: var(--brand);
        }

        .fade-up p {
            font-size: 1.12rem;
            line-height: 1.9;
            color: var(--muted);
            max-width: 560px;
        }

        /* ===============================
   INFO CARDS
================================= */

        .info-card {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 22px 24px;
            background: rgba(255, 255, 255, .7);
            border: 1px solid rgba(255, 255, 255, .8);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-radius: 24px;
            box-shadow: var(--shadow);
            transition: .35s ease;
        }

        .info-card:hover {
            transform: translateY(-4px);
        }

        .info-icon {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            background: #eef7f7;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

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

        .info-value {
            text-decoration: none;
            color: var(--text);
            font-size: 1.06rem;
            font-weight: 600;
        }

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

        /* ===============================
   FORM CARD
================================= */

        .contact-form-wrap {
            background: rgba(255, 255, 255, .78);
            border: 1px solid rgba(255, 255, 255, .85);
            backdrop-filter: blur(28px);
            -webkit-backdrop-filter: blur(28px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, .08);
            border-radius: 34px;
            padding: 48px;
        }

        .form-section-label {
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--brand);
        }

        /* ===============================
   INPUTS
================================= */

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            width: 100%;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            border: none;
            outline: none;
            background: #f5f5f7;
            border: 1px solid transparent;
            border-radius: 18px;
            padding: 18px 20px;
            font-size: 1rem;
            color: var(--text);
            transition: .25s ease;
        }

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

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #9a9aa0;
        }

        /* ===============================
   BUDGET SELECTORS
================================= */

        .budget-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 12px;
        }

        .budget-label {
            position: relative;
            cursor: pointer;
        }

        .budget-label input {
            display: none;
        }

        .budget-label span {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            border-radius: 16px;
            background: #f5f5f7;
            border: 1px solid transparent;
            font-weight: 600;
            color: var(--text);
            transition: .25s ease;
        }

        .budget-label input:checked+span {
            background: #e8f4f4;
            border-color: rgba(27, 124, 131, .25);
            color: var(--brand);
        }

        /* ===============================
   BUTTON
================================= */

        .submit-btn {
            width: 100%;
            margin-top: 22px;
            border: none;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--brand), var(--brand-dark));
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            cursor: pointer;
            transition: .3s ease;
            box-shadow: 0 18px 30px rgba(27, 124, 131, .22);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 22px 34px rgba(27, 124, 131, .28);
        }

        .submit-btn svg {
            transition: .3s ease;
        }

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

        /* ===============================
   RESPONSIVE
================================= */

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

        @media (max-width:768px) {

            .section {
                padding: 100px 0;
            }

            .container {
                padding: 0 20px;
            }

            .hero-h1 {
                font-size: 2.6rem;
            }

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

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

            .contact-form-wrap {
                padding: 28px;
                border-radius: 28px;
            }

            .info-card {
                padding: 18px;
            }
        }


        /* ===============================
APPLE STYLE CONTACT STRIP
================================ */

        :root {
            --bg: #f5f5f7;
            --white: #ffffff;
            --text: #1d1d1f;
            --muted: #6e6e73;
            --line: #e5e5ea;
            --brand: #1B7C83;
            --brand-soft: #eef7f7;
            --shadow: 0 20px 60px rgba(0, 0, 0, .07);
        }

        /* section */

        .apple-contact-strip {
            padding: 110px 0;
            background:
                radial-gradient(circle at top left, rgba(27, 124, 131, .05), transparent 28%),
                radial-gradient(circle at bottom right, rgba(27, 124, 131, .04), transparent 25%),
                linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
        }

        /* container */

        .container {
            max-width: 1320px;
            margin: auto;
            padding: 0 32px;
        }

        /* grid */

        .contact-strip-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        /* cards */

        .contact-info-card {
            background: rgba(255, 255, 255, .72);
            border: 1px solid rgba(255, 255, 255, .85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-radius: 30px;
            padding: 34px 32px;
            box-shadow: var(--shadow);
            transition: all .35s ease;
        }

        .contact-info-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 70px rgba(0, 0, 0, .09);
        }

        /* label */

        .mini-label {
            display: inline-block;
            font-size: .76rem;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--brand);
            margin-bottom: 14px;
        }

        /* title */

        .contact-info-card h4 {
            font-family: 'Manrope', sans-serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 14px;
            letter-spacing: -0.02em;
        }

        .contact-info-card h4::after {
            content: "";
            display: block;
            width: 36px;
            height: 2px;
            background: var(--brand);
            border-radius: 999px;
            margin-top: 14px;
        }

        /* paragraph */

        .contact-info-card p {
            margin: 0;
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.9;
        }

        /* social pills */

        .social-pills {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .social-pills a {
            text-decoration: none;
            color: var(--brand);
            background: var(--brand-soft);
            padding: 12px 18px;
            border-radius: 999px;
            font-size: .95rem;
            font-weight: 700;
            transition: .25s ease;
        }

        .social-pills a:hover {
            background: var(--brand);
            color: #fff;
            transform: translateY(-2px);
        }

        /* responsive */

        @media (max-width:1024px) {

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

        }

        @media (max-width:768px) {

            .apple-contact-strip {
                padding: 90px 0;
            }

            .container {
                padding: 0 20px;
            }

            .contact-info-card {
                padding: 28px 24px;
                border-radius: 24px;
            }

            .contact-info-card h4 {
                font-size: 1.2rem;
            }

        }



        .apple-case-hero {
            min-height: 88vh;
            display: flex;
            align-items: center;
            padding: 140px 0 90px;
            background:
                radial-gradient(circle at top left, rgba(27, 124, 131, .06), transparent 28%),
                radial-gradient(circle at bottom right, rgba(27, 124, 131, .05), transparent 26%),
                linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
        }

        /* CONTAINER */

        .container {
            max-width: 1320px;
            margin: auto;
            padding: 0 32px;
        }

        /* GRID */

        .case-hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        /* LEFT SIDE */

        .case-label {
            display: inline-block;
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--brand);
            margin-bottom: 22px;
        }

        .case-title {
            font-size: clamp(4rem, 9vw, 7rem);
            line-height: .95;
            letter-spacing: -0.06em;
            font-weight: 700;
            color: var(--text);
            margin: 0;
        }

        .case-subtitle {
            font-size: 1.25rem;
            line-height: 1.8;
            color: var(--muted);
            max-width: 580px;
            margin: 28px 0 34px;
        }

        /* TAGS */

        .case-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .case-tags span {
            padding: 12px 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .7);
            border: 1px solid rgba(255, 255, 255, .85);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            color: var(--text);
            font-size: .95rem;
            font-weight: 700;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
        }

        /* RIGHT SIDE */

        .case-visual {
            display: flex;
            justify-content: center;
        }

        .logo-shell {
            width: 100%;
            max-width: 520px;
            aspect-ratio: 1/1;
            border-radius: 42px;
            background: rgba(255, 255, 255, .72);
            border: 1px solid rgba(255, 255, 255, .88);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: all .4s ease;
        }

        .logo-shell::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 30% 30%, rgba(27, 124, 131, .08), transparent 30%),
                radial-gradient(circle at 70% 70%, rgba(27, 124, 131, .06), transparent 28%);
        }

        .logo-shell:hover {
            transform: translateY(-8px);
            box-shadow: 0 35px 80px rgba(0, 0, 0, .10);
        }

        .logo-shell img {
            width: 220px;
            max-width: 60%;
            position: relative;
            z-index: 2;
        }

        /* RESPONSIVE */

        @media (max-width:1100px) {

            .case-hero-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .case-content {
                text-align: center;
            }

            .case-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .case-tags {
                justify-content: center;
            }

        }

        @media (max-width:768px) {

            .apple-case-hero {
                min-height: auto;
                padding: 120px 0 70px;
            }

            .container {
                padding: 0 20px;
            }

            .case-title {
                font-size: 3.4rem;
            }

            .case-subtitle {
                font-size: 1.05rem;
            }

            .logo-shell {
                border-radius: 28px;
                max-width: 100%;
            }

            .logo-shell img {
                width: 160px;
            }

        }


        .apple-case-details {
            padding: 120px 0;
            background:
                radial-gradient(circle at top left, rgba(27, 124, 131, .04), transparent 28%),
                linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
        }

        /* CONTAINER */

        .container {
            max-width: 1320px;
            margin: auto;
            padding: 0 32px;
        }

        /* GRID */

        .case-layout {
            display: grid;
            grid-template-columns: 1.45fr .85fr;
            gap: 64px;
            align-items: start;
        }

        /* MAIN */

        .story-block {
            margin-bottom: 70px;
        }

        .mini-label {
            display: inline-block;
            font-size: .76rem;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--brand);
            margin-bottom: 18px;
        }

        .story-block h2 {
            margin: 0;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            line-height: 1.05;
            letter-spacing: -.04em;
            color: var(--text);
            font-weight: 700;
        }

        .story-block h2 em {
            font-style: normal;
            color: var(--brand);
        }

        .story-block p {
            margin: 24px 0 0;
            font-size: 1.15rem;
            line-height: 1.95;
            color: var(--muted);
            max-width: 820px;
        }

        /* FEATURES */

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 26px 0 0;
            display: grid;
            gap: 14px;
        }

        .feature-list li {
            background: rgba(255, 255, 255, .78);
            border: 1px solid rgba(255, 255, 255, .9);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            padding: 18px 20px;
            border-radius: 18px;
            color: var(--text);
            font-weight: 600;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
        }

        /* IMAGE */

        .case-image {
            width: 100%;
            margin-top: 28px;
            border-radius: 28px;
            display: block;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, .8);
        }

        /* SIDEBAR */

        .case-sidebar {
            position: sticky;
            top: 100px;
        }

        .sidebar-card {
            background: rgba(255, 255, 255, .75);
            border: 1px solid rgba(255, 255, 255, .88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 34px;
            box-shadow: var(--shadow);
        }

        .sidebar-card h3 {
            margin: 0 0 26px;
            font-size: 1.6rem;
            letter-spacing: -.03em;
            color: var(--text);
        }

        /* META */

        .meta-row {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            padding: 16px 0;
            border-bottom: 1px solid var(--line);
        }

        .meta-row span {
            font-size: .82rem;
            text-transform: uppercase;
            letter-spacing: .12em;
            color: var(--muted);
            font-weight: 700;
        }

        .meta-row strong {
            font-size: .98rem;
            color: var(--text);
            text-align: right;
        }

        .meta-stack {
            margin-top: 28px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .meta-stack span {
            padding: 10px 14px;
            border-radius: 999px;
            background: var(--soft);
            color: var(--brand);
            font-size: .85rem;
            font-weight: 700;
        }

        /* RESPONSIVE */

        @media (max-width:1100px) {

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

            .case-sidebar {
                position: relative;
                top: auto;
            }

        }

        @media (max-width:768px) {

            .apple-case-details {
                padding: 90px 0;
            }

            .container {
                padding: 0 20px;
            }

            .story-block {
                margin-bottom: 55px;
            }

            .story-block h2 {
                font-size: 2.2rem;
            }

            .story-block p {
                font-size: 1.02rem;
            }

            .sidebar-card {
                padding: 26px;
                border-radius: 24px;
            }

            .case-image {
                border-radius: 22px;
            }

        }


        .apple-results {
            padding: 120px 0;
            background: var(--bg);
        }

        .container {
            width: min(1280px, 92%);
            margin: auto;
        }

        /* Card */

        .results-card {
            background:
                radial-gradient(circle at top right, rgba(125, 211, 252, .12), transparent 30%),
                radial-gradient(circle at bottom left, rgba(255, 255, 255, .04), transparent 35%),
                var(--card);
            border-radius: 42px;
            padding: 90px 70px;
            text-align: center;
            box-shadow: var(--shadow);
            overflow: hidden;
            position: relative;
        }

        .results-label {
            display: inline-block;
            font-size: .78rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .55);
            font-weight: 600;
            margin-bottom: 22px;
        }

        .results-title {
            margin: 0;
            font-size: clamp(2.8rem, 6vw, 5rem);
            line-height: 1.02;
            letter-spacing: -0.05em;
            font-weight: 700;
            color: var(--text);
        }

        .results-title span {
            color: var(--accent);
        }

        .results-subtitle {
            max-width: 720px;
            margin: 24px auto 0;
            font-size: 1.12rem;
            line-height: 1.8;
            color: var(--muted);
        }

        /* Grid */

        .results-grid {
            margin-top: 70px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }

        .result-item {
            background: rgba(255, 255, 255, .03);
            border: 1px solid var(--line);
            border-radius: 30px;
            padding: 42px 28px;
            backdrop-filter: blur(14px);
            transition: all .35s ease;
        }

        .result-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, .05);
            border-color: rgba(255, 255, 255, .12);
        }

        .result-number {
            font-size: clamp(3rem, 5vw, 4.5rem);
            line-height: 1;
            font-weight: 700;
            letter-spacing: -0.05em;
            color: var(--accent);
        }

        .result-line {
            width: 42px;
            height: 2px;
            margin: 22px auto;
            background: rgba(255, 255, 255, .16);
        }

        .result-text {
            font-size: .78rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: #121212;
            font-weight: 600;
        }

        .result-item p {
            margin: 18px 0 0;
            font-size: 1rem;
            line-height: 1.75;
            color: var(--muted);
        }

        /* Responsive */

        @media (max-width: 980px) {

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

            .results-card {
                padding: 70px 34px;
            }
        }

        @media (max-width: 640px) {

            .apple-results {
                padding: 80px 0;
            }

            .results-card {
                padding: 56px 24px;
                border-radius: 28px;
            }

            .result-item {
                padding: 32px 22px;
                border-radius: 24px;
            }
        }


        .hero-apple {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at top left, rgba(27, 124, 131, .10), transparent 35%),
                radial-gradient(circle at bottom right, rgba(27, 124, 131, .07), transparent 35%),
                #f8fafa;
        }

        /* SOFT GLOW */

        .ambient {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            opacity: .6;
        }

        .ambient-1 {
            width: 320px;
            height: 320px;
            background: #8dd9dd;
            top: -90px;
            left: -120px;
        }

        .ambient-2 {
            width: 340px;
            height: 340px;
            background: #b5ece7;
            right: -110px;
            bottom: -120px;
        }

        /* CONTENT */

        .hero-wrap {
            max-width: 980px;
            position: relative;
            z-index: 2;
        }

        .hero-label {
            font-size: 15px;
            font-weight: 600;
            color: #1B7C83;
            margin-bottom: 24px;
            letter-spacing: .2px;
        }

        .hero-apple h1 {
            font-size: clamp(3.4rem, 9vw, 7rem);
            line-height: 1;
            letter-spacing: -4px;
            font-weight: 700;
            color: #111111;
        }

        .hero-apple h1 span {
            color: #1B7C83;
        }

        .hero-text {
            max-width: 720px;
            margin: 28px auto 0;
            font-size: 1.22rem;
            line-height: 1.75;
            color: #6e6e73;
            font-weight: 400;
        }

        /* BUTTONS */

        .hero-buttons {
            margin-top: 42px;
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary,
        .btn-secondary {
            padding: 15px 30px;
            border-radius: 999px;
            text-decoration: none;
            font-size: 17px;
            font-weight: 500;
            transition: .28s ease;
        }

        /* Primary */

        .btn-primary {
            background: #1B7C83;
            color: #fff;
            box-shadow: 0 10px 24px rgba(27, 124, 131, .18);
        }

        .btn-primary:hover {
            background: #15686e;
            transform: translateY(-2px);
        }

        /* Secondary */

        .btn-secondary {
            background: #ffffff;
            color: #1B7C83;
            border: 1px solid rgba(27, 124, 131, .18);
        }

        .btn-secondary:hover {
            background: #eef8f7;
        }

        /* MOBILE */

        @media(max-width:768px) {

            .hero-apple {
                padding: 30px 18px;
            }

            .hero-apple h1 {
                letter-spacing: -2px;
            }

            .hero-text {
                font-size: 1.05rem;
            }

            .hero-buttons {
                flex-direction: column;
                max-width: 320px;
                margin-left: auto;
                margin-right: auto;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
            }

        }

        .apple-nav {
            position: fixed;
            top: 16px;
            left: 0;
            width: 100%;
            z-index: 999;
            padding: 0 18px;
        }

        .nav-wrap {
            max-width: 1320px;
            margin: auto;
            height: 72px;
            padding: 0 18px;

            display: flex;
            align-items: center;
            justify-content: space-between;

            border-radius: 22px;

            background: rgba(255, 255, 255, .74);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);

            border: 1px solid rgba(255, 255, 255, .7);

            box-shadow:
                0 10px 28px rgba(0, 0, 0, .06),
                inset 0 1px 0 rgba(255, 255, 255, .75);
        }

        /* LOGO */

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

        .nav-logo img {
            width: 42px;
            height: 42px;
            object-fit: contain;
        }

        .nav-logo span {
            font-size: 18px;
            font-weight: 700;
            color: #111;
            letter-spacing: -.4px;
        }

        /* MENU */

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-menu>a,
        .dropdown-btn {
            border: none;
            background: none;
            text-decoration: none;
            color: #444;
            font-size: 15px;
            font-weight: 500;
            padding: 11px 15px;
            border-radius: 999px;
            cursor: pointer;
            transition: .25s ease;
        }

        .nav-menu>a:hover,
        .dropdown-btn:hover {
            background: rgba(0, 0, 0, .04);
            color: #111;
        }

        /* CTA */

        .nav-btn {
            margin-left: 8px;
            background: #1B7C83 !important;
            color: #fff !important;
            padding: 12px 18px !important;
            box-shadow: 0 10px 20px rgba(27, 124, 131, .16);
        }

        .nav-btn:hover {
            background: #15686e !important;
        }

        /* DROPDOWN */

        .nav-dropdown {
            position: relative;
        }

        .dropdown-btn {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dropdown-btn svg {
            width: 16px;
            height: 16px;
        }

        .dropdown-menu {
            position: absolute;
            top: 56px;
            left: 0;
            min-width: 220px;
            padding: 10px;

            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(20px);

            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, .7);

            box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: .25s ease;
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 14px;
            border-radius: 14px;
            text-decoration: none;
            color: #333;
            font-size: 15px;
            transition: .22s ease;
        }

        .dropdown-menu a:hover {
            background: #f5f5f7;
            color: #111;
        }

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

        /* MOBILE TOGGLE */

        .nav-toggle {
            width: 46px;
            height: 46px;
            border: none;
            border-radius: 14px;
            background: rgba(0, 0, 0, .04);
            display: none;
            cursor: pointer;
            position: relative;
        }

        .nav-toggle span {
            position: absolute;
            left: 12px;
            width: 22px;
            height: 2px;
            background: #111;
        }

        .nav-toggle span:first-child {
            top: 17px;
        }

        .nav-toggle span:last-child {
            top: 26px;
        }

        /* MOBILE */

        @media(max-width:1024px) {

            .nav-toggle {
                display: block;
            }

            .nav-menu {
                position: absolute;
                top: 84px;
                left: 18px;
                right: 18px;

                flex-direction: column;
                align-items: stretch;
                gap: 6px;

                padding: 14px;
                border-radius: 22px;

                background: rgba(255, 255, 255, .94);
                backdrop-filter: blur(22px);

                box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: .25s ease;
            }

            .nav-menu.show {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .nav-menu>a,
            .dropdown-btn {
                width: 100%;
                text-align: left;
                border-radius: 16px;
            }

            .dropdown-btn {
                justify-content: space-between;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                background: #f7f7f7;
                margin-top: 6px;
                display: none;
            }

            .nav-dropdown.open .dropdown-menu {
                display: block;
            }

            .nav-btn {
                margin-left: 0;
                margin-top: 6px;
                text-align: center !important;
            }

        }




        .agency-pricing {
            padding: 100px 20px;
            background: linear-gradient(to bottom, #f4f6f8, #eef1f4);
            font-family: Arial, sans-serif;
            width: 100%;
            overflow: hidden;
        }

        .agency-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* Header */
        .agency-header {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 10px;
        }

        .agency-badge {
            display: inline-block;
            padding: 6px 14px;
            background: #e4f2f1;
            color: #1c7c7d;
            border-radius: 20px;
            font-size: 12px;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .agency-header h2 {
            font-size: 42px;
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
        }

        .agency-header h2 span {
            color: #1c7c7d;
        }

        .agency-header p {
            color: #666;
            margin-top: 15px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Cards Wrapper */
        .agency-cards {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
            width: 100%;
        }

        /* Card */
        .agency-card {
            background: #ffffff;
            padding: 40px 30px;
            border-radius: 20px;
            width: 340px;
            max-width: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            position: relative;
            transition: 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .agency-card:hover {
            transform: translateY(-8px);
        }

        .agency-small {
            font-size: 11px;
            letter-spacing: 1px;
            color: #888;
            margin-bottom: 10px;
        }

        .agency-card h3 {
            margin: 0 0 10px;
            font-size: 22px;
        }

        .agency-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
        }

        .agency-start {
            font-size: 12px;
            color: #1c7c7d;
            margin-bottom: 5px;
        }

        .agency-price {
            font-size: 32px;
            margin: 0 0 20px;
        }

        .agency-price span {
            font-size: 14px;
            color: #777;
        }

        .agency-card ul {
            list-style: none;
            padding: 0;
            margin: 0 0 30px;
            flex-grow: 1;
        }

        .agency-card ul li {
            margin-bottom: 10px;
            font-size: 14px;
            color: #444;
        }

        /* Buttons */
        .agency-btn-primary,
        .agency-btn-light {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 14px;
            text-align: center;
            transition: 0.3s ease;
        }

        .agency-btn-primary {
            background: #1c7c7d;
            color: #fff;
        }

        .agency-btn-primary:hover {
            background: #145e5f;
        }

        .agency-btn-light {
            background: #f0f0f0;
            color: #333;
        }

        .agency-btn-light:hover {
            background: #e2e2e2;
        }

        /* Featured Card */
        .agency-featured {
            background: linear-gradient(145deg, #0f1115, #1b1f25);
            color: #fff;
        }

        .agency-featured ul li,
        .agency-featured .agency-desc {
            color: #ddd;
        }

        .agency-featured .agency-start {
            color: #4dd4d6;
        }

        .agency-featured .agency-price span {
            color: #aaa;
        }

        .agency-popular {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #1c7c7d;
            color: #fff;
            font-size: 11px;
            padding: 6px 14px;
            border-radius: 20px;
        }

        /* ============================= */
        /* RESPONSIVE */
        /* ============================= */

        @media (max-width: 1024px) {
            .agency-header h2 {
                font-size: 36px;
            }

            .agency-card {
                width: calc(50% - 20px);
            }
        }

        @media (max-width: 768px) {
            .agency-pricing {
                padding: 70px 15px;
            }

            .agency-header h2 {
                font-size: 28px;
            }

            .agency-header p {
                font-size: 14px;
            }

            .agency-cards {
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }

            .agency-card {
                width: 100%;
                max-width: 420px;
            }

            .agency-featured {
                order: -1;
            }

            .agency-btn-primary,
            .agency-btn-light {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .agency-header h2 {
                font-size: 24px;
            }

            .agency-card {
                padding: 30px 20px;
                border-radius: 16px;
            }

            .agency-price {
                font-size: 26px;
            }

            .agency-card h3 {
                font-size: 20px;
            }

            .agency-card ul li {
                font-size: 13px;
            }
        }



        /* shopify partner  */


        .shopify-partner-section {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .partner-wrapper {
            width: 100%;
            max-width: 1200px;
        }

        /* MAIN CARD */

        .partner-badge {
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 38px;
            padding: 70px;
            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        /* APPLE STYLE GLOW */

        .glow {
            position: absolute;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(149, 255, 209, 0.22), transparent 70%);
            top: -160px;
            right: -120px;
            border-radius: 50%;
            pointer-events: none;
        }

        /* LABEL */

        .top-label {
            display: inline-flex;
            padding: 12px 18px;
            border-radius: 999px;
            background: #eef5f4;
            color: #247b7f;
            font-size: 12px;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 35px;
        }

        /* CONTENT */

        .content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        /* LEFT */

        .left {
            flex: 1;
        }

        .left h2 {
            font-size: 72px;
            line-height: 1;
            letter-spacing: -3px;
            color: #111827;
            margin-bottom: 28px;
            font-weight: 700;
        }

        .left h2 span {
            font-style: italic;
            font-weight: 500;
            color: #1d8b8f;
        }

        .left p {
            max-width: 580px;
            font-size: 20px;
            line-height: 1.8;
            color: #6b7280;
            margin-bottom: 42px;
            font-weight: 400;
        }

        /* BUTTONS */

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

        .primary-btn,
        .secondary-btn {
            text-decoration: none;
            padding: 18px 32px;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 600;
            transition: 0.35s ease;
        }

        .primary-btn {
            background: #0f172a;
            color: #fff;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
        }

        .primary-btn:hover {
            transform: translateY(-3px);
        }

        .secondary-btn {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 0, 0, 0.08);
            color: #111827;
            backdrop-filter: blur(10px);
        }

        .secondary-btn:hover {
            background: #fff;
        }

        /* RIGHT */

        .right {
            width: 360px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .badge-card {
            width: 100%;
            background: rgba(255, 255, 255, 0.68);
            border: 1px solid rgba(255, 255, 255, 0.95);
            border-radius: 32px;
            padding: 50px;
            backdrop-filter: blur(20px);
            box-shadow:
                0 8px 30px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .badge-card img {
            width: 100%;
            display: block;
        }

        /* FLOATING STATS */

        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.85);
            border-radius: 26px;
            padding: 22px 28px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        }

        .floating-card h3 {
            font-size: 34px;
            color: #111827;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }

        .floating-card span {
            font-size: 12px;
            letter-spacing: 2px;
            color: #94a3b8;
            font-weight: 600;
        }

        .card-1 {
            top: 60px;
            right: 360px;
        }

        .card-2 {
            bottom: 55px;
            right: 320px;
        }

        /* RESPONSIVE */

        @media(max-width:991px) {

            .partner-badge {
                padding: 50px 35px;
            }

            .content {
                flex-direction: column;
                align-items: flex-start;
            }

            .right {
                width: 100%;
            }

            .badge-card {
                max-width: 420px;
            }

            .left h2 {
                font-size: 54px;
            }

            .floating-card {
                display: none;
            }
        }

        @media(max-width:600px) {

            body {
                padding: 30px 15px;
            }

            .partner-badge {
                border-radius: 28px;
                padding: 40px 24px;
            }

            .left h2 {
                font-size: 42px;
            }

            .left p {
                font-size: 16px;
                line-height: 1.7;
            }

            .actions {
                width: 100%;
                flex-direction: column;
            }

            .primary-btn,
            .secondary-btn {
                width: 100%;
                text-align: center;
            }

            .badge-card {
                padding: 35px;
                border-radius: 24px;
            }
        }




        /* =========================
   BRANDS SECTION
========================= */

        .brands-section {
            position: relative;
            padding: 140px 7%;
            overflow: hidden;

            background: #f7f7f5;
        }

        /* BG */

        .brands-bg {
            position: absolute;
            inset: 0;

            background:
                radial-gradient(circle at top left,
                    rgba(13, 148, 136, .08),
                    transparent 35%),

                radial-gradient(circle at bottom right,
                    rgba(0, 120, 255, .06),
                    transparent 35%);
        }

        /* CONTAINER */

        .brands-container {
            position: relative;
            z-index: 2;

            max-width: 1400px;
            margin: auto;
        }

        /* HEADER */

        .brands-header {
            text-align: center;
            max-width: 800px;
            margin: auto;
        }

        .brands-label {
            display: inline-flex;

            padding: 10px 18px;

            border-radius: 999px;

            background: rgba(255, 255, 255, .7);

            border: 1px solid rgba(0, 0, 0, .06);

            font-size: .9rem;
            font-weight: 700;

            color: #0f172a;
        }

        .brands-header h2 {
            margin-top: 28px;

            font-size: clamp(3rem, 5vw, 5rem);

            line-height: .95;
            letter-spacing: -0.05em;

            color: #0f172a;
        }

        .brands-header h2 span {
            color: #0d9488;
        }

        .brands-header p {
            margin-top: 24px;

            font-size: 1.1rem;
            line-height: 1.8;

            color: #64748b;
        }

        /* GRID */

        .brands-grid {
            margin-top: 90px;

            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

            gap: 28px;
        }

        /* CARD */

        .brand-card {
            position: relative;

            padding: 35px;

            border-radius: 32px;

            background: rgba(255, 255, 255, .72);

            backdrop-filter: blur(20px);

            border: 1px solid rgba(255, 255, 255, .8);

            overflow: hidden;

            transition: .45s ease;

            box-shadow:
                0 15px 50px rgba(0, 0, 0, .06);
        }

        /* HOVER */

        .brand-card:hover {
            transform:
                translateY(-10px) scale(1.02);

            box-shadow:
                0 25px 80px rgba(0, 0, 0, .12);
        }

        /* GLOW */

        .brand-glow {
            position: absolute;

            width: 180px;
            height: 180px;

            border-radius: 50%;

            background:
                radial-gradient(circle,
                    rgba(13, 148, 136, .15),
                    transparent 70%);

            top: -60px;
            right: -60px;
        }

        /* CATEGORY */

        .brand-category {
            display: inline-flex;

            padding: 8px 14px;

            border-radius: 999px;

            background: rgba(13, 148, 136, .08);

            color: #0d9488;

            font-size: .8rem;
            font-weight: 700;
        }

        /* TITLE */

        .brand-card h3 {
            margin-top: 28px;

            font-size: 2rem;
            font-weight: 800;

            letter-spacing: -0.04em;

            color: #0f172a;
        }

        /* DESC */

        .brand-card p {
            margin-top: 18px;

            line-height: 1.7;

            color: #64748b;
        }

        /* RESPONSIVE */

        @media(max-width:768px) {

            .brands-section {
                padding: 100px 24px;
            }

            .brands-grid {
                margin-top: 60px;
            }

            .brand-card {
                padding: 28px;
            }
        }



        .kehem-client-section {
            padding: 90px 20px;
            background: #f5f5f7;
            overflow: hidden;
        }

        .kehem-client-container {
            max-width: 1180px;
            margin: auto;
        }

        .kehem-client-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .kehem-client-label {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #0d8d97;
            margin-bottom: 18px;
        }

        .kehem-client-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            letter-spacing: -0.07em;
            font-weight: 800;
            max-width: 800px;
            margin: auto;
            color: #111;
        }

        .kehem-client-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .kehem-client-card {
            background: rgba(255, 255, 255, 0.82);
            border-radius: 32px;
            padding: 38px;
            backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.04),
                0 20px 50px rgba(0, 0, 0, 0.05);
            transition: 0.35s ease;
        }

        .kehem-client-card:hover {
            transform: translateY(-6px);
        }

        .kehem-client-quote-icon {
            font-size: 4rem;
            line-height: 1;
            color: #0d8d97;
            opacity: 0.2;
            margin-bottom: 20px;
        }

        .kehem-client-message {
            font-size: 1.05rem;
            line-height: 1.9;
            color: #5f6672;
            margin-bottom: 36px;
        }

        .kehem-client-profile {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .kehem-client-profile img {
            width: 62px;
            height: 62px;
            border-radius: 50%;
            object-fit: cover;
        }

        .kehem-client-name {
            font-size: 1rem;
            font-weight: 700;
            color: #111;
        }

        .kehem-client-role {
            margin-top: 4px;
            font-size: 0.92rem;
            color: #6f7682;
            line-height: 1.5;
        }

        @media(max-width: 1000px) {
            .kehem-client-grid {
                grid-template-columns: 1fr;
            }
        }

        @media(max-width: 640px) {

            .kehem-client-section {
                padding: 60px 16px;
            }

            .kehem-client-card {
                padding: 30px;
            }

            .kehem-client-title {
                font-size: 2.8rem;
            }
        }




        /* Cal.com Button */
        .btn-cal {
            height: 56px;
            padding: 0 28px;
            border: none;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;

            background: linear-gradient(135deg,
                    #635bff,
                    #8b5cf6);

            color: #fff;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;

            box-shadow:
                0 10px 30px rgba(99, 91, 255, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);

            transition: all .3s ease;
        }

        .btn-cal:hover {
            transform: translateY(-2px) scale(1.02);

            box-shadow:
                0 14px 40px rgba(99, 91, 255, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
        }

        .btn-cal svg {
            opacity: .9;
        }




        /* =========================
   TRUST BAR
========================= */

        .trust-bar {
            position: relative;
            padding: 2.2rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            background:
                linear-gradient(to bottom,
                    rgba(255, 255, 255, 0.015),
                    rgba(255, 255, 255, 0.01));
            overflow: hidden;
        }

        .trust-track {
            width: min(1400px, 92%);
            margin: 0 auto;

            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.6rem;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: .85rem;

            color: rgba(255, 255, 255, 0.88);

            font-size: 1.45rem;
            font-weight: 500;
            letter-spacing: -0.02em;
        }

        .trust-item strong {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .trust-item img {
            width: 24px;
            height: 24px;
            object-fit: contain;
            opacity: 0.9;
        }

        .trust-divider {
            width: 1px;
            height: 20px;
            background: rgba(255, 255, 255, 0.08);
        }

        @media (max-width: 768px) {

            .trust-bar {
                padding: 1.8rem 0;
            }

            .trust-track {
                justify-content: flex-start;
                gap: 1.2rem;
            }

            .trust-item {
                font-size: 1.3rem;
            }

            .trust-item strong {
                font-size: 1.35rem;
            }

            .trust-divider {
                display: none;
            }
        }


        .journal-hero {
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fbfbfd;
            padding: 0 2rem;
        }

        .hero-inner {
            max-width: 980px;
            width: 100%;
        }

        .hero-kicker {
            display: inline-block;
            margin-bottom: 2rem;

            font-size: .9rem;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;

            color: #86868b;
        }

        .journal-hero h1 {
            font-size: clamp(4rem, 9vw, 8rem);
            line-height: .92;
            letter-spacing: -0.07em;
            font-weight: 700;

            color: #1d1d1f;

            margin-bottom: 2rem;
        }

        .journal-hero p {
            max-width: 700px;

            font-size: 1.5rem;
            line-height: 1.55;

            color: #6e6e73;

            margin-bottom: 3rem;
        }

        .hero-link {
            display: inline-flex;
            align-items: center;

            font-size: 1.1rem;
            font-weight: 600;

            color: #0066cc;
            text-decoration: none;
        }

        .hero-link:hover {
            opacity: .8;
        }

        @media (max-width: 768px) {

            .journal-hero {
                min-height: 70vh;
                padding: 120px 24px 80px;
            }

            .journal-hero h1 {
                font-size: 3.5rem;
            }

            .journal-hero p {
                font-size: 1.15rem;
            }

        }






        .journal-hero {
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fbfbfd;
            padding: 0 2rem;
        }

        .hero-inner {
            max-width: 980px;
            width: 100%;
        }

        .hero-kicker {
            display: inline-block;
            margin-bottom: 2rem;

            font-size: .9rem;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;

            color: #86868b;
        }

        .journal-hero h1 {
            font-size: clamp(4rem, 9vw, 8rem);
            line-height: .92;
            letter-spacing: -0.07em;
            font-weight: 700;

            color: #1d1d1f;

            margin-bottom: 2rem;
        }

        .journal-hero p {
            max-width: 700px;

            font-size: 1.5rem;
            line-height: 1.55;

            color: #6e6e73;

            margin-bottom: 3rem;
        }

        .hero-link {
            display: inline-flex;
            align-items: center;

            font-size: 1.1rem;
            font-weight: 600;

            color: #0066cc;
            text-decoration: none;
        }

        .hero-link:hover {
            opacity: .8;
        }

        @media (max-width: 768px) {

            .journal-hero {
                min-height: 70vh;
                padding: 120px 24px 80px;
            }

            .journal-hero h1 {
                font-size: 3.5rem;
            }

            .journal-hero p {
                font-size: 1.15rem;
            }

        }