@font-face { font-family: "Satoshi Medium"; src: url("fonts/satoshi-medium.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: "Satoshi Black"; src: url("fonts/satoshi-black.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: "Satoshi Bold"; src: url("fonts/satoshi-bold.woff") format("woff"); font-display: swap; }
@font-face { font-family: "Satoshi Regular"; src: url("fonts/satoshi-regular.woff") format("woff"); font-display: swap; }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg-dark: #0F1016;
    --orange: #F54D05;
    --green: #22C55E;
    --green-bg: #DCFCE7;
    --text-white: #ffffff;
    --text-dark: #0F1016;
    --text-body: #555;
    --border-light: #E5E7EB;
}
html { scroll-behavior: smooth; }
body {
    font-family: "Satoshi Medium", "Satoshi Regular", Inter, sans-serif;
    color: var(--text-dark); background: #fff;
    -webkit-font-smoothing: antialiased; line-height: 1.5; overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: opacity 0.2s; }
a:hover { opacity: 0.85; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 50px; }

/* NAVBAR */
.navbar {
    background: var(--bg-dark); padding: 24px 50px;
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--text-white); font-family: "Satoshi Bold", sans-serif; font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links li a {
    color: rgba(255,255,255,0.8); font-size: 14px; font-family: "Satoshi Medium", sans-serif;
    padding: 8px 16px; border-radius: 8px; display: flex; align-items: center; gap: 4px;
}
.nav-links li a:hover { background: rgba(255,255,255,0.08); color: #fff; opacity: 1; }
.has-dropdown > a::after {
    content: ''; display: inline-block; width: 5px; height: 5px;
    border-right: 1.5px solid rgba(255,255,255,0.5); border-bottom: 1.5px solid rgba(255,255,255,0.5);
    transform: rotate(45deg); margin-left: 4px; margin-bottom: 2px;
}
.btn-growth-nav {
    display: flex; align-items: center; gap: 6px;
    background: var(--text-white); color: var(--text-dark);
    padding: 10px 20px; border-radius: 8px;
    font-size: 14px; font-family: "Satoshi Bold", sans-serif;
}
.btn-growth-nav svg { width: 14px; height: 14px; }
.mobile-menu-btn { display: none; color: white; padding: 8px; }
.mobile-menu-btn svg { width: 24px; height: 24px; }

/* HERO */
.cs-hero {
    background: var(--bg-dark); padding: 60px 0 80px;
}
.cs-hero .container { max-width: 900px; }
.cs-badge {
    display: inline-block; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px; border-radius: 100px;
    font-size: 11px; color: var(--text-white); text-transform: uppercase;
    letter-spacing: 1.5px; font-family: "Satoshi Bold", sans-serif; margin-bottom: 20px;
}
.cs-hero h1 {
    font-size: 48px; font-family: "Satoshi Black", sans-serif;
    line-height: 1.1; letter-spacing: -1.5px; color: var(--text-white);
    margin-bottom: 16px; font-style: italic;
}
.cs-hero .subtitle {
    color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.7;
    font-family: "Satoshi Regular", sans-serif; margin-bottom: 28px; max-width: 550px;
}
.btn-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: var(--text-white);
    padding: 16px 32px; border-radius: 4px;
    font-size: 15px; font-family: "Satoshi Bold", sans-serif;
}
.btn-cta:hover { opacity: 1; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(245,77,5,0.3); }
.btn-cta svg { width: 14px; height: 14px; }

.hero-stats {
    display: flex; gap: 40px; margin-top: 40px;
    padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-value {
    font-size: 36px; font-family: "Satoshi Black", sans-serif; color: var(--text-white);
}
.hero-stat-label {
    font-size: 13px; color: rgba(255,255,255,0.4); font-family: "Satoshi Regular", sans-serif;
}

/* METRICS */
.metrics-section { padding: 80px 0; }
.metrics-section .container { max-width: 900px; }
.metrics-section h2 {
    font-size: 36px; font-family: "Satoshi Black", sans-serif;
    font-style: italic; margin-bottom: 12px;
}
.metrics-section > .container > p {
    color: var(--text-body); font-size: 14px; line-height: 1.7;
    font-family: "Satoshi Regular", sans-serif; margin-bottom: 40px; max-width: 600px;
}
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.metric-card {
    background: #F9FAFB; border-radius: 16px; padding: 28px; text-align: center;
}
.metric-value { font-size: 32px; font-family: "Satoshi Black", sans-serif; color: var(--text-dark); margin-bottom: 6px; }
.metric-label { font-size: 13px; color: var(--text-body); font-family: "Satoshi Regular", sans-serif; line-height: 1.5; }

/* CONTENT SECTIONS */
.cs-section { padding: 60px 0; border-top: 1px solid var(--border-light); }
.cs-section .container { max-width: 900px; }
.cs-section .section-number {
    font-size: 12px; color: #999; font-family: "Satoshi Bold", sans-serif;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.cs-section h3 {
    font-size: 28px; font-family: "Satoshi Black", sans-serif;
    font-style: italic; margin-bottom: 16px; line-height: 1.2;
}
.cs-section p {
    color: var(--text-body); font-size: 15px; line-height: 1.8;
    font-family: "Satoshi Regular", sans-serif; margin-bottom: 16px; max-width: 650px;
}

/* STATS BANNER */
.stats-banner {
    background: var(--bg-dark); padding: 60px 0; margin: 40px 0;
}
.stats-banner .container { max-width: 900px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-val { font-size: 32px; font-family: "Satoshi Black", sans-serif; color: var(--text-white); margin-bottom: 4px; }
.stat-desc { font-size: 12px; color: rgba(255,255,255,0.4); font-family: "Satoshi Regular", sans-serif; line-height: 1.5; }

/* FAQ */
.faq-section { padding: 80px 0; }
.faq-section .container { max-width: 900px; }
.faq-badge {
    font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1.5px;
    font-family: "Satoshi Bold", sans-serif; margin-bottom: 12px;
}
.faq-section h2 { font-size: 32px; font-family: "Satoshi Black", sans-serif; margin-bottom: 32px; }
.faq-item { border-bottom: 1px solid #E0E0E0; }
.faq-question {
    display: flex; align-items: center; gap: 12px; width: 100%;
    padding: 20px 0; font-size: 17px; font-family: "Satoshi Bold", sans-serif;
    color: var(--text-dark); text-align: left;
}
.faq-arrow { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s; color: #999; }
.faq-item.active .faq-arrow { transform: rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s; padding: 0 0 0 30px; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 0 20px 30px; }
.faq-answer p { color: #666; font-size: 14px; line-height: 1.8; font-family: "Satoshi Regular", sans-serif; }

/* BOTTOM CTA */
.bottom-cta { padding: 80px 0; text-align: center; }
.bottom-cta h2 { font-size: 38px; font-family: "Satoshi Black", sans-serif; font-style: italic; margin-bottom: 12px; }
.bottom-cta > .container > p { color: var(--text-body); font-size: 14px; margin-bottom: 40px; font-family: "Satoshi Regular", sans-serif; }
.steps-row { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 32px; }
.step-num {
    width: 44px; height: 44px; border-radius: 50%; border: 2px solid #ddd;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-family: "Satoshi Bold", sans-serif; flex-shrink: 0;
}
.step-line { width: 160px; height: 2px; background: #E5E7EB; }
.steps-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; text-align: left; }
.step-card {
    background: #F5F7FF; border-radius: 14px; padding: 24px;
}
.step-card h4 { font-size: 14px; font-family: "Satoshi Bold", sans-serif; margin-bottom: 4px; }
.step-card p { font-size: 13px; color: #666; font-family: "Satoshi Regular", sans-serif; }

/* FOOTER */
.footer {
    background: var(--bg-dark); padding: 60px 50px 32px; color: rgba(255,255,255,0.5);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 36px; }
.footer-brand h4 { color: var(--text-white); font-size: 15px; font-family: "Satoshi Bold", sans-serif; margin-bottom: 16px; }
.footer-brand .connect { font-size: 13px; margin-bottom: 8px; }
.footer-brand a { display: block; color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 4px; font-family: "Satoshi Regular", sans-serif; }
.footer-col h4 { color: var(--text-white); font-size: 14px; font-family: "Satoshi Bold", sans-serif; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 8px; font-family: "Satoshi Regular", sans-serif; }
.footer-col a:hover { color: var(--text-white); opacity: 1; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; font-family: "Satoshi Regular", sans-serif; color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); }
.footer-disclaimer { margin-top: 20px; font-size: 11px; color: rgba(255,255,255,0.15); line-height: 1.6; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar { padding: 16px 20px; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .container { padding: 0 20px; }
    .cs-hero h1 { font-size: 32px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .metrics-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .steps-cards { grid-template-columns: 1fr; }
    .step-line { width: 60px; }
    .footer { padding: 40px 20px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
    .cs-hero h1 { font-size: 26px; }
    .hero-stat-value { font-size: 28px; }
    .metric-value { font-size: 26px; }
    .stat-val { font-size: 26px; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
