:root {
            --brand: #1298a0;
            --brand-dark: #0d7f86;
            --ink: #0b1220;
            --muted: #667085;
            --surface: #f2f4f7;
            --card: #ffffff;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: Manrope, sans-serif;
            color: var(--ink);
            background: var(--surface);
        }

        .container {
            width: min(1180px, 92vw);
            margin: 0 auto;
        }

        .preview-bar {
            background: #0f172a;
            color: #cbd5e1;
            font-size: 12px;
            letter-spacing: .08em;
            text-transform: uppercase;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .preview-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .preview-link {
            color: #fff;
            font-weight: 700;
            text-decoration: none;
        }

        .header {
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid #e4e7ec;
            position: sticky;
            top: 0;
            z-index: 30;
            backdrop-filter: blur(10px);
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            letter-spacing: -.02em;
        }

        .brand .material-symbols-outlined {
            color: var(--brand);
            font-size: 22px;
        }

        .nav {
            display: flex;
            gap: 30px;
        }

        .nav a {
            text-decoration: none;
            color: #0f172a;
            font-size: 14px;
            font-weight: 600;
        }

        .cta-small {
            background: var(--brand);
            color: #001417;
            border-radius: 10px;
            padding: 11px 16px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 800;
        }

        .hero {
            padding: 64px 0 56px;
            background: linear-gradient(180deg, #f8fafc 0%, #f2f4f7 100%);
            border-bottom: 1px solid #e4e7ec;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.05fr 1fr;
            gap: 42px;
            align-items: center;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .1em;
            font-weight: 800;
            color: #0b6f77;
            background: rgba(32, 214, 223, 0.14);
            border-radius: 999px;
            padding: 8px 12px;
            margin-bottom: 18px;
        }

        h1 {
            margin: 0;
            font-size: clamp(36px, 5vw, 62px);
            line-height: 1.02;
            letter-spacing: -.03em;
        }

        h1 .accent {
            color: var(--brand);
        }

        .hero p {
            color: var(--muted);
            font-size: 21px;
            line-height: 1.58;
            max-width: 57ch;
            margin: 22px 0 28px;
        }

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

        .btn-primary,
        .btn-secondary {
            border-radius: 12px;
            padding: 13px 20px;
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
            border: 1px solid transparent;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: var(--brand);
            color: #00252a;
            box-shadow: 0 10px 26px rgba(32, 214, 223, .3);
        }

        .btn-secondary {
            background: #fff;
            color: #0f172a;
            border-color: #d0d5dd;
        }

        .hero-media {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 44px rgba(2, 6, 23, .26);
            border: 1px solid rgba(255, 255, 255, .7);
            min-height: 360px;
        }

        .hero-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .stats {
            padding: 22px 0 10px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        .stat {
            background: var(--card);
            border: 1px solid #e4e7ec;
            border-radius: 14px;
            padding: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .stat i {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            background: rgba(32, 214, 223, .12);
            color: var(--brand-dark);
        }

        .stat strong {
            font-size: 31px;
            line-height: 1;
            display: block;
        }

        .stat span {
            color: var(--muted);
            font-size: 13px;
        }

        .specialties {
            padding: 72px 0;
        }

        .section-head {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 30px;
        }

        .section-head h2 {
            margin: 0;
            font-size: clamp(34px, 4.5vw, 50px);
            letter-spacing: -.02em;
        }

        .section-head p {
            margin: 12px 0 0;
            color: var(--muted);
            font-size: 18px;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .card {
            background: #fff;
            border: 1px solid #e4e7ec;
            border-radius: 16px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            min-height: 238px;
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 34px rgba(2, 6, 23, .08);
        }

        .card i {
            color: var(--brand-dark);
            margin-bottom: 12px;
        }

        .card h3 {
            margin: 0 0 8px;
            font-size: 30px;
            letter-spacing: -.015em;
        }

        .card p {
            margin: 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.55;
            flex-grow: 1;
        }

        .card a {
            margin-top: 16px;
            color: var(--brand-dark);
            text-decoration: none;
            font-size: 14px;
            font-weight: 800;
        }

        .urgent {
            background: linear-gradient(108deg, #071534 0%, #081023 56%, #0a1a3f 100%);
            color: #fff;
            padding: 70px 0;
        }

        .urgent-grid {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 26px;
            align-items: start;
        }

        .urgent h2 {
            margin: 0 0 10px;
            font-size: clamp(34px, 4.4vw, 52px);
            letter-spacing: -.02em;
        }

        .urgent p {
            color: rgba(226, 232, 240, .9);
            font-size: 18px;
            line-height: 1.6;
            max-width: 52ch;
        }

        .urgent-points {
            margin: 24px 0;
            display: grid;
            gap: 10px;
        }

        .urgent-point {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #d1d5db;
        }

        .urgent-point i {
            color: #46e0e7;
        }

        .urgent .btn-primary {
            color: #052228;
        }

        .form-card {
            background: #fff;
            color: #0f172a;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid rgba(148, 163, 184, .4);
            box-shadow: 0 20px 40px rgba(2, 6, 23, .25);
        }

        .form-card h3 {
            margin: 0 0 16px;
            font-size: 27px;
            letter-spacing: -.015em;
        }

        .field {
            display: grid;
            gap: 6px;
            margin-bottom: 11px;
        }

        .field label {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .07em;
            color: #475467;
        }

        .field input,
        .field textarea,
        .field select {
            width: 100%;
            border: 1px solid #d0d5dd;
            border-radius: 10px;
            padding: 11px 12px;
            font: inherit;
        }

        .form-note {
            margin: 10px 0 0;
            font-size: 11px;
            color: #98a2b3;
            text-align: center;
        }

        .footer {
            background: #f8fafc;
            border-top: 1px solid #e4e7ec;
            padding: 38px 0 22px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr .8fr .8fr;
            gap: 24px;
        }

        .footer h4 {
            margin: 0 0 10px;
            font-size: 16px;
        }

        .footer p,
        .footer a {
            color: #667085;
            font-size: 14px;
            line-height: 1.6;
            text-decoration: none;
            display: block;
            margin-bottom: 6px;
        }

        .copy {
            margin-top: 22px;
            border-top: 1px solid #e4e7ec;
            padding-top: 14px;
            display: flex;
            justify-content: space-between;
            color: #98a2b3;
            font-size: 12px;
        }

        @media (max-width: 980px) {
            .nav {
                display: none;
            }

            .hero-grid,
            .urgent-grid,
            .footer-grid,
            .cards,
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .hero-media {
                min-height: 280px;
            }

            .hero {
                padding-top: 36px;
            }
        }
