*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #f97316; --orange-dark: #ea6c0a; --orange-light: #fff7ed;
  --slate-50: #f8fafc; --slate-100: #f1f5f9; --slate-200: #e2e8f0;
  --slate-400: #94a3b8; --slate-500: #64748b; --slate-600: #475569;
  --slate-700: #334155; --slate-800: #1e293b; --slate-900: #0f172a;
}
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif; background: #fff; color: var(--slate-900); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--slate-200); height: 64px; display: flex; align-items: center; padding: 0 20px; }
.nav-inner { max-width: 1280px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { font-size: 22px; font-weight: 900; color: var(--slate-900); text-decoration: none; letter-spacing: -.5px; white-space: nowrap; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-link { font-size: 14px; color: var(--slate-600); text-decoration: none; font-weight: 500; padding: 6px 10px; border-radius: 6px; white-space: nowrap; }
.nav-link:hover { color: var(--slate-900); background: var(--slate-50); }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn { font-size: 14px; color: var(--slate-600); font-weight: 500; background: none; border: none; cursor: pointer; padding: 6px 10px; border-radius: 6px; display: flex; align-items: center; gap: 4px; font-family: inherit; }
.nav-dropdown-btn:hover { color: var(--slate-900); background: var(--slate-50); }
.nav-dropdown-btn svg { width: 12px; height: 12px; transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; left: 0; top: calc(100% + 6px); min-width: 200px; background: #fff; border: 1px solid var(--slate-200); border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.08); padding: 6px; opacity: 0; visibility: hidden; transition: opacity .15s, visibility .15s; z-index: 200; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 8px; padding: 8px 12px; font-size: 13px; color: var(--slate-700); text-decoration: none; border-radius: 6px; }
.nav-dropdown-menu a:hover { background: var(--slate-50); color: var(--slate-900); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-login { font-size: 14px; color: var(--slate-600); text-decoration: none; font-weight: 500; white-space: nowrap; }
.nav-login:hover { color: var(--slate-900); }
.nav-cta { background: var(--orange); color: #fff; font-weight: 700; font-size: 14px; padding: 9px 18px; border-radius: 8px; text-decoration: none; transition: background .15s; white-space: nowrap; }
.nav-cta:hover { background: var(--orange-dark); }

/* ── FOOTER ── */
.site-footer { background: var(--slate-900); color: #475569; padding: 48px 20px 24px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand-logo { font-size: 20px; font-weight: 900; color: #fff; text-decoration: none; letter-spacing: -.5px; display: inline-block; margin-bottom: 10px; }
.footer-brand-logo span { color: var(--orange); }
.footer-brand-desc { font-size: 13px; color: #64748b; line-height: 1.7; max-width: 220px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #475569; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; color: #475569; text-decoration: none; margin-bottom: 8px; }
.footer-col a:hover { color: #94a3b8; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: #334155; }
.footer-bottom a { color: #334155; text-decoration: none; }
.footer-bottom a:hover { color: #475569; }

/* ── HERO ── */
.hero { background: var(--slate-900); padding: 90px 20px 100px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249,115,22,.18) 0%, transparent 70%); pointer-events: none; }
.hero-inner { position: relative; max-width: 780px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.35); color: #fb923c; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px 16px; border-radius: 99px; margin-bottom: 24px; }
.hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; line-height: 1.1; color: #fff; letter-spacing: -.02em; margin-bottom: 20px; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, #f97316, #fb923c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 18px; color: #94a3b8; line-height: 1.7; max-width: 560px; margin: 0 auto 36px; }
.hero-sub strong { color: #cbd5e1; font-weight: 600; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--orange); color: #fff; font-weight: 700; font-size: 16px; padding: 14px 32px; border-radius: 10px; text-decoration: none; display: inline-block; transition: background .15s; box-shadow: 0 4px 20px rgba(249,115,22,.35); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { color: var(--slate-600); font-weight: 500; font-size: 15px; padding: 14px 24px; border-radius: 10px; text-decoration: none; display: inline-block; border: 1px solid var(--slate-200); transition: border-color .15s; }
.btn-secondary:hover { border-color: var(--slate-400); }
.btn-lg { font-size: 17px; padding: 16px 36px; }

/* ── PAGE HERO (light) ── */
.page-hero { padding: 72px 20px 64px; text-align: center; }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 99px; margin-bottom: 20px; background: var(--orange-light); color: var(--orange); }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 16px; line-height: 1.15; }
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero-sub { font-size: 18px; color: var(--slate-500); max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.page-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── SECTIONS ── */
.section { padding: 80px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-inner-sm { max-width: 840px; margin: 0 auto; }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; text-align: center; }
.section-title { font-size: clamp(24px, 3vw, 38px); font-weight: 900; letter-spacing: -.02em; text-align: center; margin-bottom: 10px; }
.section-sub { text-align: center; color: var(--slate-500); font-size: 16px; max-width: 520px; margin: 0 auto 48px; line-height: 1.7; }
.bg-slate { background: var(--slate-50); }
.bg-dark { background: var(--slate-900); }
.bg-dark .section-title { color: #fff; }
.bg-dark .section-sub { color: #64748b; }
.bg-dark .section-eyebrow { color: #fb923c; }

/* ── GRID CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card { background: #fff; border: 1px solid var(--slate-200); border-radius: 14px; padding: 28px 24px; }
.card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.06); }
.card-icon { font-size: 28px; margin-bottom: 14px; }
.card h3 { font-size: 15px; font-weight: 800; margin-bottom: 7px; }
.card p { font-size: 13px; color: var(--slate-500); line-height: 1.65; }
.card-dark { background: #0f172a; border-color: #1e293b; }
.card-dark h3 { color: #fff; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 20px; align-items: flex-start; position: relative; padding-bottom: 32px; }
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::before { content: ''; position: absolute; left: 19px; top: 44px; bottom: 0; width: 2px; background: rgba(249,115,22,.2); }
.step-num { width: 40px; height: 40px; flex-shrink: 0; background: var(--orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; }
.step-body { padding-top: 8px; }
.step-body h3 { font-size: 16px; font-weight: 800; margin-bottom: 5px; }
.step-body p { font-size: 14px; color: var(--slate-500); line-height: 1.7; }
.bg-dark .step-body h3 { color: #fff; }
.bg-dark .step-body p { color: #64748b; }

/* ── CHECKLIST ── */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; list-style: none; }
.checklist li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; }

/* ── STATS BAND ── */
.stats-band { background: var(--orange); padding: 40px 20px; }
.stats-band-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { }
.stat-number { font-size: 36px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.8); }
.stats-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-num { font-size: 40px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,.8); }

/* ── CTA BAND ── */
.cta-band { background: var(--slate-900); padding: 80px 20px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(249,115,22,.1) 0%, transparent 70%); pointer-events: none; }
.cta-band-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3vw, 38px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 12px; }
.cta-band p { color: #94a3b8; font-size: 16px; margin-bottom: 32px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item { border: 1px solid var(--slate-200); border-radius: 12px; overflow: hidden; background: #fff; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; cursor: pointer; font-size: 14px; font-weight: 700; color: var(--slate-800); user-select: none; gap: 12px; }
.faq-q:hover { background: var(--slate-50); }
.faq-chevron { color: var(--orange); transition: transform .25s; font-size: 18px; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 20px 16px; font-size: 13px; color: var(--slate-500); line-height: 1.8; }

/* ── BLOG ── */
.article-header { max-width: 720px; margin: 0 auto; padding: 60px 20px 0; }
.article-body { max-width: 720px; margin: 0 auto; padding: 32px 20px 60px; }
.article-body h2 { font-size: 22px; font-weight: 800; margin: 32px 0 10px; }
.article-body p { font-size: 15px; color: var(--slate-600); line-height: 1.85; margin-bottom: 16px; }
.article-body ul { margin: 0 0 16px 20px; }
.article-body li { font-size: 15px; color: var(--slate-600); line-height: 1.8; margin-bottom: 6px; }
.article-cta { background: var(--orange-light); border: 1px solid #fed7aa; border-radius: 14px; padding: 24px; display: flex; gap: 20px; align-items: center; margin-top: 40px; flex-wrap: wrap; }
.article-cta p:first-child { font-weight: 700; color: var(--slate-900); margin-bottom: 4px; }
.article-cta p { font-size: 13px; color: var(--slate-500); margin-bottom: 0; }

/* ── BLOG ARTICLE (new) ── */
.blog-article { max-width: 720px; margin: 0 auto; padding: 48px 20px 80px; }
.blog-back { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--slate-400); text-decoration: none; margin-bottom: 32px; }
.blog-back:hover { color: var(--slate-600); }
.blog-tag-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.blog-tag { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 99px; }
.blog-meta { font-size: 12px; color: var(--slate-400); }
.blog-article h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 20px; }
.blog-intro { font-size: 18px; color: var(--slate-500); line-height: 1.7; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--slate-100); }
.blog-article h2 { font-size: 22px; font-weight: 800; margin: 36px 0 12px; }
.blog-article p { font-size: 15px; color: var(--slate-600); line-height: 1.85; margin-bottom: 16px; }
.blog-article ul { margin: 0 0 20px 20px; }
.blog-article li { font-size: 15px; color: var(--slate-600); line-height: 1.8; margin-bottom: 8px; }
.blog-article em { font-style: italic; }
.blog-cta { background: var(--orange-light); border: 1px solid #fed7aa; border-radius: 14px; padding: 24px; display: flex; align-items: center; gap: 20px; margin-top: 48px; flex-wrap: wrap; }
.blog-cta-text { flex: 1; }
.blog-cta-text strong { display: block; font-size: 15px; font-weight: 800; color: var(--slate-900); margin-bottom: 4px; }
.blog-cta-text span { font-size: 13px; color: var(--slate-500); }
.blog-cta-btn { background: var(--orange); color: #fff; font-size: 14px; font-weight: 700; padding: 11px 22px; border-radius: 10px; text-decoration: none; white-space: nowrap; transition: background .15s; }
.blog-cta-btn:hover { background: var(--orange-dark); }
.blog-related { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--slate-100); }
.blog-related-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-400); margin-bottom: 12px; }
.blog-related-link { display: flex; flex-direction: column; gap: 4px; text-decoration: none; }
.blog-related-title { font-size: 16px; font-weight: 700; color: var(--slate-900); transition: color .15s; }
.blog-related-link:hover .blog-related-title { color: var(--orange); }
.blog-related-meta { font-size: 12px; color: var(--slate-400); }

/* ── CONTACT WIDGET ── */
.contact-widget { position: fixed; bottom: 24px; right: 24px; z-index: 999; }
.contact-widget-btn { display: flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; font-size: 14px; font-weight: 700; padding: 12px 18px; border-radius: 99px; text-decoration: none; box-shadow: 0 4px 20px rgba(249,115,22,.4); transition: background .15s, transform .1s; }
.contact-widget-btn:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } .footer-grid { grid-template-columns: 1fr 1fr; } .stats-band-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .cards-grid, .cards-grid-2, .stats-grid, .stats-band-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .section { padding: 56px 16px; }
  .page-hero { padding: 52px 16px 44px; }
  .blog-article { padding: 32px 16px 60px; }
}
