/*
Theme Name: WBK Training
Theme URI: https://waffensachkunde-online.de
Description: Premium Lernplattform für die Waffensachkundeprüfung nach § 7 WaffG
Version: 1.0.0
Author: WBK Training
Text Domain: wbk-training
*/

/* ── Custom Properties ────────────────────────────────────────────────── */
:root {
  --white:       #ffffff;
  --bg:          #f5f5f7;
  --bg-dark:     #070d05;
  --text:        #1d1d1f;
  --text-2:      #6e6e73;
  --text-3:      #a1a1a6;
  --olive:       #3b5323;
  --olive-mid:   #4a6630;
  --olive-light: #6b8c54;
  --olive-pale:  #eef2ea;
  --border:      rgba(0,0,0,0.07);
  --border-2:    rgba(0,0,0,0.12);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.05), 0 4px 20px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.08), 0 12px 40px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.10), 0 24px 80px rgba(0,0,0,0.12);
  --shadow-xl:   0 20px 80px rgba(0,0,0,0.18), 0 60px 120px rgba(0,0,0,0.14);
  --r:           16px;
  --r-lg:        24px;
  --r-xl:        32px;
  --ease:        cubic-bezier(0.0, 0, 0.2, 1);
  --section-py:  120px;
  --max-w:       1160px;
  --px:          40px;
}

/* ── Reset ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Container ────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--olive); color: #fff;
  border-radius: 100px;
  font-size: .9375rem; font-weight: 600; letter-spacing: .01em;
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-primary:hover { background: var(--olive-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,83,35,.32); }
.btn-primary.btn-lg  { padding: 16px 32px; font-size: 1rem; }
.btn-primary.btn-xl  { padding: 18px 40px; font-size: 1.0625rem; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,.45); color: #fff;
  border-radius: 100px;
  font-size: .9375rem; font-weight: 500;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  transition: border-color .2s, background .2s, transform .2s var(--ease);
}
.btn-outline:hover { border-color: rgba(255,255,255,.85); background: rgba(255,255,255,.12); transform: translateY(-1px); }
.btn-outline.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 14px 24px;
  color: var(--text-2);
  font-size: .9375rem; font-weight: 500; border-radius: 100px;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--text); }

/* ── Scroll animations ────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: .1s; }
.fade-in:nth-child(3) { transition-delay: .2s; }
.fade-in:nth-child(4) { transition-delay: .3s; }
.fade-in:nth-child(5) { transition-delay: .1s; }

/* ── Section commons ──────────────────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 72px; }
.eyebrow { font-size: .8125rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--olive-light); margin-bottom: 14px; }
.section-title { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; line-height: 1.1; letter-spacing: -.025em; color: var(--text); margin-bottom: 18px; }
.section-body { font-size: 1.125rem; line-height: 1.65; color: var(--text-2); max-width: 540px; margin: 0 auto; }

/* ────────────────────────────────────────────────────────────────────── */
/* NAV                                                                     */
/* ────────────────────────────────────────────────────────────────────── */
.wbk-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 60px; padding: 0 var(--px);
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.wbk-nav.scrolled {
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
}
.nav-container { max-width: var(--max-w); margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; }
.nav-logo-text { font-size: 1.05rem; font-weight: 700; letter-spacing: .14em; color: #fff; transition: color .3s; }
.nav-logo-text .dot { color: var(--olive-light); }
.wbk-nav.scrolled .nav-logo-text { color: var(--text); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.8); transition: color .2s; }
.nav-links a:hover { color: #fff; }
.wbk-nav.scrolled .nav-links a { color: var(--text-2); }
.wbk-nav.scrolled .nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-login { padding: 8px 16px; font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.8); transition: color .2s; border-radius: 100px; }
.nav-login:hover { color: #fff; }
.wbk-nav.scrolled .nav-login { color: var(--text-2); }
.wbk-nav.scrolled .nav-login:hover { color: var(--text); }
.nav-cta { padding: 8px 20px; background: var(--olive); color: #fff; border-radius: 100px; font-size: .875rem; font-weight: 600; transition: background .2s, transform .2s; }
.nav-cta:hover { background: var(--olive-mid); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.wbk-nav.scrolled .nav-hamburger span { background: var(--text); }
.nav-mobile { display: none; position: fixed; top: 60px; left: 0; right: 0; background: rgba(255,255,255,.97); backdrop-filter: blur(20px); padding: 12px var(--px) 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; }
.nav-mobile li a { display: block; padding: 14px 0; font-size: 1rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); }
.nav-mobile li:last-child a { border: none; }
.nav-mobile .mob-cta { color: var(--olive) !important; font-weight: 700 !important; }

/* ────────────────────────────────────────────────────────────────────── */
/* HERO                                                                    */
/* ────────────────────────────────────────────────────────────────────── */
.section-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.38) saturate(.55);
  transform: scale(1.06);
  will-change: transform;
}
.hero-bg:not([style*="url"]) {
  background:
    radial-gradient(ellipse at 25% 55%, rgba(59,83,35,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 25%, rgba(59,83,35,.09) 0%, transparent 50%),
    linear-gradient(140deg, #060d04 0%, #0f1a0b 40%, #090e07 70%, #050b03 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,13,4,.15) 0%, rgba(6,13,4,.08) 40%, rgba(6,13,4,.55) 78%, rgba(6,13,4,.92) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 120px var(--px) 100px; max-width: 880px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 100px;
  background: rgba(255,255,255,.05); backdrop-filter: blur(10px);
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.65);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--olive-light); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.25rem); font-weight: 700; line-height: 1.04; letter-spacing: -.03em;
  color: #fff; margin-bottom: 28px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(130deg, #9ed17a 0%, #6ea84e 45%, #b8e49b 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.65; color: rgba(255,255,255,.58); max-width: 620px; margin: 0 auto 48px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 72px; }
.hero-meta { display: flex; justify-content: center; align-items: center; border-top: 1px solid rgba(255,255,255,.1); padding-top: 48px; }
.hero-meta-item { padding: 0 44px; text-align: center; }
.meta-num { display: block; font-size: 2rem; font-weight: 700; letter-spacing: -.025em; color: #fff; line-height: 1; margin-bottom: 5px; }
.meta-label { font-size: .75rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.42); }
.hero-meta-div { width: 1px; height: 42px; background: rgba(255,255,255,.1); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.28); font-size: .6875rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.3)); animation: scroll-anim 2s ease-in-out infinite; }
@keyframes scroll-anim { 0%,100% { opacity: .4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(.55); } }

/* ────────────────────────────────────────────────────────────────────── */
/* FEATURES                                                                */
/* ────────────────────────────────────────────────────────────────────── */
.section-features { padding: var(--section-py) 0; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feat-card {
  background: var(--white); border-radius: var(--r-lg); padding: 40px;
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feat-card.feat-dark { background: linear-gradient(140deg, #0b1609 0%, #182b12 100%); color: #fff; display: flex; flex-direction: column; justify-content: space-between; min-height: 320px; }
.feat-card.feat-dark .feat-icon { background: rgba(107,140,84,.15); color: var(--olive-light); }
.feat-card.feat-dark h3 { color: #fff; }
.feat-card.feat-dark p { color: rgba(255,255,255,.58); }
.feat-card.feat-olive { background: var(--olive-pale); display: flex; flex-direction: column; justify-content: space-between; min-height: 320px; }
.feat-card.feat-olive .feat-icon { background: rgba(59,83,35,.12); color: var(--olive); }
.feat-card-body { flex: 1; }
.feat-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--olive-pale); color: var(--olive); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; flex-shrink: 0; }
.feat-card h3 { font-size: 1.3125rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; color: var(--text); }
.feat-card p  { font-size: .9375rem; line-height: 1.65; color: var(--text-2); }
.feat-visual { height: 100px; border-radius: 10px; margin-top: 24px; }
.feat-visual-lines { background: repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0, rgba(255,255,255,.05) 1px, transparent 1px, transparent 18px), rgba(255,255,255,.02); }
.feat-visual-radar { background: radial-gradient(circle at 30% 60%, rgba(59,83,35,.25) 0%, transparent 60%), var(--olive-pale); }

/* ────────────────────────────────────────────────────────────────────── */
/* HOW IT WORKS                                                            */
/* ────────────────────────────────────────────────────────────────────── */
.section-how { padding: var(--section-py) 0; background: var(--white); }
.steps-wrap { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 0 20px; }
.step { text-align: center; padding: 48px 28px; background: var(--bg); border-radius: var(--r-lg); border: 1px solid var(--border); transition: transform .3s var(--ease), box-shadow .3s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--olive-light); margin-bottom: 20px; }
.step-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--olive-pale); color: var(--olive); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: background .25s, color .25s; }
.step:hover .step-icon { background: var(--olive); color: #fff; }
.step h3 { font-size: 1.3125rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.step p  { font-size: .9375rem; line-height: 1.65; color: var(--text-2); }
.step-arrow { color: var(--olive-light); opacity: .5; }

/* ────────────────────────────────────────────────────────────────────── */
/* STATS                                                                   */
/* ────────────────────────────────────────────────────────────────────── */
.section-stats { padding: var(--section-py) 0; background: linear-gradient(140deg, #080e06 0%, #101e0c 50%, #080e06 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,.05); border-radius: var(--r-lg); overflow: hidden; }
.stat-item { padding: 64px 48px; background: rgba(7,13,5,.75); text-align: center; transition: background .3s; }
.stat-item:hover { background: rgba(59,83,35,.18); }
.stat-row { display: flex; align-items: flex-start; justify-content: center; line-height: 1; margin-bottom: 14px; }
.stat-num { font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 700; letter-spacing: -.045em; color: #fff; }
.stat-suf { font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 700; color: var(--olive-light); padding-top: .2em; }
.stat-label { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.82); margin-bottom: 6px; }
.stat-desc { font-size: .8125rem; color: rgba(255,255,255,.3); }

/* ────────────────────────────────────────────────────────────────────── */
/* MOCKUP                                                                  */
/* ────────────────────────────────────────────────────────────────────── */
.section-mockup { padding: var(--section-py) 0; background: var(--bg); overflow: hidden; }
.section-mockup .section-head { margin-bottom: 56px; }
.mockup-wrap { max-width: 960px; margin: 0 auto; }
.mockup-browser { background: #1c1c1e; border-radius: var(--r-lg); box-shadow: var(--shadow-xl); overflow: hidden; }
.mockup-bar { height: 44px; padding: 0 16px; display: flex; align-items: center; gap: 14px; background: #2c2c2e; border-bottom: 1px solid rgba(255,255,255,.05); }
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }
.mockup-url { flex: 1; text-align: center; font-size: .73rem; font-family: 'SF Mono', 'Fira Code', monospace; color: rgba(255,255,255,.28); }
.mockup-screen { overflow: hidden; }
.dash-layout { display: flex; min-height: 420px; }
.dash-sidebar { width: 176px; flex-shrink: 0; background: #111; padding: 22px 14px; border-right: 1px solid rgba(255,255,255,.04); }
.dash-brand { font-size: .9rem; font-weight: 800; letter-spacing: .14em; color: var(--olive-light); margin-bottom: 28px; padding: 0 8px; }
.dash-nav-item { padding: 8px 10px; margin-bottom: 3px; border-radius: 8px; font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.35); cursor: default; transition: all .2s; }
.dash-nav-item.is-active { background: var(--olive); color: #fff; }
.dash-main { flex: 1; padding: 24px 22px; background: #141414; }
.dash-greeting { font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 18px; }
.dash-progress-card { background: #1e1e1e; border-radius: 12px; padding: 18px; margin-bottom: 14px; border: 1px solid rgba(255,255,255,.05); }
.dash-prog-label { font-size: .7rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.dash-prog-track { height: 5px; background: rgba(255,255,255,.07); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.dash-prog-fill { height: 100%; background: linear-gradient(to right, var(--olive), var(--olive-light)); border-radius: 3px; }
.dash-prog-pct { font-size: 1.25rem; font-weight: 700; color: #fff; text-align: right; }
.dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dash-card { background: #1e1e1e; border-radius: 10px; padding: 14px; border: 1px solid rgba(255,255,255,.05); text-align: center; }
.dash-card-accent { border-color: var(--olive); background: rgba(59,83,35,.18); }
.dash-card-num { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.dash-card-lbl { font-size: .65rem; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .06em; }

/* ────────────────────────────────────────────────────────────────────── */
/* PRICING                                                                 */
/* ────────────────────────────────────────────────────────────────────── */
.section-pricing { padding: var(--section-py) 0; background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 840px; margin: 0 auto; }
.pricing-card { padding: 48px 40px; border-radius: var(--r-xl); border: 1.5px solid var(--border-2); background: var(--bg); position: relative; }
.pricing-card-featured { background: var(--olive); border-color: var(--olive); color: #fff; }
.pricing-badge-top { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 4px 16px; background: var(--text); color: #fff; border-radius: 100px; font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.pricing-tier { font-size: .875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2); margin-bottom: 16px; }
.pricing-card-featured .pricing-tier { color: rgba(255,255,255,.65); }
.pricing-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; }
.pricing-price span { font-size: 3rem; font-weight: 700; letter-spacing: -.03em; color: var(--text); }
.pricing-card-featured .pricing-price span { color: #fff; }
.pricing-price small { font-size: .875rem; color: var(--text-2); font-weight: 500; }
.pricing-card-featured .pricing-price small { color: rgba(255,255,255,.6); }
.pricing-desc { font-size: .9375rem; color: var(--text-2); margin-bottom: 28px; line-height: 1.5; }
.pricing-card-featured .pricing-desc { color: rgba(255,255,255,.7); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: .9375rem; color: var(--text); }
.pricing-card-featured .pricing-features li { color: #fff; }
.pricing-features .feat-muted { color: var(--text-3); }
.pricing-features li svg { flex-shrink: 0; }
.pricing-btn { display: block; text-align: center; padding: 14px 24px; border-radius: 100px; font-size: .9375rem; font-weight: 600; transition: transform .2s var(--ease), box-shadow .2s; }
.pricing-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.pricing-btn-outline { border: 1.5px solid var(--border-2); color: var(--text); }
.pricing-btn-outline:hover { border-color: var(--olive); color: var(--olive); }
.pricing-btn-white { background: #fff; color: var(--olive); }
.pricing-methods { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.pricing-methods span { font-size: .7rem; font-weight: 600; letter-spacing: .04em; padding: 3px 10px; border-radius: 100px; background: rgba(255,255,255,.15); color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.2); }

/* ────────────────────────────────────────────────────────────────────── */
/* CTA                                                                     */
/* ────────────────────────────────────────────────────────────────────── */
.section-cta { padding: var(--section-py) 0; background: var(--bg); }
.cta-inner { text-align: center; max-width: 620px; margin: 0 auto; padding: 80px 56px; background: var(--white); border-radius: var(--r-xl); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.cta-title { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; line-height: 1.08; letter-spacing: -.025em; margin-bottom: 16px; }
.cta-body { font-size: 1rem; color: var(--text-2); line-height: 1.65; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ────────────────────────────────────────────────────────────────────── */
/* FOOTER                                                                  */
/* ────────────────────────────────────────────────────────────────────── */
.wbk-footer { padding: 48px 0 32px; border-top: 1px solid var(--border); background: var(--white); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
.footer-logo { font-size: 1rem; font-weight: 700; letter-spacing: .12em; margin-bottom: 8px; }
.footer-logo span { color: var(--olive); }
.footer-tagline { font-size: .8125rem; color: var(--text-3); max-width: 300px; line-height: 1.55; }
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-links a { font-size: .875rem; color: var(--text-2); transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); text-align: center; font-size: .8125rem; color: var(--text-3); }

/* ────────────────────────────────────────────────────────────────────── */
/* LEGAL PAGES                                                             */
/* ────────────────────────────────────────────────────────────────────── */
.legal-page { padding: 120px 0 120px; min-height: 60vh; }
.legal-container { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.legal-title { font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 40px; color: var(--text); }
.legal-content { color: var(--text); line-height: 1.75; font-size: .9375rem; }
.legal-content h2 { font-size: 1.125rem; font-weight: 700; margin: 2rem 0 .75rem; color: var(--text); }
.legal-content h3 { font-size: 1rem; font-weight: 600; margin: 1.5rem 0 .5rem; color: var(--text); }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul, .legal-content ol { margin: .75rem 0 1rem 1.5rem; }
.legal-content li { margin-bottom: .4rem; }
.legal-content a { color: var(--olive); text-decoration: underline; }
.legal-content strong { font-weight: 600; }

/* ────────────────────────────────────────────────────────────────────── */
/* RESPONSIVE                                                              */
/* ────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps-wrap { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 80px; --px: 20px; }
  .wbk-nav { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card.feat-dark, .feat-card.feat-olive { min-height: auto; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 40px 24px; }
  .hero-meta { flex-direction: column; gap: 20px; }
  .hero-meta-div { width: 40px; height: 1px; }
  .hero-meta-item { padding: 0; }
  .mockup-dots span { width: 10px; height: 10px; }
  .dash-sidebar { display: none; }
  .dash-layout { min-height: 300px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 48px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
