/* ============ RESET & VARIABLES ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --bg: #060f08;
    --bg-card: #0d1710;
    --bg-card-hover: #162b1a;
    --surface: #101d13;
    --border: rgba(102, 187, 106, 0.08);
    --border-hover: rgba(102, 187, 106, 0.22);
    --text: #e6f3e8;
    --text-muted: #8b9e8d;
    --text-subtle: #6e816f;
    --accent: #66BB6A;
    --accent-2: #A5D6A7;
    --accent-3: #FFB74D;
    --accent-4: #90CAF9;
    --accent-5: #EF5350;
    --gradient-1: linear-gradient(135deg, #4CAF50 0%, #66BB6A 50%, #A5D6A7 100%);
    --gradient-2: linear-gradient(135deg, #81C784 0%, #4CAF50 100%);
    --gradient-3: linear-gradient(135deg, #FFB74D 0%, #FF8A65 100%);
    --glow-1: rgba(102, 187, 106, 0.15);
    --glow-2: rgba(165, 214, 167, 0.15);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
}

/* ============ LIGHT THEME ============ */
[data-theme="light"] {
    --bg: #f5f9f6;
    --bg-card: #ffffff;
    --bg-card-hover: #e8f5e9;
    --surface: #f0f7f1;
    --border: rgba(76, 175, 80, 0.12);
    --border-hover: rgba(76, 175, 80, 0.3);
    --text: #1a2e1c;
    --text-muted: #4a6b4d;
    --text-subtle: #6e8f70;
    --glow-1: rgba(76, 175, 80, 0.08);
    --glow-2: rgba(129, 199, 132, 0.08);
}
[data-theme="light"] .bg-grid {
    background-image:
        linear-gradient(rgba(76,175,80,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76,175,80,0.06) 1px, transparent 1px);
}
[data-theme="light"] .bg-orbs .orb { opacity: 0.04; }
[data-theme="light"] nav { background: rgba(245, 249, 246, 0.85); }
[data-theme="light"] nav.scrolled { background: rgba(245, 249, 246, 0.97); }
[data-theme="light"] .hero h1 .gradient {
    background: linear-gradient(135deg, #2E7D32 0%, #388E3C 50%, #4CAF50 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200% 200%; animation: shimmer 5s ease-in-out infinite;
}
[data-theme="light"] .hero-stat .num {
    background: linear-gradient(135deg, #2E7D32 0%, #388E3C 50%, #4CAF50 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
[data-theme="light"] .feature-card { box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
[data-theme="light"] .feature-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
[data-theme="light"] .btn-primary { color: #fff; }
[data-theme="light"] .pricing-card .btn-sm { color: #fff; }
[data-theme="light"] .contact-socials a:hover { color: #fff; }
[data-theme="light"] .whatsapp-float { box-shadow: 0 4px 20px rgba(37,211,102,0.3); }

/* ============ THEME TOGGLE ============ */
.theme-toggle {
    position: fixed; bottom: 90px; right: 24px; z-index: 9999;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--accent); border: 2px solid var(--accent-2);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.4rem; transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(102,187,106,0.4); color: #fff;
}
.theme-toggle:hover { transform: scale(1.15); box-shadow: 0 6px 28px rgba(102,187,106,0.6); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ============ MOTION GRAPHIC ============ */
.page-hero-graphic {
    position: absolute; top: 50%; right: 5%; transform: translateY(-50%);
    width: 200px; height: 200px; opacity: 0.15; pointer-events: none;
    animation: floatGraphic 6s ease-in-out infinite;
}
@keyframes floatGraphic { 0%,100%{transform:translateY(-50%) rotate(0deg)} 50%{transform:translateY(-55%) rotate(5deg)} }
.hero-graphic-inline {
    display: flex; justify-content: center; margin-top: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-graphic-inline svg { width: 280px; height: auto; opacity: 0.8; }

/* ============ BLOG CARDS ============ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.blog-card {
    padding: 28px; border-radius: var(--radius); background: var(--bg-card);
    border: 1px solid var(--border); transition: all 0.4s; overflow: hidden;
}
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.blog-card .blog-meta { font-size: 0.75rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); line-height: 1.4; }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.blog-card .blog-tags { margin-top: 14px; display: flex; gap: 6px; flex-wrap: wrap; }
.blog-card .blog-tag { font-size: 0.68rem; padding: 3px 8px; border-radius: 4px; background: rgba(102,187,106,0.08); color: var(--accent); border: 1px solid rgba(102,187,106,0.12); }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font); background: var(--bg); color: var(--text);
    line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--accent-2); }
img { max-width: 100%; }

/* ============ BACKGROUND ============ */
.bg-grid {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(102,187,106,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102,187,106,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-orbs .orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.1; }
.bg-orbs .orb:nth-child(1) { width: 600px; height: 600px; background: #4CAF50; top: -200px; right: -100px; animation: float1 20s ease-in-out infinite; }
.bg-orbs .orb:nth-child(2) { width: 500px; height: 500px; background: #2E7D32; bottom: -150px; left: -100px; animation: float2 25s ease-in-out infinite; }
.bg-orbs .orb:nth-child(3) { width: 400px; height: 400px; background: #81C784; top: 40%; left: 50%; animation: float3 18s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(-80px,60px)} 66%{transform:translate(40px,-40px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(60px,-80px)} 66%{transform:translate(-40px,40px)} }
@keyframes float3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-100px,80px)} }

/* ============ NAVIGATION ============ */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 12px 40px;
    background: rgba(6, 15, 8, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s;
}
nav.scrolled { background: rgba(6, 15, 8, 0.95); padding: 8px 40px; }
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links > a {
    color: var(--text-muted); font-size: 0.82rem; font-weight: 500;
    position: relative; transition: color 0.3s; padding: 6px 0;
}
.nav-links > a:hover, .nav-links > a.active { color: var(--text); }
.nav-links > a::after, .dropdown-toggle::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gradient-1); transition: width 0.3s; border-radius: 2px; }
.nav-links > a:hover::after, .dropdown:hover .dropdown-toggle::after { width: 100%; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); }

/* ============ DROPDOWNS ============ */
.dropdown { position: relative; }
.dropdown-toggle {
    color: var(--text-muted); font-size: 0.82rem; font-weight: 500;
    position: relative; transition: color 0.3s; padding: 6px 0;
    cursor: pointer; display: inline-flex; align-items: center; gap: 4px;
}
.dropdown-toggle:hover, .dropdown:hover .dropdown-toggle { color: var(--text); }
.dropdown-toggle .caret { font-size: 0.7rem; transition: transform 0.3s; }
.dropdown:hover .caret { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
    min-width: 220px; padding: 8px 0; border-radius: var(--radius-sm);
    background: rgba(13, 23, 16, 0.98); border: 1px solid var(--border-hover);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(102,187,106,0.05);
    opacity: 0; visibility: hidden; transition: all 0.25s ease;
    pointer-events: none; z-index: 1001;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.dropdown-menu a {
    display: block; padding: 10px 20px; font-size: 0.82rem; font-weight: 500;
    color: var(--text-muted); transition: all 0.2s; white-space: nowrap;
}
.dropdown-menu a:hover { color: var(--text); background: rgba(102,187,106,0.08); padding-left: 24px; }
.dropdown-menu a.active { color: var(--accent); }

/* ============ HERO (homepage) ============ */
.hero {
    position: relative; z-index: 1; min-height: 100vh; display: flex;
    align-items: center; justify-content: center; text-align: center;
    padding: 120px 24px 80px;
}
.hero-content { max-width: 1000px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px 6px 8px; border-radius: 100px;
    background: rgba(102,187,106,0.08); border: 1px solid rgba(102,187,106,0.15);
    font-size: 0.82rem; font-weight: 500; color: var(--accent);
    margin-bottom: 28px; animation: fadeInUp 0.8s ease;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 900;
    line-height: 1.1; letter-spacing: -2px; margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 .gradient {
    background: var(--gradient-1); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-size: 200% 200%;
    animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px; line-height: 1.7; animation: fadeInUp 0.8s ease 0.2s both; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.3s both; }
.hero-stats { display: flex; gap: 40px; justify-content: center; margin-top: 64px; animation: fadeInUp 0.8s ease 0.5s both; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2rem; font-weight: 800; letter-spacing: -1px; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat .label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ============ PAGE HERO (sub-pages) ============ */
.page-hero {
    position: relative; z-index: 1; padding: 140px 24px 60px; text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; animation: fadeInUp 0.8s ease; }
.page-hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; animation: fadeInUp 0.8s ease 0.1s both; }
.breadcrumb { margin-bottom: 16px; font-size: 0.82rem; color: var(--text-subtle); animation: fadeInUp 0.8s ease; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============ BUTTONS ============ */
.btn-primary {
    padding: 14px 32px; border-radius: 10px; font-weight: 700; font-size: 1rem;
    background: var(--gradient-1); color: #060f08; border: none; cursor: pointer;
    transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(76,175,80,0.35); }
.btn-secondary {
    padding: 14px 32px; border-radius: 10px; font-weight: 600; font-size: 1rem;
    background: transparent; color: var(--text); border: 1px solid var(--border-hover);
    cursor: pointer; transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(102,187,106,0.06); border-color: var(--accent); }
.btn-sm {
    display: inline-block; padding: 10px 20px; border-radius: var(--radius-sm);
    font-size: 0.85rem; font-weight: 600; background: var(--gradient-1);
    color: #060f08; border: none; cursor: pointer; transition: all 0.3s;
}
.btn-sm:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(76,175,80,0.3); }

/* ============ SECTIONS ============ */
section { position: relative; z-index: 1; padding: 100px 24px; }
.container { max-width: 1280px; margin: 0 auto; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
    color: var(--accent); margin-bottom: 16px;
}
.section-label .line { width: 32px; height: 2px; background: var(--gradient-1); border-radius: 2px; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 650px; line-height: 1.7; margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.text-center .section-label { display: flex; justify-content: center; }
.glow-sep { width: 120px; height: 2px; margin: 0 auto 48px; background: var(--gradient-1); border-radius: 2px; box-shadow: 0 0 20px rgba(76,175,80,0.3); }

/* ============ FEATURE CARDS ============ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.feature-card {
    padding: 32px 28px; border-radius: var(--radius); background: var(--bg-card);
    border: 1px solid var(--border); transition: all 0.4s ease; position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-1); opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 16px 50px rgba(0,0,0,0.3); }
.feature-icon {
    width: 48px; height: 48px; border-radius: 12px; display: flex;
    align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px;
}
.feature-icon.green { background: rgba(102,187,106,0.1); }
.feature-icon.blue { background: rgba(144,202,249,0.1); }
.feature-icon.orange { background: rgba(255,183,77,0.1); }
.feature-icon.red { background: rgba(239,83,80,0.1); }
.feature-icon.purple { background: rgba(186,104,200,0.1); }
.feature-icon.teal { background: rgba(77,208,225,0.1); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.feature-tag {
    display: inline-block; padding: 3px 10px; border-radius: 6px; font-size: 0.7rem;
    font-weight: 600; margin-top: 14px; background: rgba(102,187,106,0.08);
    color: var(--accent); border: 1px solid rgba(102,187,106,0.12);
}
.feature-card a.card-link { display: block; text-decoration: none; color: inherit; }

/* ============ CONTENT SECTIONS (sub-pages) ============ */
.content-section { padding: 80px 24px; position: relative; z-index: 1; }
.content-section h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.content-section p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.content-section ul { list-style: none; margin-bottom: 16px; }
.content-section ul li { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.7; padding-left: 20px; position: relative; }
.content-section ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }

/* ============ STEPS ============ */
.steps-list { display: flex; flex-direction: column; gap: 16px; max-width: 900px; margin: 0 auto; }
.step-item {
    display: flex; align-items: center; gap: 20px; padding: 24px 28px;
    border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border);
    transition: all 0.4s;
}
.step-item:hover { border-color: var(--border-hover); transform: translateX(8px); }
.step-num {
    width: 48px; height: 48px; border-radius: 12px; display: flex;
    align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem;
    flex-shrink: 0; background: rgba(102,187,106,0.15); color: var(--accent);
}
.step-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.step-info p { font-size: 0.85rem; color: var(--text-muted); }

/* ============ PRICING ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.pricing-card {
    padding: 32px 28px; border-radius: var(--radius); background: var(--bg-card);
    border: 1px solid var(--border); text-align: center; transition: all 0.4s;
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price { font-size: 1.8rem; font-weight: 900; color: var(--accent); margin-bottom: 8px; }
.pricing-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item h4 { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 4px; }
.contact-item p { font-size: 0.95rem; color: var(--text-muted); }
.contact-item a { color: var(--accent); }
.contact-socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.contact-socials a {
    padding: 8px 16px; background: var(--surface); border: 1px solid var(--border);
    border-radius: 6px; font-size: 0.82rem; font-weight: 500; color: var(--text-muted);
    transition: all 0.3s;
}
.contact-socials a:hover { background: var(--accent); color: #060f08; border-color: var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 14px 18px; border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit;
    background: var(--bg-card); color: var(--text); transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(102,187,106,0.1);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-subtle); }
.contact-form select { appearance: none; cursor: pointer; }

/* ============ FAQ ============ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    padding: 24px 28px; border-radius: var(--radius); background: var(--bg-card);
    border: 1px solid var(--border); transition: all 0.3s;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.faq-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ============ CTA BANNER ============ */
.cta-banner {
    padding: 80px 40px; border-radius: var(--radius); background: var(--bg-card);
    border: 1px solid var(--border-hover); text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(76,175,80,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; position: relative; }
.cta-banner p { color: var(--text-muted); margin-bottom: 24px; position: relative; }

/* ============ FOOTER ============ */
footer {
    position: relative; z-index: 1; padding: 80px 24px 40px;
    border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; max-width: 1280px; margin: 0 auto 60px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.82rem; color: var(--text-subtle); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--accent); }

/* ============ SCROLL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    nav { padding: 12px 16px; }
    .nav-links { display: none; position: absolute; top: 60px; left: 0; right: 0; background: rgba(6,15,8,0.97); flex-direction: column; padding: 24px; gap: 8px; border-bottom: 1px solid var(--border); }
    .nav-links.active { display: flex; }
    .nav-toggle { display: block; }
    .dropdown-menu {
        position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
        display: none; min-width: unset; background: transparent; border: none;
        box-shadow: none; backdrop-filter: none; padding: 4px 0 4px 16px;
    }
    .dropdown.open .dropdown-menu { display: block; }
    .dropdown-toggle { width: 100%; }
    .nav-links > a, .dropdown-toggle { padding: 8px 0; }
    .hero h1 { font-size: 2rem; letter-spacing: -1px; }
    .hero-stats { gap: 20px; }
    .page-hero h1 { font-size: 1.8rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .step-item { flex-direction: column; text-align: center; }
    .features-grid { grid-template-columns: 1fr; }
}
