:root {
    --primary: #7C3AED; /* Violet */
    --primary-dark: #6D28D9;
    --secondary: #DB2777; /* Rose/Pink – WCAG AA safe on white (4.57:1) */
    --accent: #10B981; /* Emerald accent */
    --bg-body: #f8fafc; /* Very light slate */
    --bg-white: #ffffff;
    --text-main: #0f172a; /* Dark slate */
    --text-muted: #5b6b80;
    --shadow-soft: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Screen-reader only (accessibility) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

html {
    background-color: var(--bg-body);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: transparent;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

/* Wave background canvas — safety net (JS also sets inline styles) */
.wave-canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -1 !important;
    pointer-events: none !important;
    display: block !important;
    will-change: transform;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a:not(.btn-nav) {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--primary);
}

/* Burger button — hidden on desktop */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1002;
}
.burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-main);
    border-radius: 2px;
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}
/* Burger animation when open */
header.nav-open .burger span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
header.nav-open .burger span:nth-child(2) {
    opacity: 0;
}
header.nav-open .burger span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.btn-nav {
    background: var(--text-main);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    background: var(--primary);
}

/* Language Dropdown (CSS Only) */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.lang-btn:hover {
    border-color: var(--primary);
}

.lang-btn img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.lang-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%; /* Position directly below */
    background-color: white;
    min-width: 160px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    z-index: 1001;
    overflow: hidden;
    margin-top: 0; /* Remove gap that breaks hover */
    padding-top: 5px; /* Add internal padding instead if needed, or keep clean */
}

.lang-content a {
    color: var(--text-main);
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    min-height: 44px;
    transition: background 0.2s;
}

.lang-content a:hover {
    background-color: #f1f5f9;
    color: var(--primary);
}

.lang-content img {
    width: 20px;
}

.lang-dropdown:hover .lang-content {
    display: block;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0 2rem; /* Compact padding */
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.5) 0%, rgba(245,243,255,0.5) 100%);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #7C3AED, #DB2777);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4);
}


/* Sections */
.section {
    padding: 6rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    z-index: 1;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section p.subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.feature-card[data-step]::before {
    content: attr(data-step);
    font-size: 4rem;
    font-weight: 900;
    color: #f1f5f9;
    margin-bottom: -0.5rem;
    display: block;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    position: relative;
}

.feature-card p {
    color: var(--text-muted);
}

/* ========================================
   FEATURES GRID — Product capabilities
   ======================================== */

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.feat-card {
    flex: 0 0 calc(33.333% - 1.34rem);
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.feat-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.feat-card h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.feat-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feat-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.feat-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ========================================
   PRICING COMPARISON — Feature table
   ======================================== */

.compare-scroll {
    overflow-x: auto;
    margin: 2rem 0 0;
    padding-top: 2.5rem; /* Room for the floating À VIE tag */
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    min-width: 750px;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    overflow: visible;
}

.compare-table th,
.compare-table td {
    padding: 1.15rem 1.4rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

/* Header row */
.compare-feature-col {
    width: 15%;
    background: transparent;
}

.compare-col {
    width: 17%;
    background: #fff;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
    padding: 1.4rem 0.8rem 1rem;
    vertical-align: bottom;
}

.compare-brand {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
    opacity: 0.6;
}

/* Clony Voice column header — elevated card */
.compare-col.compare-clony {
    background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
    color: white;
    font-size: 1.6rem;
    font-weight: 900;
    padding: 2.5rem 1.5rem 1.2rem;
    position: relative;
    letter-spacing: -0.3px;
    width: 22%;
    border-radius: 20px 20px 0 0;
    border: 3px solid var(--primary);
    border-bottom: none;
    z-index: 2;
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.2), 0 -4px 20px rgba(124, 58, 237, 0.15);
}

.compare-lifetime-tag {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.4rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 3px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
    white-space: nowrap;
    z-index: 3;
    animation: tag-glow 3s ease-in-out infinite;
}

@keyframes tag-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5); }
    50% { box-shadow: 0 4px 35px rgba(124, 58, 237, 0.8), 0 0 15px rgba(219, 39, 119, 0.3); }
}

/* Body cells */
.compare-label {
    text-align: left;
    font-weight: 700;
    color: var(--text-main);
    background: #fff;
    white-space: nowrap;
}

.compare-bad {
    color: #dc2626;
    font-weight: 700;
    font-size: 1rem;
}

.compare-bad small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.compare-good {
    font-weight: 800;
    font-size: 1rem;
}

.compare-good small {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Clony Voice column cells — elevated card */
.compare-clony-cell {
    background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
    color: var(--primary);
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    font-size: 1.15rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    box-shadow: -6px 0 15px rgba(124, 58, 237, 0.06), 6px 0 15px rgba(124, 58, 237, 0.06);
}

.compare-clony-cell strong {
    font-size: 2rem;
    display: block;
    background: linear-gradient(135deg, #7C3AED, #DB2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.compare-clony-cell small {
    color: #546478; /* Darker than --text-muted for contrast on #f5f3ff bg (5.5:1) */
}

/* 3-year cost row — dramatic styling */
.compare-3yr {
    font-size: 1.1rem;
    font-weight: 800;
    color: #dc2626;
}

.compare-3yr-clony {
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #7C3AED, #DB2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Update status styling */
.compare-sub-only {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

.compare-muted {
    color: var(--text-muted);
}

.compare-no {
    color: #dc2626;
    font-weight: 600;
}

.compare-cta-row td {
    border-bottom: none;
    padding: 1.5rem 0.8rem;
}

.compare-cta-row .compare-clony-cell {
    border-bottom: 3px solid var(--primary);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.22), -6px 0 15px rgba(124, 58, 237, 0.06), 6px 0 15px rgba(124, 58, 237, 0.06);
}

/* Tagline */
.compare-tagline {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    font-style: italic;
}

/* Dashboard Inputs */
input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 8px;
    color: var(--text-main);
}

/* ========================================
   STATS BANNER
   ======================================== */

.stats-banner {
    background: #1e293b;
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #A78BFA; /* Lighter purple for contrast on dark bg (5.36:1) */
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: 6rem 0;
    background: rgba(255,255,255,0.55);
    position: relative;
    z-index: 1;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-main);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.2s;
}

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

.faq-question .icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

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

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

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-see-all {
    text-align: center;
    margin-top: 2rem;
}

.faq-see-all-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: background 0.2s, color 0.2s;
}

.faq-see-all-link:hover {
    background: var(--primary);
    color: white;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cookie-msg {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.8rem;
    line-height: 1.4;
    flex: 1;
}
.cookie-btns {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-size: 0.85rem;
    min-height: 44px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn--accept {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}
.cookie-btn--decline {
    background: transparent;
    color: #cbd5e1;
    border: 1px solid #475569;
}

@media (max-width: 600px) {
    .cookie-inner { flex-direction: column; text-align: center; }
    .cookie-msg { font-size: 0.75rem; }
}

/* ========================================
   UTILITY CLASSES (replacing inline styles for CSP)
   ======================================== */

/* Buttons */
.btn-cta-sm { font-size: 0.95rem; padding: 0.8rem 1.8rem; }

/* Sections */
.section-light { background: rgba(255,255,255,0.55); }
.section-seo { background: rgba(248,250,252,0.55); padding: 4rem 0; }

/* Specs section */
.specs-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); }
.card-gpu { border-color: var(--primary); background: #F5F3FF; }
.icon-big { font-size: 3rem; margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.nvidia-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: #1a1a1a; color: #76B900; padding: 0.6rem 1.2rem; border-radius: 10px; font-weight: 800; font-size: 1.1rem; letter-spacing: 1px; margin-top: 0.5rem; }
.nvidia-badge svg { width: 24px; height: 24px; fill: #76B900; }
.nvidia-included { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; font-weight: 500; }
.text-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; }
.cpu-compat { margin-top: 2rem; padding: 1rem; background: #f8fafc; border-radius: 8px; }
.cpu-label { color: #BE185D; font-weight: bold; } /* Rose-700 for contrast on #f8fafc bg (5.77:1) */
.cpu-sub { font-size: 0.8rem; color: var(--text-muted); }

/* Use Cases SEO section */
.text-center { text-align: center; }
.seo-title { font-size: 2rem; margin-bottom: 0.5rem; }
.seo-subtitle { color: var(--text-muted); margin-bottom: 2rem; }
.tag-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; max-width: 900px; margin: 0 auto; }
.tag-link { padding: 0.5rem 1rem; background: white; border: 1px solid #e2e8f0; border-radius: 50px; text-decoration: none; color: var(--text-main); font-size: 0.85rem; font-weight: 500; transition: border-color 0.2s, color 0.2s; }
.tag-link:hover { border-color: var(--primary); color: var(--primary); }
.view-all-link { display: inline-block; margin-top: 1.5rem; color: var(--primary); text-decoration: none; font-weight: 600; font-size: 0.95rem; }

/* Footer */
.footer { padding: 4rem 0; text-align: center; color: var(--text-muted); font-size: 0.9rem; border-top: 1px solid #e2e8f0; }
.footer-contact { margin-bottom: 1rem; }
.footer-contact a { color: var(--primary); text-decoration: none; font-weight: 600; }
.footer-disclaimer { margin-top: 1rem; }
.footer-legal-links { margin-top: 0.75rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 0.85rem; font-size: 0.85rem; }
.footer-legal-links a { color: var(--text-muted); text-decoration: underline; }
.footer-cookies { margin-top: 0.5rem; }
.footer-cookies a { color: var(--text-muted); text-decoration: underline; font-size: 0.8rem; }

.legal-strip {
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
    padding: 1.4rem 0 1.8rem;
}

.legal-strip-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    text-align: center;
}

.legal-strip-title {
    margin: 0;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 800;
}

.legal-strip-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
}

.legal-strip-links a {
    color: var(--text-muted);
    text-decoration: underline;
    font-size: 0.9rem;
}

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

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

@media (max-width: 768px) {
    /* ── Burger menu ── */
    .burger { display: block; }
    .logo { font-size: 1.3rem; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        z-index: 1001;
    }
    header.nav-open .nav-links {
        display: flex;
    }
    .nav-links a:not(.btn-nav) {
        font-size: 1.2rem;
    }
    .nav-links .btn-nav {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
    }
    .lang-dropdown { display: inline-block; }

    /* ── Container ── */
    .container { padding: 0 1rem; }

    /* ── Hero ── */
    .hero { padding: 2rem 0 1.5rem; }
    .hero h1 { font-size: 2rem; line-height: 1.15; }
    .hero p { font-size: 1rem; margin-bottom: 1.5rem; }
    .btn-cta { padding: 0.8rem 1.8rem; font-size: 1rem; }

    /* ── Sections ── */
    .section { padding: 3rem 0; }
    .section h2 { font-size: 1.8rem; margin-bottom: 0.75rem; }
    .section p.subtitle { font-size: 1rem; margin-bottom: 2rem; }

    /* ── Grid ── */
    .grid-3 { grid-template-columns: 1fr; }

    /* ── Feature cards ── */
    .feature-card { padding: 1.5rem; }
    .feature-card[data-step]::before { font-size: 3rem; }
    .feature-card h3 { font-size: 1.2rem; }

    /* ── Features grid ── */
    .feat-card { flex: 0 0 calc(50% - 1rem); }
    .feat-card h3 { font-size: 1.15rem; }
    .feat-desc { font-size: 0.9rem; }

    /* ── Stats ── */
    .stats-banner { padding: 2rem 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .stat-item h3 { font-size: 1.8rem; }
    .stat-item p { font-size: 0.85rem; }

    /* ── Pricing comparison ── */
    .compare-table th,
    .compare-table td { padding: 0.8rem 0.6rem; font-size: 0.8rem; }
    .compare-col { font-size: 0.85rem; }
    .compare-col.compare-clony { font-size: 1rem; border-width: 2px; padding: 1.5rem 0.8rem 0.8rem; }
    .compare-clony-cell { border-width: 2px; font-size: 0.95rem; }
    .compare-clony-cell strong { font-size: 1.4rem; }
    .compare-cta-row .compare-clony-cell { border-width: 2px; }
    .compare-lifetime-tag { font-size: 0.7rem; padding: 0.2rem 0.8rem; }
    .compare-tagline { font-size: 0.95rem; }
    .compare-brand { font-size: 0.55rem; }
    .compare-3yr { font-size: 0.9rem; }
    .compare-3yr-clony { font-size: 1rem; }

    /* ── FAQ ── */
    .faq-section { padding: 3rem 0; }
    .faq-section h2 { font-size: 1.8rem; margin-bottom: 2rem; }
    .faq-question { font-size: 0.95rem; padding: 1.2rem 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .hero p { font-size: 0.9rem; }
    .section h2 { font-size: 1.5rem; }
    .faq-section h2 { font-size: 1.5rem; }
    .feat-card { flex: 0 0 100%; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item h3 { font-size: 1.5rem; }
    .compare-table { min-width: 600px; }
    .compare-table th,
    .compare-table td { padding: 0.6rem 0.4rem; font-size: 0.75rem; }
    .compare-col.compare-clony { font-size: 0.9rem; }
    .compare-tagline { font-size: 0.85rem; }
}
