/* ============================================
   Panduan Membangun Tim AI - Landing Page CSS
   ============================================ */

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

:root {
    --teal: #00bcd4;
    --purple: #7c4dff;
    --blue: #4285f4;
    --amber: #ff8f00;
    --bg: #0a0a0a;
    --surface: #141414;
    --elevated: #1e1e1e;
    --white: #ffffff;
    --muted: #a0a0a0;
    --dim: #666;
    --border: rgba(255,255,255,0.06);
    --border-light: rgba(255,255,255,0.08);
    --hero-gradient: linear-gradient(135deg, #00bcd4 0%, #7c4dff 100%);
    --cta-gradient: linear-gradient(135deg, #7c4dff 0%, #4285f4 100%);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--white);
    line-height: 1.7;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
    .animate-in { opacity: 1 !important; transform: none !important; }
}

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

/* Section */
.section { padding: 96px 0; }
@media (max-width: 767px) { .section { padding: 48px 0; } }
@media (min-width: 768px) and (max-width: 1199px) { .section { padding: 64px 0; } }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-subtitle {
    color: var(--muted);
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .section-header h2 { font-size: 1.5rem; }
    .section-header { margin-bottom: 40px; }
}

/* Gradient Text */
.gradient-text {
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================
   Navigation
   ===================== */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--white); font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; }
.logo-icon { font-size: 1.5rem; }
.logo-accent { color: var(--teal); }
.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
    background: var(--hero-gradient); color: var(--white);
    padding: 8px 20px; border-radius: 8px; text-decoration: none;
    font-size: 0.875rem; font-weight: 600; transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,188,212,0.3); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; border-radius: 2px; }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 24px; transform: translateY(-10px); opacity: 0; transition: 0.3s;
}
.mobile-menu.open { display: block; transform: translateY(0); opacity: 1; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { color: var(--muted); text-decoration: none; font-size: 1rem; display: block; padding: 8px 0; }
.mobile-menu a:hover { color: var(--white); }
.mobile-cta {
    background: var(--hero-gradient) !important; color: var(--white) !important;
    padding: 12px 24px !important; border-radius: 8px; text-align: center; font-weight: 600; margin-top: 8px;
}

@media (max-width: 767px) {
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
}

/* =====================
   Hero
   ===================== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 64px;
}
.hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0,188,212,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(124,77,255,0.08) 0%, transparent 50%),
                var(--bg);
    animation: heroBgShift 20s ease infinite alternate;
}
@keyframes heroBgShift {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}
.hero-particles {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.particle {
    position: absolute; width: 3px; height: 3px; border-radius: 50%;
    opacity: 0.3; animation: float 15s infinite ease-in-out;
}
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(15px); }
    50% { transform: translateY(-10px) translateX(-20px); }
    75% { transform: translateY(-40px) translateX(10px); }
}
.hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem; font-weight: 700; line-height: 1.1;
    margin: 20px 0 24px;
}
.hero-subtitle { color: var(--muted); font-size: 1.125rem; max-width: 560px; margin-bottom: 32px; line-height: 1.7; }
.eyebrow-badge {
    display: inline-block; background: rgba(255,143,0,0.15); color: var(--amber);
    padding: 6px 16px; border-radius: 9999px; font-size: 0.8125rem; font-weight: 600;
    border: 1px solid rgba(255,143,0,0.3); letter-spacing: 0.5px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.8125rem; color: var(--muted); }
.hero-trust span { display: flex; align-items: center; gap: 4px; }

/* Hero Visual - Terminal */
.hero-visual { display: flex; flex-direction: column; gap: 24px; }
.terminal-window {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.terminal-header {
    display: flex; align-items: center; gap: 8px; padding: 12px 16px;
    background: var(--elevated); border-bottom: 1px solid var(--border);
}
.terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }
.terminal-title { color: var(--muted); font-size: 0.75rem; font-family: var(--font-mono); margin-left: 8px; }
.terminal-body { padding: 20px; font-family: var(--font-mono); font-size: 0.8125rem; line-height: 2; }
.terminal-line { opacity: 0; color: var(--muted); }
.terminal-line.visible { opacity: 1; }
.terminal-line.success { color: #28c840; }
.hl-teal { color: var(--teal); font-weight: 600; }
.hl-purple { color: var(--purple); font-weight: 600; }
.hl-blue { color: var(--blue); font-weight: 600; }

/* Hero Agent Avatars */
.hero-agents { display: flex; gap: 16px; justify-content: center; }
.agent-avatar {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 12px; background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; opacity: 0; transform: scale(0);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    min-width: 70px;
}
.agent-avatar.visible { opacity: 1; transform: scale(1); }
.agent-avatar[data-color="teal"] { border-color: rgba(0,188,212,0.3); }
.agent-avatar[data-color="purple"] { border-color: rgba(124,77,255,0.3); }
.agent-avatar[data-color="blue"] { border-color: rgba(66,133,244,0.3); }
.agent-avatar span { font-size: 0.6875rem; color: var(--muted); font-weight: 500; }

@media (max-width: 767px) {
    .hero { min-height: auto; padding-top: 100px; padding-bottom: 48px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-trust { font-size: 0.75rem; gap: 12px; }
    .hero-visual { order: -1; }
    .agent-avatar { min-width: 56px; padding: 8px; font-size: 1.5rem; }
}
@media (min-width: 768px) and (max-width: 1199px) {
    .hero-title { font-size: 2.5rem; }
    .hero-grid { gap: 40px; }
}

/* =====================
   Buttons
   ===================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 8px; font-size: 1rem; font-weight: 600;
    text-decoration: none; cursor: pointer; border: none;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
    font-family: var(--font-body);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--hero-gradient); color: var(--white); box-shadow: 0 4px 16px rgba(0,188,212,0.25); }
.btn-primary:hover { box-shadow: 0 8px 32px rgba(0,188,212,0.35); transform: translateY(-2px) scale(1.02); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.btn-white { background: var(--white); color: var(--bg); }
.btn-white:hover { box-shadow: 0 8px 32px rgba(255,255,255,0.2); }
.btn-lg { padding: 16px 32px; font-size: 1.0625rem; }
.btn-xl { padding: 20px 40px; font-size: 1.125rem; }
.btn-block { display: flex; justify-content: center; width: 100%; text-align: center; }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* =====================
   Problem Section
   ===================== */
.problem { background: var(--surface); }
.problem-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.problem-card {
    background: var(--elevated); border: 1px solid var(--border);
    border-left: 3px solid var(--amber); border-radius: 12px;
    padding: 32px 24px; transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.problem-icon { font-size: 2.5rem; margin-bottom: 16px; }
.problem-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.problem-card p { color: var(--muted); font-size: 0.9375rem; }

.scenario-box {
    background: var(--elevated); border: 1px solid var(--border);
    border-radius: 12px; padding: 32px; margin-bottom: 32px;
    border-left: 3px solid var(--amber);
}
.scenario-label { color: var(--amber); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 12px; }
.scenario-highlight { color: var(--amber); font-weight: 600; font-size: 1.125rem; margin-top: 16px; }

.problem-hooks { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.hook {
    background: rgba(255,143,0,0.08); border: 1px solid rgba(255,143,0,0.15);
    padding: 16px 24px; border-radius: 12px; font-size: 0.9375rem; color: var(--muted);
}

@media (max-width: 767px) {
    .problem-cards { grid-template-columns: 1fr; }
    .problem-hooks { flex-direction: column; }
}

/* =====================
   Solution / Benefits
   ===================== */
.solution { background: var(--bg); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 32px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.benefit-icon-wrap {
    width: 56px; height: 56px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; margin-bottom: 20px; transition: transform 0.2s;
}
.benefit-icon-wrap.teal { background: rgba(0,188,212,0.1); border: 1px solid rgba(0,188,212,0.2); }
.benefit-icon-wrap.purple { background: rgba(124,77,255,0.1); border: 1px solid rgba(124,77,255,0.2); }
.benefit-icon-wrap.blue { background: rgba(66,133,244,0.1); border: 1px solid rgba(66,133,244,0.2); }
.benefit-icon-wrap.amber { background: rgba(255,143,0,0.1); border: 1px solid rgba(255,143,0,0.2); }
.benefit-card:hover .benefit-icon-wrap { transform: scale(1.1); }
.benefit-card h3 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 600; margin-bottom: 12px; }
.benefit-card p { color: var(--muted); font-size: 0.9375rem; }

@media (max-width: 767px) { .benefits-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1199px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }

/* =====================
   What You Get
   ===================== */
.whatyouget { background: var(--surface); }
.whatyouget-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }

.product-card {
    background: var(--elevated); border: 1px solid var(--border);
    border-radius: 12px; padding: 24px; margin-bottom: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.product-icon { font-size: 2rem; margin-bottom: 8px; }
.product-card h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 4px; }
.product-card p { color: var(--muted); font-size: 0.8125rem; }
.ebook-card { border-left: 3px solid var(--teal); }
.config-card { border-left: 3px solid var(--purple); margin-left: 12px; }
.agents-card { border-left: 3px solid var(--blue); margin-left: 24px; }
.bonus-card { border-left: 3px solid var(--amber); margin-left: 36px; }

.wyg-details { display: flex; flex-direction: column; gap: 32px; }
.wyg-item h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.wyg-item p { color: var(--muted); margin-bottom: 12px; }
.wyg-item ul { list-style: none; padding: 0; }
.wyg-item li { color: var(--muted); padding: 4px 0; padding-left: 20px; position: relative; font-size: 0.9375rem; }
.wyg-item li::before { content: '→'; position: absolute; left: 0; color: var(--teal); }
.wyg-value { color: var(--teal); font-weight: 600; font-size: 0.9375rem; margin-top: 8px; }

.agent-roles { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.agent-role-tag {
    padding: 6px 14px; border-radius: 9999px; font-size: 0.8125rem; font-weight: 500;
}
.agent-role-tag.ceo { background: rgba(0,188,212,0.1); color: var(--teal); border: 1px solid rgba(0,188,212,0.2); }
.agent-role-tag.pm { background: rgba(124,77,255,0.1); color: var(--purple); border: 1px solid rgba(124,77,255,0.2); }
.agent-role-tag.se { background: rgba(66,133,244,0.1); color: var(--blue); border: 1px solid rgba(66,133,244,0.2); }
.agent-role-tag.research { background: rgba(0,188,212,0.1); color: var(--teal); border: 1px solid rgba(0,188,212,0.2); }
.agent-role-tag.qa { background: rgba(124,77,255,0.1); color: var(--purple); border: 1px solid rgba(124,77,255,0.2); }

/* Value Table */
.value-table {
    margin-top: 64px; background: var(--elevated); border: 1px solid var(--border);
    border-radius: 12px; padding: 40px; text-align: center;
}
.value-table h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 24px; }
.value-grid { max-width: 600px; margin: 0 auto; }
.value-row {
    display: grid; grid-template-columns: 1.5fr 1fr 0.8fr;
    padding: 12px 0; border-bottom: 1px solid var(--border);
    font-size: 0.9375rem; color: var(--muted); text-align: left;
}
.value-row.total { border-bottom: none; font-weight: 700; color: var(--white); border-top: 2px solid var(--teal); padding-top: 16px; }
.value-price { text-align: right; font-weight: 600; }
.value-row.total .value-price { color: var(--teal); }
.value-highlight { margin-top: 24px; font-size: 1.5rem; font-weight: 700; }
.strikethrough { text-decoration: line-through; color: var(--muted); font-size: 1rem; margin-right: 12px; }
.your-price { color: var(--teal); font-size: 2rem; }

@media (max-width: 767px) {
    .whatyouget-grid { grid-template-columns: 1fr; }
    .config-card, .agents-card, .bonus-card { margin-left: 0; }
    .value-row { font-size: 0.8125rem; grid-template-columns: 1.2fr 0.8fr 0.7fr; }
}

/* =====================
   Social Proof
   ===================== */
.socialproof { background: var(--bg); }
.testimonials-carousel { overflow: hidden; margin-bottom: 48px; }
.testimonials-track {
    display: flex; gap: 24px; transition: transform 0.4s var(--ease);
}
.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--surface); border: 1px solid var(--border);
    border-top: 2px solid var(--teal); border-radius: 12px; padding: 32px;
    position: relative;
}
.testimonial-card::before {
    content: '"'; position: absolute; top: 16px; right: 24px;
    font-size: 4rem; color: rgba(0,188,212,0.1); font-family: serif; line-height: 1;
}
.testimonial-stars { margin-bottom: 16px; font-size: 1.125rem; letter-spacing: 2px; }
.testimonial-card blockquote {
    color: var(--muted); font-size: 0.9375rem; font-style: italic;
    margin-bottom: 24px; line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--hero-gradient); display: flex; align-items: center; justify-content: center;
    font-size: 0.875rem; font-weight: 700; color: var(--white);
}
.testimonial-author strong { display: block; font-size: 0.9375rem; }
.testimonial-author span { color: var(--muted); font-size: 0.8125rem; }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: none; cursor: pointer; transition: 0.3s;
}
.dot.active { background: var(--teal); }

.trust-indicators {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.trust-item {
    background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
    padding: 16px; font-size: 0.875rem; color: var(--muted);
}
.trust-item strong { color: var(--white); }

@media (max-width: 767px) {
    .testimonial-card { flex: 0 0 calc(100% - 0px); }
    .trust-indicators { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) and (max-width: 1199px) {
    .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

/* =====================
   Pricing
   ===================== */
.pricing { background: var(--surface); }
.pricing-card {
    max-width: 560px; margin: 0 auto;
    background: var(--elevated); border: 1px solid var(--border);
    border-radius: 16px; padding: 48px; position: relative; overflow: hidden;
    text-align: center;
}
.pricing-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--hero-gradient);
}
.pricing-badge {
    display: inline-block; background: rgba(255,143,0,0.15); color: var(--amber);
    padding: 6px 16px; border-radius: 9999px; font-size: 0.8125rem; font-weight: 600;
    border: 1px solid rgba(255,143,0,0.3); margin-bottom: 24px;
}
.price-old { font-size: 1.5rem; color: var(--muted); text-decoration: line-through; margin-bottom: 8px; display: block; }
.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 12px; }
.currency { font-size: 1.5rem; font-weight: 600; color: var(--muted); }
.price { font-family: var(--font-heading); font-size: 4.5rem; font-weight: 700; line-height: 1; color: var(--white); }
.cents { font-size: 1.5rem; font-weight: 600; color: var(--muted); }
.pricing-subtitle { color: var(--muted); margin-bottom: 24px; font-size: 1rem; }
.pricing-equivalents {
    display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px;
    font-size: 0.8125rem; color: var(--muted);
}
.pricing-equivalents strong { color: var(--teal); }
.pricing-includes {
    list-style: none; text-align: left; margin-bottom: 32px;
    display: flex; flex-direction: column; gap: 12px;
}
.pricing-includes li { font-size: 0.9375rem; color: var(--muted); }
.pricing-guarantee {
    display: flex; align-items: center; gap: 16px;
    background: rgba(0,188,212,0.05); border: 1px solid rgba(0,188,212,0.15);
    border-radius: 12px; padding: 20px; margin-bottom: 16px; text-align: left;
}
.guarantee-icon { font-size: 2rem; flex-shrink: 0; }
.pricing-guarantee strong { font-size: 0.9375rem; display: block; margin-bottom: 4px; }
.pricing-guarantee p { color: var(--muted); font-size: 0.8125rem; }
.pricing-micro { color: var(--dim); font-size: 0.8125rem; }

.pricing-urgency {
    text-align: center; margin-top: 32px; color: var(--amber);
    font-size: 0.9375rem;
}
.pricing-urgency p { margin-bottom: 8px; }

@media (max-width: 767px) {
    .pricing-card { padding: 32px 24px; }
    .price { font-size: 3rem; }
}

/* =====================
   FAQ
   ===================== */
.faq { background: var(--bg); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; background: none; border: none; color: var(--white);
    font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 600;
    cursor: pointer; text-align: left; gap: 16px; transition: color 0.2s;
}
.faq-question:hover { color: var(--teal); }
.faq-chevron { font-size: 1.25rem; transition: transform 0.3s; color: var(--muted); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(90deg); color: var(--teal); }
.faq-item.open .faq-question { color: var(--teal); }
.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; }
.faq-answer p {
    color: var(--muted); font-size: 0.9375rem; padding: 0 0 20px; line-height: 1.7;
}
.faq-answer strong { color: var(--white); }
.faq-item.open { border-left: 3px solid var(--teal); padding-left: 16px; }

/* =====================
   Final CTA
   ===================== */
.final-cta {
    position: relative; overflow: hidden;
    background: var(--hero-gradient);
}
.final-cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0.3) 0%, transparent 70%);
}
.final-cta-content {
    position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto;
}
.final-cta-content h2 {
    font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700;
    line-height: 1.2; margin-bottom: 32px;
}
.white { color: var(--white); }
.final-cta-summary {
    text-align: left; display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 32px; font-size: 1rem;
}
.final-cta-price {
    font-size: 1.5rem; font-weight: 700; margin-bottom: 24px;
}
.final-cta-micro { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-top: 16px; }

@media (max-width: 767px) {
    .final-cta-content h2 { font-size: 1.5rem; }
    .final-cta-summary { font-size: 0.9375rem; }
}

/* =====================
   Footer
   ===================== */
.footer {
    background: var(--bg); border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
    margin-bottom: 48px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; }
.footer-tagline { color: var(--dim); font-size: 0.875rem; max-width: 280px; line-height: 1.6; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: var(--muted); font-size: 1.25rem; text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: var(--teal); }
.footer-col h4 { color: var(--dim); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-trust-badges {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
    padding: 24px 0; border-top: 1px solid var(--border); margin-bottom: 24px;
    font-size: 0.8125rem; color: var(--dim);
}
.footer-bottom {
    text-align: center; color: var(--dim); font-size: 0.8125rem;
    display: flex; justify-content: space-between;
}
@media (max-width: 767px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; }
}

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