        /* ─── Theme ─── */
        :root {
            --cream: #FEFAE0;
            --sage-light: #E9EDC9;
            --sage: #CCD5AE;
            --sage-dark: #B5C49A;
            --ink: #1E2A3A;
            --ink-soft: #3D4F60;
            --gold: #D4A855;
            --gold-light: #E8C86A;
            --white: #FFFFFF;
            --lime: #9BCB3B;
            --lime-bright: #C4E849;
            --turf: #3E7C2E;
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-arena: 'Oswald', 'Arial Narrow', sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            color: var(--ink);
            background: var(--cream);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ─── Scroll Reveal ─── */
        .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1); }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ─── Navbar ─── */
        .navbar-landing {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
            padding: 1rem 0;
            transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
        }
        .navbar-landing.scrolled {
            background: rgba(254,250,224,.92);
            backdrop-filter: blur(16px) saturate(1.3);
            -webkit-backdrop-filter: blur(16px) saturate(1.3);
            padding: .55rem 0;
            box-shadow: 0 1px 20px rgba(0,0,0,.06);
        }
        .navbar-landing .nav-link {
            color: var(--ink) !important;
            font-weight: 500;
            font-size: .9rem;
            letter-spacing: .02em;
            padding: .5rem 1rem !important;
            transition: color .2s;
        }
        .navbar-landing .nav-link:hover { color: var(--gold) !important; }
        .navbar-landing .navbar-brand {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--ink);
            letter-spacing: -.02em;
        }
        .navbar-landing .navbar-brand i { color: var(--gold); }
        /* mobile collapsed bg */
        @media (max-width: 991.98px) {
            .navbar-landing .navbar-collapse {
                background: #fefae0;
                border-radius: 12px;
                padding: .75rem 1rem;
                margin-top: .75rem;
                box-shadow: 0 8px 24px rgba(0,0,0,.08);
            }
        }

        /* ─── Hero ─── */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            overflow: hidden;
            background: linear-gradient(165deg, var(--cream) 0%, var(--sage-light) 40%, var(--sage) 100%);
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -30%; right: -10%;
            width: 70vmax; height: 70vmax;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(204,213,174,.25) 0%, transparent 65%);
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%; left: -5%;
            width: 50vmax; height: 50vmax;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212,168,85,.12) 0%, transparent 60%);
            pointer-events: none;
        }
        .hero-shape {
            position: absolute;
            border: 2px solid rgba(212,168,85,.15);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-shape-1 { width: 400px; height: 400px; top: 10%; right: 5%; animation: float 8s ease-in-out infinite; }
        .hero-shape-2 { width: 250px; height: 250px; bottom: 15%; left: 8%; animation: float 10s ease-in-out infinite reverse; }
        .hero-shape-3 { width: 150px; height: 150px; top: 40%; right: 35%; animation: float 6s ease-in-out infinite 1s; }
        @keyframes float {
            0%, 100% { transform: translate(0,0) rotate(0deg); }
            50% { transform: translate(20px,-20px) rotate(5deg); }
        }

        .hero-badge {
            display: inline-flex; align-items: center; gap: .5rem;
            background: rgba(212,168,85,.12);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(212,168,85,.25);
            padding: .4rem 1rem; border-radius: 100px;
            font-size: .8rem; font-weight: 600; color: var(--gold);
            margin-bottom: 1.5rem;
            letter-spacing: .05em; text-transform: uppercase;
        }

        /* ─── Free offer badge (hero) ─── */
        .hero-free-badge {
            display: inline-flex; align-items: center; gap: .6rem;
            background: linear-gradient(135deg, rgba(212,168,85,.15), rgba(232,200,106,.1));
            border: 1.5px solid rgba(212,168,85,.35);
            padding: .55rem 1.2rem; border-radius: 100px;
            font-size: .9rem; font-weight: 700; color: var(--gold);
            margin-bottom: 1.5rem;
            letter-spacing: 0;
            text-transform: none;
            box-shadow: 0 2px 12px rgba(212,168,85,.12);
        }
        .hero-free-badge i { font-size: 1.1rem; }

        /* ─── Free offer tag (inline) ─── */
        .free-tag {
            display: inline-flex; align-items: center; gap: .4rem;
            background: rgba(212,168,85,.1);
            border: 1px solid rgba(212,168,85,.2);
            padding: .25rem .75rem; border-radius: 100px;
            font-size: .82rem; font-weight: 600; color: var(--gold-light);
            white-space: nowrap;
        }
        .free-tag i { font-size: .75rem; }
        .hero h1 {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: clamp(2.8rem, 6vw, 5rem);
            line-height: 1.08;
            letter-spacing: -.03em;
            color: var(--ink);
        }
        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--ink-soft);
            line-height: 1.7;
            max-width: 520px;
        }
        .hero-image-wrapper {
            position: relative;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,.08);
        }
        .hero-image-wrapper img {
            width: 100%; height: auto;
            display: block;
            transform: scale(1);
            transition: transform 10s cubic-bezier(.22,1,.36,1);
        }
        .hero-image-wrapper:hover img { transform: scale(1.05); }
        .hero-image-wrapper::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(30,42,58,.06) 0%, transparent 50%);
            pointer-events: none;
        }

        /* ─── Hero Stats Trust Bar ─── */
        .hero-stats-bar {
            background: var(--ink);
            clip-path: polygon(0 3rem, 100% 0, 100% 100%, 0 calc(100% - 3rem));
            margin-top: -3rem;
            padding: 5rem 0 4rem;
            position: relative;
            z-index: 1;
        }
        .hero-stats-bar::before {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(90deg, rgba(212,168,85,.04) 0%, transparent 50%, rgba(212,168,85,.04) 100%);
            pointer-events: none;
        }
        .hero-stats-bar .stat-item {
            text-align: center;
            padding: 1rem;
        }
        .hero-stats-bar .stat-icon {
            font-size: 1.6rem;
            color: var(--gold);
            opacity: .7;
            margin-bottom: .5rem;
            display: block;
        }
        .hero-stats-bar .stat-number {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            color: var(--white);
            line-height: 1;
            letter-spacing: -.02em;
        }
        .hero-stats-bar .stat-number .gold {
            color: var(--gold);
        }
        .hero-stats-bar .stat-label {
            font-size: .8rem;
            text-transform: uppercase;
            letter-spacing: .12em;
            color: rgba(255,255,255,.5);
            margin-top: .35rem;
            font-weight: 500;
        }
        .hero-stats-bar .stat-divider {
            width: 1px;
            height: 60px;
            background: linear-gradient(180deg, transparent, rgba(212,168,85,.3), transparent);
            align-self: center;
        }
        @media (max-width: 767.98px) {
            .hero-stats-bar { clip-path: polygon(0 1.5rem, 100% 0, 100% 100%, 0 calc(100% - 1.5rem)); margin-top: -1.5rem;padding: 3.5rem 0 2.5rem; }
            /* .hero-stats-bar { clip-path: none; margin-top: 1.5rem; padding: 2.5rem 0 2rem; } */
            .hero-stats-bar .stat-divider { display: none; }
            .hero-stats-bar .stat-item { padding: .75rem; }
        }

        /* ─── Buttons ─── */
        .btn-gold {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border: none;
            color: var(--ink);
            font-weight: 700;
            padding: .85rem 2.25rem;
            border-radius: 60px;
            transition: transform .3s, box-shadow .3s;
            box-shadow: 0 4px 20px rgba(212,168,85,.3);
        }
        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212,168,85,.4);
            color: var(--ink);
        }
        .btn-ghost {
            background: transparent;
            border: 2px solid var(--ink);
            color: var(--ink);
            font-weight: 600;
            padding: .85rem 2.25rem;
            border-radius: 60px;
            transition: all .3s;
        }
        .btn-ghost:hover {
            background: var(--ink);
            color: var(--cream);
        }

        /* ─── Section base ─── */
        section { position: relative; }
        .section-label {
            display: inline-block;
            font-size: .75rem;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: .75rem;
        }
        .section-title {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: clamp(2rem, 4vw, 3rem);
            letter-spacing: -.02em;
            color: var(--ink);
        }
        .section-sub {
            font-size: 1.05rem;
            color: var(--ink-soft);
            max-width: 560px;
            line-height: 1.7;
        }

        /* ─── About ─── */
        .about-image-wrap {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,.06);
        }
        .about-image-wrap img {
            width: 100%; height: 100%; object-fit: cover;
            display: block;
            transition: transform 8s cubic-bezier(.22,1,.36,1);
        }
        .about-image-wrap:hover img { transform: scale(1.04); }
        .about-image-wrap::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(254,250,224,.15) 0%, transparent 60%);
            pointer-events: none;
        }
        .about-experience {
            position: absolute;
            bottom: -1.5rem; right: -1.5rem;
            background: var(--ink);
            color: var(--cream);
            padding: 1.5rem 2rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,.1);
        }
        .about-experience .num {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 2.5rem;
            line-height: 1;
            color: var(--gold);
        }
        .about-experience .label {
            font-size: .75rem;
            text-transform: uppercase;
            letter-spacing: .08em;
            opacity: .7;
        }
        .sporty-card {
            height: 100%;
            background: var(--white);
            border: 2px solid var(--ink);
            border-top: 8px solid var(--ink);
            border-radius: 0.75rem 0.75rem 1rem 0.75rem;
            padding: 1.4rem 1.3rem 1.2rem;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            box-shadow: 8px 8px 0 0 rgba(30,42,58,.12);
            transition: transform .32s cubic-bezier(.22,1,.36,1), box-shadow .32s cubic-bezier(.22,1,.36,1), border-color .32s;
        }
        /* speed slash that wipes across the top border on hover */
        .sporty-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 8px;
            background: linear-gradient(90deg, var(--lime), var(--lime-bright), var(--gold));
            transform: translateX(-101%);
            transition: transform .5s cubic-bezier(.22,1,.36,1);
        }
        /* diagonal field-stripe patch in the corner */
        .sporty-card::after {
            content: '';
            position: absolute;
            bottom: -46px; right: -46px;
            width: 110px; height: 110px;
            background: repeating-linear-gradient(135deg, var(--turf) 0 12px, transparent 12px 24px);
            opacity: 0;
            transform: rotate(-15deg) scale(.6);
            border-radius: 50%;
            transition: opacity .35s, transform .5s cubic-bezier(.22,1,.36,1);
        }
        .sporty-card:hover {
            transform: translate(-4px,-4px) rotate(-.5deg);
            box-shadow: 12px 12px 0 0 rgba(29,42,41,.18);
        }
        .sporty-card:hover::before { transform: translateX(0); }
        .sporty-card:hover::after { opacity: 1; transform: rotate(-15deg) scale(1); }
        .sporty-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        /* medal-badge icon */
        .sporty-icon {
            flex-shrink: 0;
            width: 52px; height: 52px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--turf), var(--lime));
            color: var(--white);
            font-size: 1.35rem;
            box-shadow: inset 0 0 0 3px var(--white), inset 0 0 0 5px var(--gold), 0 5px 14px rgba(62,124,46,.4);
            transform: rotate(0deg);
            transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
        }
        .sporty-card:hover .sporty-icon {
            transform: rotate(-10deg) scale(1.06);
            box-shadow: inset 0 0 0 3px var(--white), inset 0 0 0 5px var(--gold), var(--lime) 0 0 0 4px;
        }
        /* jersey number scoreboard */
        .sporty-num {
            font-family: var(--font-arena);
            font-weight: 700;
            font-size: 3rem;
            line-height: .9;
            letter-spacing: 1px;
            color: transparent;
            -webkit-text-stroke: 2px var(--ink);
            opacity: .4;
            transition: opacity .3s, color .3s;
            user-select: none;
        }
        .sporty-card:hover .sporty-num {
            color: var(--lime);
            -webkit-text-stroke: 1px var(--turf);
            opacity: 1;
        }
        .sporty-card p {
            font-size: .92rem;
            color: var(--ink-soft);
            line-height: 1.55;
            margin: 0;
        }
        /* dashed lane, like a running-track marking */
        .sporty-lane {
            margin-top: auto;
            padding-top: 1.1rem;
            height: 6px;
            background-image: repeating-linear-gradient(90deg, var(--ink) 0 14px, transparent 14px 26px);
            opacity: .25;
            transition: opacity .3s;
        }
        .sporty-card:hover .sporty-lane { opacity: .5; }

        /* ─── Features ─── */
        .features-grid {
            background: var(--white);
            border-radius: 2rem;
            padding: 3rem;
            box-shadow: 0 4px 30px rgba(0,0,0,.03);
        }
        .feature-card {
            padding: 2rem 1.5rem;
            border-radius: 1.25rem;
            transition: all .4s cubic-bezier(.22,1,.36,1);
            background: var(--white);
            border: 1px solid rgba(204,213,174,.2);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--sage));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .5s cubic-bezier(.22,1,.36,1);
        }
        .feature-card:hover::before { transform: scaleX(1); }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0,0,0,.06);
            border-color: rgba(212,168,85,.2);
        }
        .feature-icon {
            width: 56px; height: 56px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 16px;
            font-size: 1.5rem;
            margin-bottom: 1.25rem;
            background: linear-gradient(135deg, var(--sage-light), var(--sage));
            color: var(--ink);
            transition: transform .3s;
        }
        .feature-card:hover .feature-icon { transform: scale(1.08); }
        .feature-card h5 {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: .5rem;
            color: var(--ink);
        }
        .feature-card p {
            font-size: .9rem;
            color: var(--ink-soft);
            line-height: 1.6;
            margin: 0;
        }

        /* ─── Advantages (Sports ERP) ─── */
        .advantages-bg {
            background: linear-gradient(180deg, var(--cream) 0%, var(--sage-light) 50%, var(--cream) 100%);
        }
        .advantage-item {
            display: flex; gap: 1.25rem;
            padding: 1.75rem;
            border-radius: 1.25rem;
            background: var(--white);
            border: 1px solid rgba(204,213,174,.15);
            transition: all .3s;
            height: 100%;
        }
        .advantage-item:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,.04);
            border-color: rgba(212,168,85,.15);
        }
        .advantage-icon {
            flex-shrink: 0;
            width: 48px; height: 48px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(212,168,85,.12), rgba(212,168,85,.06));
            color: var(--gold);
            font-size: 1.25rem;
        }
        .advantage-item h6 {
            font-weight: 700;
            font-size: .95rem;
            margin-bottom: .3rem;
            color: var(--ink);
        }
        .advantage-item p {
            font-size: .85rem;
            color: var(--ink-soft);
            margin: 0;
            line-height: 1.6;
        }

        /* ─── Testimonials ─── */
        .testimonial-card {
            background: var(--white);
            border-radius: 1.5rem;
            padding: 2.5rem;
            border: 1px solid rgba(204,213,174,.15);
            box-shadow: 0 4px 20px rgba(0,0,0,.03);
            transition: all .4s;
            height: 100%;
        }
        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,.06);
        }
        .testimonial-stars { color: var(--gold); letter-spacing: 2px; font-size: .85rem; }
        .testimonial-card blockquote {
            font-size: .95rem;
            color: var(--ink-soft);
            line-height: 1.7;
            font-style: italic;
            margin: 1rem 0 1.5rem;
        }
        .testimonial-author {
            display: flex; align-items: center; gap: .75rem;
        }
        .testimonial-avatar {
            width: 44px; height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--sage), var(--gold));
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 1rem;
            color: var(--white);
        }
        .testimonial-author strong {
            display: block;
            font-size: .9rem;
            color: var(--ink);
        }
        .testimonial-author span {
            font-size: .8rem;
            color: var(--ink-soft);
        }

        /* ─── Why Us ─── */
        .why-stats {
            background: var(--ink);
            border-radius: 2rem;
            padding: 3rem;
        }
        .why-stat-item { text-align: center; }
        .why-stat-item .num {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 2.8rem;
            color: var(--gold);
            line-height: 1;
        }
        .why-stat-item .plus { font-size: 1.5rem; color: var(--gold); }
        .why-stat-item p {
            font-size: .85rem;
            color: rgba(255,255,255,.6);
            text-transform: uppercase;
            letter-spacing: .08em;
            margin-top: .35rem;
        }
        .why-card {
            padding: 2rem;
            border-radius: 1.25rem;
            background: var(--white);
            border: 1px solid rgba(204,213,174,.15);
            height: 100%;
            transition: all .3s;
            display: flex; gap: 1rem; align-items: flex-start;
        }
        .why-card:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,.04);
            border-color: rgba(212,168,85,.15);
        }
        .why-card-icon {
            flex-shrink: 0;
            width: 40px; height: 40px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 12px;
            background: var(--sage-light);
            color: var(--ink);
            font-size: 1.1rem;
        }
        .why-card h6 {
            font-weight: 700;
            font-size: .95rem;
            margin-bottom: .25rem;
        }
        .why-card p {
            font-size: .85rem;
            color: var(--ink-soft);
            margin: 0;
        }

        /* ─── CTA ─── */
        .cta-section {
            background: linear-gradient(135deg, var(--ink) 0%, #2a3f52 100%);
            border-radius: 2rem;
            padding: 5rem 3rem;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%; right: -20%;
            width: 80vmax; height: 80vmax;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212,168,85,.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40%; left: -10%;
            width: 50vmax; height: 50vmax;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(204,213,174,.06) 0%, transparent 50%);
            pointer-events: none;
        }
        .cta-section h2 {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--white);
            letter-spacing: -.02em;
            position: relative; z-index: 1;
        }
        .cta-section p {
            color: rgba(255,255,255,.65);
            font-size: 1.05rem;
            position: relative; z-index: 1;
        }
        .cta-section .btn-gold { position: relative; z-index: 1; }

        /* ─── Footer ─── */
        .footer {
            background: var(--ink);
            color: rgba(255,255,255,.7);
            padding-top: 4rem;
        }
        .footer h6 {
            font-weight: 700;
            font-size: .85rem;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--white);
            margin-bottom: 1rem;
        }
        .footer a {
            color: rgba(255,255,255,.6);
            text-decoration: none;
            font-size: .9rem;
            transition: color .2s;
            display: inline-block;
            padding: .15rem 0;
        }
        .footer a:hover { color: var(--gold); }
        .footer-brand {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 1.4rem;
            color: var(--white) !important;
        }
        .footer-brand i { color: var(--gold); }
        .footer p { font-size: .9rem; line-height: 1.7; }
        .footer-social a {
            width: 38px; height: 38px;
            display: inline-flex; align-items: center; justify-content: center;
            border-radius: 10px;
            background: rgba(255,255,255,.06);
            color: rgba(255,255,255,.6);
            font-size: 1rem;
            transition: all .3s;
            margin-right: .4rem;
        }
        .footer-social a:hover {
            background: var(--gold);
            color: var(--ink);
            transform: translateY(-2px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.06);
            padding: 1.5rem 0;
            margin-top: 3rem;
            font-size: .85rem;
        }

        /* ─── Responsive ─── */
        @media (max-width: 991.98px) {
            .hero { text-align: center; }
            .hero p { margin-left: auto; margin-right: auto; }
            .hero .d-flex { justify-content: center; }
            .hero-image-wrapper { margin-top: 2rem; }
            .about-experience { right: 50%; transform: translateX(50%); bottom: -1.5rem; }
            .features-grid { padding: 1.5rem; }
            .why-stats { padding: 2rem; }
            .cta-section { padding: 3rem 1.5rem; border-radius: 1rem; }
        }
        @media (max-width: 575.98px) {
            .hero h1 { font-size: clamp(2rem, 12vw, 2.8rem); }
            .testimonial-card { padding: 1.5rem; }
        }

        /* ─── Animated Counter ─── */
        .counter-num { font-family: var(--font-display); font-weight: 900; line-height: 1; }

/* ─── Pricing Section ─── */
.pricing-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1.5rem;
    padding: 0 2.5rem 2.5rem;
    border: 2px solid rgba(212,168,85,.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,.04);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -30%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,85,.06) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-ribbon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--ink);
    text-align: center;
    padding: .5rem 0;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 -2.5rem 2rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(212,168,85,.2);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--sage-light);
    color: var(--ink);
    padding: .35rem 1.1rem;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
}

.pricing-amount {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 4rem;
    line-height: 1;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .1rem;
}

.pricing-amount .currency {
    font-size: 1.8rem;
    font-weight: 700;
}

.pricing-amount .period {
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink-soft);
    font-family: var(--font-body);
    margin-left: .2rem;
}

.pricing-features {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 .65rem;
    margin: 1.5rem 0 0;
    text-align: left;
}

.pricing-features tr td {
    font-size: .92rem;
    color: var(--ink);
    line-height: 1.5;
    vertical-align: top;
}

.pricing-features tr td:first-child {
    width: 24px;
    color: var(--gold);
    font-size: 1rem;
    padding-right: .4rem;
}

.pricing-features tr td:nth-child(2) {
    white-space: nowrap;
    padding-right: .6rem;
    font-weight: 600;
}

.pricing-features tr td:last-child {
    color: var(--ink-soft);
    width: 100%;
}

.pricing-note {
    font-size: .82rem;
    color: var(--ink-soft);
    margin-top: 1rem;
}

.pricing-compare {
    max-width: 520px;
    margin: 1.5rem auto 0;
    padding: 1rem 1.5rem;
    background: rgba(212,168,85,.06);
    border-radius: 1rem;
    border: 1px solid rgba(212,168,85,.12);
    font-size: .85rem;
    color: var(--ink-soft);
    text-align: center;
    line-height: 1.6;
}

.pricing-compare strong {
    color: var(--ink);
}

@media (max-width: 575.98px) {
    .pricing-card { padding: 0 1.5rem 2rem; border-radius: 1.25rem; }
    .pricing-ribbon { margin: 0 -1.5rem 1.5rem; }
    .pricing-amount { font-size: 3rem; }
    .pricing-amount .currency { font-size: 1.4rem; }
}
