/* ==========================================================================
   DESIGN SYSTEM — Meu Consagrado Landing Page
   Identidade Visual: Dark Premium com detalhes em Dourado
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
    --gold: #D4AF37;
    --gold-light: #e8c84a;
    --gold-dark: #b5952f;
    --gold-glow: rgba(212, 175, 55, 0.15);
    --gold-glow-strong: rgba(212, 175, 55, 0.3);

    --bg-body: #0a0a0a;
    --bg-section: #0e0e0e;
    --bg-section-alt: #111111;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --bg-overlay: rgba(10, 10, 10, 0.85);

    --border: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.25);

    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #888888;
    --text-dim: #555555;

    --red: #e74c3c;
    --green: #2ecc71;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-card: 0 4px 30px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 20px rgba(212,175,55,0.2);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg-body);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ---------- Utility ---------- */
.gold { color: var(--gold); }
.underline { text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--gold); }

/* ---------- Animations ---------- */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.6); }
    50% { box-shadow: 0 0 0 6px rgba(212,175,55,0); }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

header.scrolled {
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25), 0 0 30px rgba(212, 175, 55, 0.08);
    transition: var(--transition);
}

.logo:hover .logo-img {
    border-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 40px rgba(212, 175, 55, 0.15);
    transform: scale(1.08);
}

/* Footer logo bigger */
footer .logo-img {
    width: 60px;
    height: 60px;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    display: none;
    font-size: 9px;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Nav */
#main-nav {
    display: flex;
    gap: 32px;
}

#main-nav a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

#main-nav a:hover {
    color: var(--text-white);
}

#main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

#main-nav a:hover::after {
    width: 100%;
}

/* Header Buttons */
.header-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: #000;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    box-shadow: 0 6px 25px rgba(212,175,55,0.35);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-white);
}

.btn-outline:hover {
    background: var(--gold-glow);
    border-color: var(--gold);
}

.btn-dot {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.btn-gold .btn-dot { background: #000; }
.btn-outline .btn-dot { background: var(--gold); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-body);
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,175,55,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(212,175,55,0.04) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-body) 0%, #0d0b06 50%, var(--bg-body) 100%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Left */
.hero-left {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212,175,55,0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

.hero-brand {
    display: block;
    font-size: 0.6em;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.hero h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Trust badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

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

/* Hero Right */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-waiter-img {
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212,175,55,0.2);
}

.hero-dashboard-float {
    position: absolute;
    bottom: -30px;
    right: -40px;
    left: auto;
    width: 60%;
    animation: float 6s ease-in-out infinite;
}

.hero-dashboard-img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-card), 0 0 40px rgba(212,175,55,0.1);
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 50px 0;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: -1.5s; }
.stat-item:nth-child(3) { animation-delay: -3s; }
.stat-item:nth-child(4) { animation-delay: -4.5s; }

.stat-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ==========================================================================
   COMPARISON / BENEFÍCIOS
   ========================================================================== */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    gap: 30px;
    align-items: stretch;
}

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.comparison-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.gold-label {
    color: var(--gold);
}

.comparison-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.comparison-list {
    flex-grow: 1;
    margin-bottom: 30px;
}

.comparison-list li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.comparison-list li:last-child { border-bottom: none; }

.comparison-total {
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.total-label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.total-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}

.problem-total .total-value { color: var(--red); }

.total-sub {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
}

/* VS Circle */
.vs-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-weight: 900;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

/* Economy Circle */
.economy-circle {
    width: 200px;
    align-self: center;
    text-align: center;
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    padding: 40px 20px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(212,175,55,0.1);
}

.economy-percent {
    font-size: 42px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.economy-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
    margin-bottom: 12px;
}

.economy-annual {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.economy-annual span {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.economy-annual strong {
    font-size: 18px;
    font-weight: 800;
}

/* ==========================================================================
   FEATURES / FUNCIONALIDADES
   ========================================================================== */
.features-section {
    padding: 100px 0;
    background: var(--bg-body);
}

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

.section-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gold);
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.features-cta {
    text-align: center;
}

/* ==========================================================================
   ROI SECTION
   ========================================================================== */
.roi-section {
    padding: 100px 0;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.roi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
}

.roi-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
}

.roi-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.roi-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.roi-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.roi-value span {
    font-size: 13px;
    font-weight: 500;
}

.roi-card p {
    font-size: 12px;
    color: var(--text-dim);
}

.roi-total-bar {
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.roi-total-bar span {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.roi-total-bar strong {
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
}

.roi-total-bar strong span {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-section);
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
}

.pricing-popular {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(212,175,55,0.06) 0%, var(--bg-card) 40%);
    transform: scale(1.03);
    box-shadow: 0 0 50px rgba(212,175,55,0.1);
}

.pricing-popular:hover {
    transform: scale(1.03) translateY(-4px);
    border-color: var(--gold);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.pricing-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 30px;
}

.currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
    letter-spacing: -2px;
}

.period {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-body);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--border-gold);
}

.faq-item summary {
    padding: 20px 50px 20px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: var(--text-light);
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item[open] summary {
    color: var(--gold);
}

.faq-item p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   CTA BOTTOM
   ========================================================================== */
.cta-bottom {
    padding: 40px 0;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-icon {
    font-size: 36px;
}

.cta-left h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cta-left p {
    font-size: 14px;
    color: var(--text-muted);
}

.cta-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: #050505;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.6;
}

.footer-social {
    color: var(--gold) !important;
    font-weight: 600;
    margin-top: 12px !important;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.footer-col a, .footer-col p {
    font-size: 13px;
    color: var(--text-dim);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-dim);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--text-dim);
    transition: color 0.3s;
}

.footer-legal a:hover { color: var(--gold); }

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

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left { max-width: 100%; }
    .hero-desc { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .trust-badges { justify-content: center; }

    .hero-right {
        order: -1;
    }

    .hero-image-wrapper {
        max-width: 400px;
    }

    .hero-dashboard-float {
        left: -20px;
        bottom: -10px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vs-circle {
        margin: 0 auto;
    }

    .economy-circle {
        margin: 0 auto;
        width: 180px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-popular {
        transform: none;
    }

    .pricing-popular:hover {
        transform: translateY(-4px);
    }

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

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

/* Mobile */
@media (max-width: 768px) {
    #main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

    #main-nav.open {
        display: flex;
    }

    #main-nav a {
        font-size: 22px;
        color: var(--text-white);
    }

    .header-actions { display: none; }
    .mobile-toggle { display: flex; z-index: 1001; }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
    }

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

    .roi-total-bar {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

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

    .cta-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-left {
        flex-direction: column;
    }

    .cta-right {
        flex-direction: column;
        width: 100%;
    }

    .cta-right .btn {
        width: 100%;
    }

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

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

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

    .comparison-card {
        padding: 28px 20px;
    }
}
