/* Reset e Variáveis */
:root {
    --bg-dark: #070B14;
    --bg-darker: #04060B;
    --bg-card: rgba(15, 23, 42, 0.6);
    --bg-card-hover: rgba(30, 41, 59, 0.8);
    
    --accent-gold: #C5A059;
    --accent-gold-hover: #D4B26C;
    --accent-cyan: #00F0FF;
    --accent-cyan-hover: #33F3FF;
    --accent-danger: #ef4444;
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --header-height: 80px;
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Tipografia Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilitários e Estrutura */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.max-width-md {
    max-width: 800px;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.bg-darker { background-color: var(--bg-darker); }
.bg-dark { background-color: var(--bg-dark); }
.bg-gradient {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.highlight-text { color: var(--accent-cyan); }
.highlight-text-gold { color: var(--accent-gold); }
.highlight-text-cyan { color: var(--accent-cyan); }

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.align-center { align-items: center; }

@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 2rem; }
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--accent-cyan);
    color: var(--bg-darker);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-cyan-hover);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-secondary:hover {
    background-color: rgba(197, 160, 89, 0.1);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-nav {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-block { width: 100%; }

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(4, 6, 11, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo i {
    color: var(--accent-cyan);
    font-size: 1.8rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle, .close-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.background-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
}

.background-glow.circle-1 {
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
}

.background-glow.circle-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--bg-darker) 0%, transparent 70%);
    opacity: 0.8;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent-gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Glass Panels & Dashboards */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-glass);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-glass);
}

.dashboard-header .dots {
    display: flex;
    gap: 6px;
}

.dashboard-header .dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-glass);
}
.dashboard-header .dots span:nth-child(1) { background-color: #ef4444; }
.dashboard-header .dots span:nth-child(2) { background-color: #eab308; }
.dashboard-header .dots span:nth-child(3) { background-color: #22c55e; }

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
}

.status-indicator.warning {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Timeline Hero */
.timeline-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.timeline-visual .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    color: var(--text-muted);
}

.timeline-visual .step i {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
}

.timeline-visual .step.active i {
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

.timeline-visual .step.future i {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.timeline-visual .step span { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.timeline-visual .step small { font-size: 0.75rem; }

.timeline-visual .line {
    flex-grow: 1;
    height: 2px;
    background: var(--border-glass);
    margin: 0 1rem;
    position: relative;
    top: -20px;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-card i { font-size: 1.5rem; color: var(--accent-cyan); }
.stat-card span { font-size: 0.8rem; color: var(--text-muted); }
.stat-card strong { font-size: 1rem; color: var(--text-primary); }

/* Glass Cards Genéricos */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* Seções Header */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Mensagem Estratégica */
.strategic-message {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(197, 160, 89, 0.05);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 8px 8px 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.strategic-message i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.strategic-message p { margin: 0; font-size: 1.1rem; }

/* Lista customizada */
.h3-style {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.custom-check-list {
    list-style: none;
}

.custom-check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.custom-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-cyan);
    font-weight: bold;
}

.impact-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.impact-card i {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-top: 0.2rem;
}

.impact-card p { margin: 0; font-size: 1rem; }

.impact-card.emphasize {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--accent-gold);
}
.impact-card.emphasize i { color: var(--accent-gold); }

/* Tabela Comparativa Grid */
.comparison-table {
    margin-top: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(0,0,0,0.5);
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-glass);
}

.table-header .col-2 { color: var(--accent-gold); }
.table-header .col-3 { color: var(--accent-cyan); }

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-glass);
    gap: 1rem;
}

.table-row:last-child { border-bottom: none; }
.table-row:hover { background: rgba(255,255,255,0.02); }

.table-row .col {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.table-row .col-3 { color: var(--text-primary); }

.strategic-alert {
    padding: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
    border-radius: 8px;
    color: #fca5a5;
    font-weight: 500;
}

/* Soluções - Cards */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.sol-icon {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sol-icon i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.solution-card .dor { font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 0.5rem; margin-bottom: 0.5rem; }
.solution-card .ganho { font-size: 0.9rem; color: #a7f3d0; margin-bottom: 0; }

/* Accordion Mestra */
.accordion-wrapper {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover { background: rgba(255,255,255,0.03); }
.accordion-header.active { background: rgba(0, 240, 255, 0.05); border-bottom: 1px solid var(--border-glass); color: var(--accent-cyan); }

.acc-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tag-status {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}
.accordion-header i { transition: transform 0.3s ease; }
.accordion-header.active i { transform: rotate(180deg); }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.acc-inner { padding: 1.5rem; }

.req-list list-style-type: disc;
.req-list {
    padding-left: 1.5rem;
    color: var(--text-secondary);
}
.req-list li { margin-bottom: 0.8rem; }
.req-list li strong { color: var(--text-primary); }
.req-list li em { color: var(--accent-gold); font-size: 0.85rem; font-style: normal; display: inline-block; margin-left: 0.5rem; background: rgba(197,160,89,0.1); padding: 0.1rem 0.5rem; border-radius: 4px; }


/* Comparativo Side */
.comparison-quote-boxes { display: flex; flex-direction: column; gap: 0.5rem; max-width: 600px; margin: 0 auto; align-items: center;}
.c-quote { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.05); padding: 0.5rem 1.5rem; border-radius: 20px; font-size: 0.9rem; }
.c-quote i { color: var(--accent-cyan); }

.side-by-side-comparison {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.comparison-column {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
}

.comparison-column .col-header {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-glass);
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.comparison-column .col-header small { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

.old-prov { opacity: 0.8; }
.new-prov { border-color: var(--accent-gold); box-shadow: 0 0 30px rgba(197, 160, 89, 0.1); position: relative;}
.new-prov .col-header { border-bottom-color: var(--accent-gold); color: var(--accent-gold); }

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--border-glass);
    padding: 0 1rem;
}

.col-list { list-style: none; padding: 0; }
.col-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}
.col-list li:last-child { border-bottom: none; }
.col-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-size: 1.5rem;
    top: 5px;
}
.new-prov .col-list li strong { color: var(--text-primary); }
.new-prov .col-list li::before { color: var(--accent-gold); }

/* Risco Context */
.bg-danger-hint {
    background: radial-gradient(circle at 0% 50%, rgba(239, 68, 68, 0.05) 0%, var(--bg-dark) 50%);
}
.texto-consultivo { font-size: 1.15rem; line-height: 1.8; }
.risk-list { list-style: none; }
.risk-list li { margin-bottom: 1rem; font-size: 1.05rem; display: flex; gap: 1rem; align-items: flex-start; }
.risk-list li i { color: #ef4444; font-size: 1.5rem; margin-top: 0.2rem; }

.premium-callout {
    background: linear-gradient(135deg, rgba(30,41,59,0.9) 0%, rgba(15,23,42,0.9) 100%);
    border-left: 4px solid var(--accent-gold);
    text-align: center;
    padding: 3rem 2rem;
}
.large-icon { font-size: 4rem; margin-bottom: 1rem; }

/* Dossiê */
.dossie-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.d-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}
.d-item i { color: var(--accent-cyan); font-size: 1.2rem;}
.emphasize-gold { color: var(--accent-gold); font-size: 1.25rem; font-weight: 600; }

/* FAQ */
.faq-accordion .faq-item {
    border-bottom: 1px solid var(--border-glass);
}
.faq-accordion .faq-item:last-child { border-bottom: none; }
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question:hover { color: var(--accent-cyan); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p { padding-bottom: 1.5rem; color: var(--text-secondary); }

/* CTA Final */
.cta-section { padding: 4rem 0; }
.form-wrapper {
    background: var(--bg-darker);
    border-radius: 20px;
    padding: 4rem;
    border: 1px solid rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.05);
}
.l-text { font-size: 1.2rem; line-height: 1.7; }
.guarantee-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}
.guarantee-box i { font-size: 2.5rem; color: var(--accent-gold); }
.guarantee-box strong { font-size: 1.1rem; color: var(--text-primary); display: block; margin-bottom: 0.5rem;}
.guarantee-box p { margin: 0; font-size: 0.9rem; }

.premium-form {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
}
.form-title { color: var(--accent-gold); font-size: 1.8rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
}
.gap-sm { gap: 1rem; }
.form-privacy { color: var(--text-muted); opacity: 0.7; }

/* Footer */
.footer {
    background: #020306;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-separator { height: 1px; background: rgba(255,255,255,0.05); margin: 2rem auto; max-width: 400px; }
.copyright { font-size: 0.85rem; color: #64748b; }

/* Animations (Scroll Reveal) */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.active { opacity: 1; transform: translateX(0); }


/* Responsividade de emergência Tabela e Componentes pesados */
@media (max-width: 900px) {
    .table-header { display: none; }
    .table-row {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        background: rgba(255,255,255,0.02);
        margin-bottom: 1rem;
        border-radius: 8px;
        border: 1px solid var(--border-glass);
    }
    .table-row .col { display: flex; flex-direction: column; gap: 0.3rem;}
    .table-row .col::before {
        content: attr(data-label);
        font-weight: bold;
        color: var(--accent-gold);
        font-size: 0.85rem;
    }
    .side-by-side-comparison { flex-direction: column; }
    .comparison-vs { transform: rotate(90deg); padding: 2rem 0; }
    .form-wrapper { padding: 2rem; }
}

@media (max-width: 1024px) {
    .hero-title { font-size: 2.2rem; }
}

/* Mobile Menu */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 1001;
    }
    
    .main-nav.active { right: 0; }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .mobile-menu-toggle, .close-menu-btn { display: block; }
    
    .close-menu-btn {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        backdrop-filter: blur(5px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .mobile-menu-overlay.active { opacity: 1; visibility: visible; }
    
    .hero-container { padding-top: 2rem; }
}
