@import url('./theme.css');

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ─── TYPOGRAPHY ─────────────────────────────────────── */
        .mono {
            font-family: 'JetBrains Mono', monospace;
        }

        .gold-text {
            background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }



        /* ─── LAYOUT ─────────────────────────────────────────── */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .container-sm {
            max-width: 720px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ─── NAV ────────────────────────────────────────────── */
        nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--glass);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--border-primary);
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            background: var(--yellow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 700;
            color: var(--black);
            font-size: 16px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
        }

        .logo-name {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.04em;
        }

        .logo-name span {
            color: var(--gold);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            transition: color 0.2s, letter-spacing 0.2s;
            letter-spacing: -0.01em;
        }

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

        .btn-nav {
            background: var(--yellow);
            color: var(--black) !important;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 800 !important;
            font-size: 13px !important;
            box-shadow: 0 4px 12px rgba(250, 204, 21, 0.2);
            transition: transform 0.2s, box-shadow 0.2s !important;
            white-space: nowrap;
        }

        .btn-nav:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

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

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: transform 0.3s, opacity 0.3s;
            display: block;
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 4px;
            padding: 12px 20px 20px;
            background: var(--bg-primary);
            border-top: 1px solid var(--border-primary);
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-primary);
            transition: color 0.2s;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-menu a:hover {
            color: var(--gold);
        }

        .mobile-menu a.menu-priority {
            color: var(--gold-dark);
            font-weight: 800;
        }

        .mobile-menu .btn-nav-m {
            margin-top: 8px;
            background: var(--yellow);
            color: var(--black) !important;
            text-align: center;
            padding: 14px;
            border-radius: 10px;
            font-weight: 800 !important;
            font-size: 14px !important;
            border-bottom: none !important;
            box-shadow: 0 4px 12px rgba(250, 204, 21, 0.2);
        }        

        /* ─── HERO ───────────────────────────────────────────── */
        .hero {
            padding: 80px 20px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(180, 138, 20, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-inner {
            max-width: 860px;
            margin: 0 auto;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hero-eyebrow {
            margin-bottom: 16px;
        }

        .hero h1 {
            font-size: clamp(36px, 7vw, 68px);
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -0.03em;
            color: var(--text-primary);
            margin: 0;
            margin-bottom: 24px;
            text-align: center;
        }

        .hero p {
            font-size: clamp(15px, 2vw, 17px);
            color: var(--text-secondary);
            max-width: 620px;
            margin: 0 auto 40px;
            line-height: 1.8;
            font-weight: 500;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .stat-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #FFFFFF;
            border: 1px solid #F1F5F9;
            border-radius: 100px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.2s;
        }

        .stat-pill:hover {
            border-color: #FACC15;
            box-shadow: 0 4px 12px rgba(250, 204, 21, 0.15);
        }

        .stat-pill .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #FACC15;
            flex-shrink: 0;
        }

        .hero-cta {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .hero-assist {
            max-width: 560px;
            margin: 0 auto 30px;
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.65;
        }

        .hero-proof {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            margin-bottom: 38px;
        }

        .hero-proof-item {
            text-align: left;
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid var(--border-primary);
            border-radius: 14px;
            padding: 16px 18px;
            box-shadow: var(--shadow-sm);
        }

        .hero-proof-item strong {
            display: block;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .hero-proof-item span {
            display: block;
            color: var(--text-secondary);
            font-size: 13px;
            line-height: 1.6;
        }

        .btn-primary {
            background: #FACC15;
            color: #000000;
            padding: 16px 40px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 16px;
            text-decoration: none;
            border: none;
            box-shadow: 0 8px 30px rgba(250, 204, 21, 0.4);
            transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
            cursor: pointer;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(250, 204, 21, 0.5);
            opacity: 0.95;
        }

        .btn-primary:active {
            transform: translateY(0px);
        }

        .btn-secondary {
            background: var(--bg-card);
            color: var(--text-primary);
            padding: 16px 36px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 16px;
            text-decoration: none;
            border: 1px solid var(--border-primary);
            transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
            box-shadow: var(--shadow-sm);
        }

        .btn-secondary:hover {
            background: var(--white);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .hero-image {
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-primary);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
            background: var(--bg-card);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            object-position: center top;
            transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hero-image:hover img {
            transform: scale(1.04);
        }

        .hero-image figcaption {
            padding: 14px 18px 16px;
            border-top: 1px solid var(--border-primary);
            color: var(--text-secondary);
            font-size: 13px;
            line-height: 1.6;
            text-align: left;
        }

        /* ─── LOGO BAR ───────────────────────────────────────── */
        .logo-bar {
            padding: 28px 20px;
            border-top: 1px solid var(--border-primary);
            border-bottom: 1px solid var(--border-primary);
            background: var(--bg-secondary);
            text-align: center;
        }

        .logo-bar p {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .logo-bar-items {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .logo-bar-tag {
            padding: 6px 14px;
            background: var(--bg-card);
            border: 1px solid var(--border-primary);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-secondary);
            letter-spacing: 0.05em;
            box-shadow: var(--shadow-sm);
        }

        /* ─── BENEFITS ───────────────────────────────────────── */
        .section {
            padding: 96px 20px;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-eyebrow {
            display: inline-block;
            background: rgba(250, 204, 21, 0.12);
            border: 1px solid rgba(250, 204, 21, 0.35);
            color: #B45309;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 100px;
            font-family: 'JetBrains Mono', monospace;
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-size: clamp(28px, 5vw, 44px);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin: 0;
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 540px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .hidden {
            display: none !important;
        }

        .story-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 24px;
        }

        .story-card {
            background: var(--bg-card);
            border: 1px solid var(--border-primary);
            border-radius: 18px;
            padding: 30px;
            box-shadow: var(--shadow-sm);
        }

        .story-card--accent {
            background: linear-gradient(180deg, rgba(250, 204, 21, 0.08) 0%, var(--bg-card) 100%);
            border-color: rgba(250, 204, 21, 0.28);
        }

        .story-card h3 {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .story-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        .story-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .story-list li {
            position: relative;
            padding-left: 18px;
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .story-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--yellow-dark);
        }

        .story-list--tight {
            gap: 10px;
        }

        .story-list strong {
            color: var(--text-primary);
        }

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

        @media (max-width: 1024px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

        .benefit-card {
            background: #FFFFFF;
            border: 1px solid #F1F5F9;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
        }

        .benefit-card:hover {
            border-color: #FACC15;
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .benefit-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(180, 138, 20, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 20px;
        }

        .benefit-card h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .benefit-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .benefit-card .badge {
            display: inline-block;
            margin-top: 20px;
            background: #FACC15;
            color: #000000;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 4px;
        }

        /* ─── HOW IT WORKS ───────────────────────────────────── */
        .features-list {
            display: flex;
            flex-direction: column;
            gap: 80px;
        }

        .feature-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
        }

        .feature-number {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
            font-family: 'JetBrains Mono', monospace;
        }

        .feature-row h3 {
            font-size: clamp(22px, 3.5vw, 30px);
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .feature-row p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 24px;
        }

        .feature-result {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: rgba(180, 138, 20, 0.06);
            border: 1px solid rgba(180, 138, 20, 0.15);
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--gold-dark);
        }

        .feature-image {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid var(--border-primary);
            background: var(--bg-card);
            box-shadow: var(--shadow-md);
        }

        .feature-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .feature-image:hover img {
            transform: scale(1.04);
        }

        .flow-visuals-header {
            margin-top: 88px;
        }

        /* ─── SECTION EYEBROW ───────────────────────────────── */


        /* ─── VISUALISATION ──────────────────────────────────── */
        .viz-section {
            padding: 96px 20px;
        }

        .viz-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 8px;
        }

        .viz-card {
            background: var(--bg-card);
            border: 1px solid var(--border-primary);
            border-radius: 20px;
            padding: 36px;
            box-shadow: var(--shadow-sm);
            transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .viz-card:hover {
            border-color: var(--yellow);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(250, 204, 21, 0.14);
        }

        .viz-media {
            margin-bottom: 24px;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-primary);
            background: var(--bg-secondary);
            box-shadow: var(--shadow-sm);
        }

        .viz-media img {
            width: 100%;
            display: block;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            object-position: center top;
            transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .viz-media:hover img {
            transform: scale(1.04);
        }

        .viz-media figcaption {
            padding: 12px 16px 14px;
            border-top: 1px solid var(--border-primary);
            color: var(--text-secondary);
            font-size: 13px;
            line-height: 1.6;
        }

        .image-hover-overlay {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: min(4vw, 32px);
            background: rgba(2, 6, 23, 0.82);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            z-index: 1500;
            transition: opacity 0.2s ease, visibility 0.2s ease;
        }

        .image-hover-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .image-hover-overlay img {
            width: auto;
            max-width: min(94vw, 1800px);
            max-height: 90vh;
            height: auto;
            border-radius: 14px;
            border: 1px solid rgba(248, 250, 252, 0.25);
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
            transform: scale(0.985);
            transition: transform 0.2s ease;
        }

        .image-hover-overlay.active img {
            transform: scale(1);
        }

        @media (hover: hover) and (pointer: fine) {
            .image-hover-source {
                cursor: zoom-in;
            }
        }

        .viz-card-icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: rgba(250, 204, 21, 0.1);
            border: 1px solid rgba(250, 204, 21, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 20px;
            flex-shrink: 0;
        }

        .viz-card-body {
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
        }

        .viz-badge {
            display: inline-block;
            background: var(--yellow);
            color: var(--black);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 4px;
            width: fit-content;
        }

        .viz-card h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            line-height: 1.25;
        }

        .viz-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .viz-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin: 4px 0;
        }

        .viz-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .viz-check {
            color: var(--yellow-dark);
            font-size: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* ─── PRIVACY ────────────────────────────────────────── */
        .privacy-section {
            padding: 96px 20px;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .privacy-section-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .privacy-heading {
            font-size: clamp(28px, 5vw, 44px);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-top: 14px;
            margin-bottom: 16px;
            line-height: 1.15;
        }

        .privacy-subtext {
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
            color: var(--text-secondary);
            font-size: 17px;
        }

        .privacy-trust-bar {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 40px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-strong);
            border-radius: 100px;
            padding: 8px 20px;
            font-size: 13px;
            font-weight: 700;
            color: var(--text-secondary);
        }

        .trust-icon {
            font-size: 16px;
        }


        .privacy-section::before {
            content: '';
            position: absolute;
            bottom: -60%;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(180, 138, 20, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .privacy-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 56px;
        }

        .privacy-card {
            padding: 28px;
            background: var(--bg-card);
            border: 1px solid var(--border-primary);
            border-radius: 14px;
            box-shadow: var(--shadow-sm);
            transition: border-color 0.25s, box-shadow 0.25s;
        }

        .privacy-card:hover {
            border-color: var(--yellow);
            box-shadow: 0 12px 40px rgba(250, 204, 21, 0.15);
        }

        .privacy-card-icon {
            font-size: 24px;
            margin-bottom: 14px;
        }

        .privacy-card h4 {
            font-size: 16px;
            font-weight: 800;
            color: var(--yellow-dark);
            margin-bottom: 10px;
        }

        .privacy-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.65;
        }

        /* ─── PRICING ────────────────────────────────────────── */
        .pricing-section {
            padding: 96px 20px;
            text-align: center;
            background: var(--bg-secondary);
        }

        .pricing-heading-large {
            font-size: clamp(32px, 5vw, 50px);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.12;
            max-width: 820px;
            margin: 14px auto 16px;
        }

        .pricing-intro {
            color: var(--text-secondary);
            font-size: 17px;
            line-height: 1.75;
            max-width: 600px;
            margin: 0 auto;
        }

        .pricing-card {
            max-width: 500px;
            margin: 56px auto 0;
            background: var(--bg-card);
            border: 1px solid var(--border-primary);
            border-radius: 24px;
            padding: 48px 40px;
            position: relative;
            box-shadow: var(--shadow-md);
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--yellow);
            color: var(--black);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 4px;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
        }

        .pricing-title {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .pricing-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        .pricing-proof {
            margin: -8px 0 28px;
            padding: 14px 16px;
            border-radius: 10px;
            background: rgba(250, 204, 21, 0.08);
            border: 1px solid rgba(250, 204, 21, 0.18);
            color: var(--gold-dark);
            font-size: 14px;
            font-weight: 700;
            line-height: 1.6;
        }

        .pricing-amount {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 4px;
            margin-bottom: 36px;
        }

        .pricing-amount .dollar {
            font-size: 28px;
            font-weight: 800;
            color: var(--yellow-dark);
        }

        .pricing-amount .price {
            font-size: 64px;
            font-weight: 900;
            color: var(--text-primary);
            line-height: 1;
            letter-spacing: -0.04em;
        }

        .pricing-amount .period {
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 36px;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .pricing-features li .check {
            width: 22px;
            height: 22px;
            border-radius: 4px;
            background: var(--yellow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--black);
            flex-shrink: 0;
        }

        .pricing-assist {
            margin-top: 16px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.65;
            text-align: center;
        }

        .nav-signin {
            color: var(--gold-dark);
            text-decoration: none;
            font-weight: 800;
        }

        .nav-signin:hover {
            text-decoration: underline;
        }

        /* Waitlist classes reused for checkout links */
        .btn-waitlist {
            width: 100%;
            padding: 16px 40px;
            border-radius: 8px;
            background: #FACC15;
            color: #000000;
            font-size: 16px;
            font-weight: 800;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 30px rgba(250, 204, 21, 0.4);
            transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
            font-family: 'Plus Jakarta Sans', sans-serif;
            display: inline-block;
        }

        .btn-waitlist:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(250, 204, 21, 0.5);
            opacity: 0.95;
        }

        .btn-waitlist:active {
            transform: translateY(0px);
        }

        .btn-waitlist:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .pricing-footnote {
            margin-top: 16px;
            color: var(--text-muted);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        /* ── 2-tier pricing grid (homepage) ─────────────────────── */
        .pricing-tiers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 860px;
            margin: 48px auto 0;
        }

        .pricing-tier-card {
            background: var(--bg-card);
            border: 1px solid var(--border-primary);
            border-radius: 20px;
            padding: 40px 32px;
            position: relative;
            text-align: left;
            display: flex;
            flex-direction: column;
        }

        .pricing-tier-card--featured {
            border-color: var(--yellow);
            box-shadow: 0 0 0 2px rgba(250,204,21,0.25), var(--shadow-md);
        }

        .pricing-tier-featured-label {
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--yellow);
            color: var(--black);
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 5px 16px;
            border-radius: 4px;
            white-space: nowrap;
        }

        .pricing-tier-badge {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 6px;
        }

        .pricing-tier-badge--pro {
            color: var(--yellow-dark);
        }

        .pricing-tier-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .pricing-tier-amount {
            display: flex;
            align-items: baseline;
            gap: 3px;
            margin-bottom: 8px;
        }

        .pricing-tier-amount .dollar {
            font-size: 22px;
            font-weight: 800;
            color: var(--yellow-dark);
        }

        .pricing-tier-amount .price {
            font-size: 52px;
            font-weight: 900;
            color: var(--text-primary);
            line-height: 1;
            letter-spacing: -0.04em;
        }

        .pricing-tier-amount .period {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .pricing-tier-tagline {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.5;
            border-bottom: 1px solid var(--border-primary);
            padding-bottom: 20px;
        }

        .pricing-tier-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 11px;
            flex: 1;
            margin-bottom: 28px;
        }

        .pricing-tier-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            line-height: 1.45;
        }

        .pricing-tier-features li .check {
            width: 18px;
            height: 18px;
            border-radius: 3px;
            background: var(--yellow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: var(--black);
            flex-shrink: 0;
            margin-top: 1px;
        }

        .btn-tier-cta {
            display: block;
            text-align: center;
            padding: 15px 20px;
            border-radius: 8px;
            background: var(--bg-tertiary);
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
            border: 1px solid var(--border-primary);
            transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
        }

        .btn-tier-cta:hover {
            transform: translateY(-2px);
            background: var(--bg-card);
            box-shadow: var(--shadow-md);
        }

        .btn-tier-cta--pro {
            background: var(--yellow);
            color: var(--black);
            border-color: var(--yellow);
            box-shadow: 0 6px 24px rgba(250,204,21,0.3);
        }

        .btn-tier-cta--pro:hover {
            background: var(--yellow-dark);
            box-shadow: 0 10px 36px rgba(250,204,21,0.4);
        }

        .pricing-trust-strip {
            margin-top: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .pricing-logged-in {
            max-width: 500px;
            margin: 0 auto;
        }

        .success-box {
            padding: 20px;
            background: rgba(212, 160, 23, 0.1);
            border: 1px solid rgba(212, 160, 23, 0.35);
            border-radius: 12px;
            text-align: left;
        }

        .success-box .success-title {
            font-size: 15px;
            font-weight: 800;
            color: var(--gold-dark);
            margin-bottom: 10px;
        }

        .success-box p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ─── FOOTER ─────────────────────────────────────────── */
        footer {
            padding: 48px 20px;
            border-top: 1px solid var(--border-primary);
            background: var(--bg-primary);
            text-align: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        footer p {
            font-size: 12px;
            color: var(--text-muted);
            font-family: 'JetBrains Mono', monospace;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 24px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: color 0.2s;
        }

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

        /* ─── MOBILE ─────────────────────────────────────────── */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding: 48px 16px 40px;
            }

            .hero h1 {
                margin: 18px auto;
                font-size: clamp(32px, 10vw, 48px);
            }

            .hero p {
                font-size: 16px;
                line-height: 1.7;
                margin-bottom: 28px;
            }

            .hero-stats {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
                margin-bottom: 28px;
            }

            .stat-pill {
                justify-content: center;
                text-align: center;
                padding: 10px 14px;
                border-radius: 18px;
                font-size: 13px;
            }

            .hero-proof {
                grid-template-columns: 1fr;
                gap: 10px;
                margin-bottom: 22px;
            }

            .hero-proof-item {
                padding: 14px 14px;
            }

            .feature-row {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .feature-row .feature-image {
                order: -1;
            }

            .section {
                padding: 52px 16px;
            }

            .pricing-card {
                margin-top: 42px;
                padding: 34px 18px 24px;
                border-radius: 20px;
            }

            .pricing-tiers-grid {
                grid-template-columns: 1fr;
                max-width: 460px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
                gap: 10px;
                margin-bottom: 16px;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
                padding: 15px 18px;
            }

            .hero-assist {
                margin-bottom: 20px;
                font-size: 13px;
            }

            .hero-image img,
            .viz-media img {
                aspect-ratio: 4 / 3;
            }

            .hero-image figcaption,
            .viz-media figcaption {
                padding: 11px 13px 12px;
                font-size: 12px;
            }
        }

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

            .story-card,
            .benefit-card,
            .viz-card,
            .privacy-card,
            .faq-item {
                border-radius: 14px;
            }

            .story-card,
            .benefit-card,
            .viz-card {
                padding: 22px;
            }

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

            .privacy-cards {
                grid-template-columns: 1fr;
            }

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

            .privacy-trust-bar {
                gap: 8px;
                margin-top: 28px;
            }

            .flow-visuals-header {
                margin-top: 48px;
            }

            .pricing-heading-large {
                margin: 12px auto 12px;
            }

            .pricing-intro {
                font-size: 15px;
                line-height: 1.65;
            }

            .pricing-title {
                font-size: 20px;
            }

            .pricing-subtitle {
                margin-bottom: 22px;
            }

            .pricing-proof {
                margin: -4px 0 22px;
                padding: 12px 12px;
                font-size: 13px;
            }

            .pricing-features {
                gap: 12px;
                margin-bottom: 26px;
            }

            .pricing-features li {
                align-items: flex-start;
                font-size: 14px;
            }

            .pricing-assist,
            .pricing-footnote {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .logo-bar {
                padding: 22px 16px;
            }

            .logo-bar-items {
                gap: 8px;
            }

            .logo-bar-tag {
                font-size: 11px;
                padding: 6px 10px;
            }

            .section-header {
                margin-bottom: 42px;
            }

            .section-header p,
            .privacy-subtext,
            .faq-answer p {
                font-size: 14px;
            }

            .faq-question {
                padding: 18px 18px;
                font-size: 15px;
            }

            .faq-item.open .faq-answer {
                padding: 0 18px 18px;
            }

            .faq-answer {
                padding: 0 18px;
            }

            .pricing-badge {
                max-width: calc(100% - 32px);
                white-space: normal;
                line-height: 1.4;
            }

            .pricing-amount .price {
                font-size: 54px;
            }

            .guarantee-badge {
                padding: 10px 12px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 26px;
            }
        }

        /* ─── ANIMATIONS ─────────────────────────────────────── */
        @keyframes shimmer {
            0% {
                left: -100%;
            }

            100% {
                left: 100%;
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-inner>* {
            animation: fadeUp 0.65s ease both;
        }

        .hero-inner>*:nth-child(1) {
            animation-delay: 0.05s;
        }

        .hero-inner>*:nth-child(2) {
            animation-delay: 0.15s;
        }

        .hero-inner>*:nth-child(3) {
            animation-delay: 0.25s;
        }

        .hero-inner>*:nth-child(4) {
            animation-delay: 0.3s;
        }

        .hero-inner>*:nth-child(5) {
            animation-delay: 0.35s;
        }

        .hero-inner>*:nth-child(6) {
            animation-delay: 0.4s;
        }
/* Shared pages using front.css */
.page-shell {
    min-height: calc(100vh - 64px);
    padding: 64px 20px;
    background: var(--bg-secondary);
}

.page-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 40px;
}

.page-card h1 {
    font-size: clamp(30px, 4.5vw, 46px);
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.page-meta {
    color: var(--yellow-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    margin-bottom: 24px;
}

.page-card h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    font-size: 22px;
    color: var(--yellow-dark);
}

.page-card p,
.page-card li {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 16px;
}

.page-card ul {
    padding-left: 22px;
    margin: 12px 0 18px;
}

.page-card li {
    margin-bottom: 10px;
}

.page-card strong {
    color: var(--text-primary);
}

.btn-back {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 14px;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    background: var(--bg-card);
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-back:hover {
    color: var(--yellow-dark);
    border-color: var(--yellow);
    transform: translateY(-1px);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--border-strong);
}

.video-player-wrap {
    width: 100%;
    background: #000;
    line-height: 0;
}

.video-card video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-card .video-meta {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-card .video-title {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    color: var(--text-primary);
    word-break: break-word;
    margin: 0;
}

.video-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .video-card .video-title {
        font-size: 14px;
    }
}

.empty-note {
    border: 1px dashed var(--border-strong);
    border-radius: 12px;
    background: #fffef4;
    color: var(--text-secondary);
    padding: 18px;
    font-size: 15px;
}

.logo-mark--small {
    width: 30px;
    height: 30px;
    font-size: 13px;
}

.logo-name--small {
    font-size: 16px;
}

/* Preserve legacy color token references used in markup */
:root {
    --gold: #B48A14;
    --gold-dark: #8E6A0A;
}

/* ─── ONBOARDING STEPS ───────────────────────────────── */
.onboarding-section {
    padding: 80px 20px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

.steps-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    justify-content: center;
    margin-bottom: 48px;
}

.step-card {
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    border-radius: 16px;
    padding: 32px 28px;
    flex: 1;
    max-width: 300px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.step-card:hover {
    border-color: #FACC15;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--yellow-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.step-icon {
    font-size: 28px;
    margin-bottom: 16px;
    width: 52px;
    height: 52px;
    background: rgba(180, 138, 20, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--yellow-dark);
    font-weight: 700;
    padding: 0 12px;
    flex-shrink: 0;
    margin-top: -10px;
}

.steps-cta {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 4px 0;
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }
}
/* ─── COMPARISON SECTION ─────────────────────────────────────────────────── */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-col {
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-primary);
}

.comparison-col--generic {
    background: var(--bg-card);
    border-color: var(--border-strong);
}

.comparison-col--corestilus {
    background: var(--bg-card);
    border-color: rgba(180, 138, 20, 0.35);
    box-shadow: 0 4px 24px rgba(180, 138, 20, 0.08);
}

.comparison-col-header {
    margin-bottom: 24px;
}

.comparison-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
}

.comparison-label--bad {
    background: #FEE2E2;
    color: #991B1B;
}

.comparison-label--good {
    background: var(--yellow);
    color: var(--black);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comparison-list li {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.comparison-list--bad li {
    color: #6B7280;
}

.comparison-list--good li {
    color: var(--text-secondary);
}

.comparison-list--good li::first-letter {
    color: var(--gold-dark);
}

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

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testimonials-section {
    background: var(--bg-primary);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.testimonial-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 12px 40px rgba(250, 204, 21, 0.12);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--yellow-dark);
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(180, 138, 20, 0.12);
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'JetBrains Mono', monospace;
    border: 1px solid rgba(180, 138, 20, 0.2);
}

.testimonial-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 2px;
}

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

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: rgba(180, 138, 20, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--gold-dark);
}

.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--gold-dark);
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ─── PRICING — GUARANTEE ────────────────────────────────────────────────── */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 16px;
    background: rgba(180, 138, 20, 0.06);
    border: 1px solid rgba(180, 138, 20, 0.2);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-dark);
    text-align: center;
}

.guarantee-icon {
    font-size: 16px;
    flex-shrink: 0;
}
