@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #07070F;
  --surface: #0F0F1A;
  --card: #141420;
  --border: #1E1E2E;
  --accent: #FF6B1A;
  --accent2: #E63900;
  --teal: #2DD4BF;
  --text: #F0F0F8;
  --sec: #8888AA;
  --muted: #444466;
  --purple: #A78BFA;
  --green: #4ADE80;
  --yellow: #FBBF24;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; overflow-x: hidden; }

/* ─── INTRO ─── */
#intro-overlay {
  position: fixed; inset: 0; z-index: 9999; background: #07070F;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#intro-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-logo { width: 90px; height: 90px; border-radius: 22px; overflow: hidden; animation: introPop .7s cubic-bezier(.34,1.56,.64,1) both; box-shadow: 0 0 60px rgba(255,107,26,.4); }
.intro-logo img { width: 100%; height: 100%; object-fit: cover; }
.intro-title { font-size: 34px; font-weight: 900; margin-top: 18px; background: linear-gradient(135deg,#FF6B1A,#FFD166); -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: introSlideUp .6s .3s cubic-bezier(.34,1.56,.64,1) both; }
.intro-sub { font-size: 12px; color: var(--sec); margin-top: 6px; animation: introSlideUp .6s .5s ease both; }
.intro-bar { width: 180px; height: 3px; background: var(--border); border-radius: 99px; margin-top: 28px; overflow: hidden; animation: introSlideUp .4s .6s ease both; }
.intro-bar-fill { height: 100%; background: linear-gradient(90deg,#FF6B1A,#FFD166); border-radius: 99px; animation: introBarFill 1.2s .7s ease both; width: 0; }
.intro-mk { font-size: 10px; color: var(--muted); margin-top: 14px; letter-spacing: 2px; text-transform: uppercase; animation: introSlideUp .4s .8s ease both; }
@keyframes introPop { 0%{transform:scale(0);opacity:0} 100%{transform:scale(1);opacity:1} }
@keyframes introSlideUp { 0%{transform:translateY(20px);opacity:0} 100%{transform:translateY(0);opacity:1} }
@keyframes introBarFill { 0%{width:0} 100%{width:100%} }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7,7,15,.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 36px; height: 36px; border-radius: 9px; object-fit: cover; }
.nav-logo-text { font-size: 20px; font-weight: 900; background: linear-gradient(135deg,#fff,var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { color: var(--sec); text-decoration: none; font-size: 13px; font-weight: 600; padding: 7px 12px; border-radius: 8px; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--surface); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-cta { padding: 9px 20px; border-radius: 10px; border: none; background: linear-gradient(135deg,var(--accent),var(--accent2)); color: #fff; font-size: 13px; font-weight: 700; cursor: pointer; transition: all .2s; box-shadow: 0 4px 16px rgba(255,107,26,.3); text-decoration: none; display: inline-flex; align-items: center; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,107,26,.4); }
.nav-hamburger { display: none; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; color: var(--text); cursor: pointer; font-size: 18px; }
.mobile-menu { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px; z-index: 99; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--sec); text-decoration: none; font-size: 14px; font-weight: 600; padding: 12px 16px; border-radius: 10px; display: block; }
.mobile-menu a:hover { background: var(--card); color: var(--text); }

/* ─── LAYOUT ─── */
.page-wrap { padding-top: 64px; min-height: 100vh; }
section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 14px; }
.section-title { font-size: clamp(28px,4vw,44px); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--sec); line-height: 1.7; max-width: 560px; margin-bottom: 52px; }

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 60px 24px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%,rgba(255,107,26,.12),transparent),
              radial-gradient(ellipse 60% 40% at 80% 80%,rgba(45,212,191,.08),transparent);
  pointer-events: none;
}
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,107,26,.1); border: 1px solid rgba(255,107,26,.3); border-radius: 100px; padding: 6px 16px; font-size: 12px; font-weight: 700; color: var(--accent); margin-bottom: 28px; }
.hero h1 { font-size: clamp(36px,6vw,72px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; max-width: 800px; }
.hero h1 span { background: linear-gradient(135deg,var(--accent),var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: clamp(15px,2vw,19px); color: var(--sec); max-width: 560px; line-height: 1.7; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; justify-content: center; }
.stat { text-align: center; }
.stat-num { font-size: 32px; font-weight: 900; background: linear-gradient(135deg,var(--accent),var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 12px; color: var(--sec); font-weight: 600; margin-top: 4px; }

/* ─── BUTTONS ─── */
.btn-primary { padding: 15px 32px; border-radius: 14px; border: none; background: linear-gradient(135deg,var(--accent),var(--accent2)); color: #fff; font-size: 15px; font-weight: 800; cursor: pointer; transition: all .2s; box-shadow: 0 8px 28px rgba(255,107,26,.35); text-decoration: none; display: inline-flex; align-items: center; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(255,107,26,.5); }
.btn-secondary { padding: 15px 32px; border-radius: 14px; border: 1.5px solid var(--border); background: transparent; color: var(--text); font-size: 15px; font-weight: 700; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-flex; align-items: center; }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ─── CARDS ─── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 20px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px; transition: all .3s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--accent),transparent); opacity: 0; transition: opacity .3s; }
.feature-card:hover { border-color: rgba(255,107,26,.3); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,107,26,.1); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.feature-title { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.feature-desc { font-size: 13.5px; color: var(--sec); line-height: 1.7; }

/* ─── BADGES ─── */
.badge { display: inline-block; font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 6px; margin-left: 6px; vertical-align: middle; }
.badge-new { background: rgba(45,212,191,.15); color: var(--teal); border: 1px solid rgba(45,212,191,.3); }
.badge-ai { background: rgba(139,92,246,.15); color: var(--purple); border: 1px solid rgba(139,92,246,.3); }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 20px; }
.pricing-card { background: var(--card); border: 1.5px solid var(--border); border-radius: 24px; padding: 32px 28px; position: relative; transition: all .3s; }
.pricing-card.popular { border-color: var(--accent); background: linear-gradient(160deg,rgba(255,107,26,.08),var(--card)); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,var(--accent),var(--accent2)); color: #fff; font-size: 10px; font-weight: 800; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.plan-name { font-size: 14px; font-weight: 800; color: var(--sec); margin-bottom: 8px; }
.plan-price { font-size: 36px; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.plan-price span { font-size: 16px; color: var(--sec); font-weight: 600; }
.plan-desc { font-size: 12px; color: var(--sec); margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li { font-size: 13px; color: var(--sec); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.plan-features li::before { content: '✓'; color: var(--teal); font-weight: 800; }
.plan-features li.no::before { content: '—'; color: #444; }
.plan-features li.no { opacity: .5; }
.plan-btn { width: 100%; padding: 13px; border-radius: 12px; font-size: 13px; font-weight: 700; cursor: pointer; transition: all .2s; border: none; text-decoration: none; display: block; text-align: center; }
.plan-btn.outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.plan-btn.outline:hover { border-color: var(--accent); color: var(--accent); }
.plan-btn.filled { background: linear-gradient(135deg,var(--accent),var(--accent2)); color: #fff; box-shadow: 0 6px 20px rgba(255,107,26,.3); }
.plan-btn.filled:hover { transform: translateY(-2px); }

/* ─── STEPS ─── */
.steps { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 24px; }
.step { text-align: center; padding: 32px 20px; background: var(--card); border: 1px solid var(--border); border-radius: 20px; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; color: #fff; margin: 0 auto 18px; box-shadow: 0 6px 20px rgba(255,107,26,.35); }
.step-title { font-size: 15px; font-weight: 800; margin-bottom: 10px; }
.step-desc { font-size: 13px; color: var(--sec); line-height: 1.7; }

/* ─── TIMELINE ─── */
.timeline { display: flex; flex-direction: column; }
.timeline-item { display: flex; gap: 24px; }
.timeline-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 48px; }
.timeline-dot { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; box-shadow: 0 4px 16px rgba(255,107,26,.35); }
.timeline-line { width: 2px; flex: 1; background: var(--border); margin: 4px 0; min-height: 40px; }
.timeline-content { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px 24px; margin-bottom: 16px; flex: 1; }
.timeline-title { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.timeline-desc { font-size: 13px; color: var(--sec); line-height: 1.7; }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 18px 0; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text); user-select: none; }
.faq-q:hover { color: var(--accent); }
.faq-a { font-size: 13.5px; color: var(--sec); line-height: 1.8; padding-bottom: 16px; display: none; }
.faq-a.open { display: block; }
.faq-arrow { transition: transform .2s; font-size: 12px; color: var(--sec); }
.faq-arrow.open { transform: rotate(180deg); }

/* ─── REVIEWS ─── */
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px; }
.review-stars { color: #F59E0B; font-size: 16px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--sec); line-height: 1.8; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),var(--teal)); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: #fff; }
.review-name { font-size: 13px; font-weight: 800; }
.review-role { font-size: 11px; color: var(--sec); }

/* ─── CTA BANNER ─── */
.cta-banner { background: linear-gradient(135deg,rgba(255,107,26,.12),rgba(45,212,191,.08)); border: 1px solid rgba(255,107,26,.2); border-radius: 28px; padding: 56px 40px; text-align: center; margin: 0 40px 80px; }
.cta-banner h2 { font-size: 36px; font-weight: 900; margin-bottom: 14px; }
.cta-banner p { color: var(--sec); margin-bottom: 32px; font-size: 16px; }

/* ─── FORM ─── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--sec); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: 12px 16px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; color: var(--text); font-size: 14px; outline: none; font-family: inherit; transition: border-color .2s; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ─── CONSENT (Onay sistemi) ─── */
.consent-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
.consent-item.checked { border-color: var(--teal); background: rgba(45,212,191,.06); }
.consent-check { width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; transition: all .2s; }
.consent-item.checked .consent-check { background: var(--teal); border-color: var(--teal); color: #07070F; }
.consent-link { color: var(--accent); font-weight: 700; cursor: pointer; text-decoration: underline; font-size: 13px; }
.consent-text { font-size: 13px; color: var(--sec); flex: 1; }
.consent-required { font-size: 10px; color: var(--accent); margin-left: 4px; }

/* ─── LEGAL MODAL ─── */
.legal-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.88); z-index: 1000; align-items: flex-end; justify-content: center; padding: 20px; }
.legal-modal-overlay.open { display: flex; }
.legal-modal { background: var(--card); border: 1.5px solid var(--border); border-radius: 20px 20px 0 0; width: 100%; max-width: 680px; max-height: 80vh; display: flex; flex-direction: column; }
.legal-modal-header { padding: 18px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.legal-modal-title { font-size: 16px; font-weight: 800; }
.legal-modal-close { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); color: var(--sec); cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.legal-modal-body { flex: 1; overflow-y: auto; padding: 24px; font-size: 13.5px; color: var(--sec); line-height: 1.9; }
.legal-modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); flex-shrink: 0; }
.legal-modal-scroll-hint { font-size: 11px; color: var(--muted); text-align: center; margin-bottom: 10px; transition: opacity .3s; }
.legal-approve-btn { width: 100%; padding: 14px; border-radius: 12px; border: none; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .3s; }
.legal-approve-btn.disabled { background: var(--border); color: var(--muted); cursor: not-allowed; }
.legal-approve-btn.enabled { background: linear-gradient(135deg,var(--teal),#1ab5a0); color: #07070F; }

/* ─── CONTACT ─── */
.contact-item { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px; display: flex; gap: 14px; align-items: center; text-decoration: none; color: var(--text); transition: border-color .2s; }
.contact-item:hover { border-color: var(--accent); }
.contact-item-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,107,26,.1); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.contact-item-val { font-size: 13px; color: var(--sec); }

/* ─── FOOTER ─── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 48px 40px 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto 36px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-logo img { width: 38px; height: 38px; border-radius: 9px; object-fit: cover; }
.footer-logo-text { font-size: 20px; font-weight: 900; color: var(--accent); }
.footer-desc { font-size: 12px; color: var(--sec); line-height: 1.7; margin-bottom: 6px; }
.footer-ver { font-size: 10px; color: var(--muted); }
.footer-title { font-size: 11px; font-weight: 800; color: var(--text); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--sec); text-decoration: none; font-weight: 600; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 24px; }
.footer-copy { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.footer-copy-text { font-size: 11px; color: var(--sec); }
.footer-warning { background: rgba(255,107,26,.05); border: 1px solid rgba(255,107,26,.15); border-radius: 10px; padding: 10px 16px; text-align: center; font-size: 11px; color: var(--sec); }
.footer-warning strong { color: var(--accent); }

/* ─── WHATSAPP ─── */
.whatsapp-btn { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; font-size: 26px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.5); text-decoration: none; transition: transform .2s; }
.whatsapp-btn:hover { transform: scale(1.1); }

/* ─── TOAST ─── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--teal); color: #07070F; padding: 12px 24px; border-radius: 100px; font-size: 13px; font-weight: 700; opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 9999; }
.toast.show { opacity: 1; }

/* ─── STEP INDICATOR ─── */
.step-indicators { display: flex; align-items: center; margin-bottom: 40px; max-width: 420px; }
.step-ind { display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0; }
.step-ind-num { width: 36px; height: 36px; border-radius: 50%; background: var(--card); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--sec); transition: all .3s; }
.step-ind-label { font-size: 10px; color: var(--sec); font-weight: 600; }
.step-ind.active .step-ind-num { background: linear-gradient(135deg,var(--accent),var(--accent2)); border-color: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(255,107,26,.4); }
.step-ind.active .step-ind-label { color: var(--accent); }
.step-ind-line { flex: 1; height: 2px; background: var(--border); margin: 0 6px 20px; }

/* ─── PAGE HEADER ─── */
.page-header { text-align: center; padding: 80px 24px 40px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 0%,rgba(255,107,26,.1),transparent); pointer-events: none; }
.page-header h1 { font-size: clamp(32px,5vw,56px); font-weight: 900; margin-bottom: 16px; }
.page-header p { font-size: 17px; color: var(--sec); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ─── NEW FEATURE BANNER ─── */
.new-banner { background: linear-gradient(135deg,rgba(139,92,246,.1),rgba(45,212,191,.08)); border: 1px solid rgba(139,92,246,.3); border-radius: 20px; padding: 24px 28px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }
.new-banner-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.new-banner-tag { padding: 8px 14px; border-radius: 10px; font-size: 12px; font-weight: 700; }
.tag-ai { background: rgba(139,92,246,.15); border: 1px solid rgba(139,92,246,.3); color: var(--purple); }
.tag-pwa { background: rgba(45,212,191,.12); border: 1px solid rgba(45,212,191,.3); color: var(--teal); }
.tag-new { background: rgba(255,107,26,.12); border: 1px solid rgba(255,107,26,.3); color: var(--accent); }

/* ─── TABLE ─── */
.comparison-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.comparison-table th { padding: 14px 16px; color: var(--sec); font-weight: 700; border-bottom: 2px solid var(--border); }
.comparison-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--sec); }
.comparison-table tr:nth-child(even) { background: rgba(255,255,255,.015); }
.comparison-table .highlight { background: rgba(255,107,26,.04); }
.comparison-table .sofrim-col { color: var(--teal); font-weight: 800; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  section { padding: 60px 20px; }
  .hero-stats { gap: 28px; }
  .cta-banner { margin: 0 16px 60px; padding: 40px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
