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

        :root {
            --coral: #F2A09A;
            --coral-light: #FDF5F4;
            --coral-dark: #E88B84;
            --teal: #4CB5AE;
            --teal-dark: #3A9A94;
            --teal-light: #E8F6F5;
            --navy: #1A2B3C;
            --text-dark: #2D3748;
            --text-gray: #5A6B7D;
            --text-light: #7E8A97;
            --white: #FFFFFF;
            --bg-cream: #FFFAF9;
            --border: #E8ECF1;
            --shadow: 0 24px 60px rgba(26, 43, 60, 0.12);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background:
                radial-gradient(circle at top left, rgba(76, 181, 174, 0.18), transparent 30%),
                radial-gradient(circle at top right, rgba(242, 160, 154, 0.2), transparent 26%),
                linear-gradient(180deg, #F8FCFB 0%, #FFFFFF 22%, #FFF8F5 100%);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'DM Serif Display', Georgia, serif;
            font-weight: 400;
        }

        .support-shell {
            max-width: 1120px;
            margin: 0 auto;
            padding: 132px 20px 96px;
        }

        .support-hero {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
            gap: 28px;
            align-items: stretch;
        }

        .hero-copy {
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(255, 255, 255, 0.72);
            box-shadow: var(--shadow);
            border-radius: 32px;
            padding: 42px;
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(76, 181, 174, 0.12);
            color: var(--teal-dark);
            border-radius: 999px;
            padding: 8px 14px;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .eyebrow::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--teal);
            box-shadow: 0 0 0 6px rgba(76, 181, 174, 0.12);
        }

        .hero-copy h1 {
            font-size: clamp(2.5rem, 5vw, 4.3rem);
            line-height: 1.02;
            color: var(--navy);
            max-width: 10ch;
            margin-bottom: 18px;
        }

        .hero-copy p {
            font-size: 1.08rem;
            color: var(--text-gray);
            max-width: 56ch;
            margin-bottom: 24px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 24px;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 24px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.96rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .button:hover {
            transform: translateY(-1px);
        }

        .button-primary {
            background: var(--navy);
            color: var(--white);
            box-shadow: 0 14px 28px rgba(26, 43, 60, 0.18);
        }

        .button-primary:hover {
            background: #12202d;
        }

        .button-secondary {
            background: rgba(76, 181, 174, 0.12);
            color: var(--teal-dark);
        }

        .hero-note {
            font-size: 0.94rem;
            color: var(--text-light);
        }

        .priority-card {
            background: linear-gradient(180deg, rgba(26, 43, 60, 0.98) 0%, rgba(44, 67, 88, 0.96) 100%);
            color: rgba(255, 255, 255, 0.88);
            border-radius: 32px;
            padding: 34px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .priority-card::after {
            content: '';
            position: absolute;
            inset: auto -30px -70px auto;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(76, 181, 174, 0.3), transparent 65%);
        }

        .priority-card .label {
            display: inline-block;
            margin-bottom: 16px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.58);
        }

        .priority-card h2 {
            font-size: 2rem;
            line-height: 1.1;
            margin-bottom: 14px;
        }

        .priority-card p {
            color: rgba(255, 255, 255, 0.74);
            margin-bottom: 18px;
        }

        .priority-callout {
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.06);
            border-radius: 22px;
            padding: 18px;
        }

        .priority-callout strong {
            display: block;
            color: var(--white);
            margin-bottom: 6px;
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            margin-top: 26px;
        }

        .support-card {
            background: rgba(255, 255, 255, 0.84);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 28px;
            padding: 28px;
            box-shadow: 0 18px 42px rgba(26, 43, 60, 0.08);
        }

        .support-card h3 {
            font-size: 1.45rem;
            margin-bottom: 12px;
            color: var(--navy);
        }

        .support-card p {
            color: var(--text-gray);
            margin-bottom: 16px;
        }

        .support-card ul {
            list-style: none;
            display: grid;
            gap: 12px;
            color: var(--text-gray);
        }

        .support-card li {
            position: relative;
            padding-left: 20px;
        }

        .support-card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.72em;
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--coral-dark);
        }

        .info-strip {
            margin-top: 24px;
            background: rgba(76, 181, 174, 0.1);
            border: 1px solid rgba(76, 181, 174, 0.16);
            border-radius: 24px;
            padding: 22px 24px;
            color: var(--text-gray);
            font-size: 0.98rem;
        }

        .info-strip strong {
            color: var(--navy);
        }

        a.inline-link {
            color: var(--teal-dark);
            font-weight: 700;
            text-decoration: none;
        }

        a.inline-link:hover {
            text-decoration: underline;
        }

        @media (max-width: 980px) {
            .support-hero,
            .support-grid {
                grid-template-columns: 1fr;
            }

            .hero-copy,
            .priority-card,
            .support-card {
                padding: 28px;
            }
        }

        @media (max-width: 600px) {
            .support-shell {
                padding: 116px 16px 72px;
            }

            .hero-copy h1 {
                font-size: 2.5rem;
            }

            .button {
                width: 100%;
            }
        }
    