/* ── geoeffnet.com — Stylesheet ── */
/* Colors from logo */
:root {
  --brand: #2968A3;
  --brand-dark: #1A4A7A;
  --brand-deep: #0F3259;
  --brand-light: #3B8DD4;
  --accent: #A8D4F0;
  --accent-pale: #D0E8F9;
  --bg-soft: #F4F9FD;
  --white: #FFFFFF;
  --text: #0F2137;
  --muted: #5A7B96;
  --border: #DCE8F1;
  --green: #22C55E;
  --green-bg: #ECFDF5;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
::selection { background: var(--accent); color: var(--brand-dark); }

h1, h2, h3, .heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
}

a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; height: auto; }

/* ── Layout ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all .2s ease; cursor: pointer; border: none;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--brand); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--brand); background: var(--bg-soft); color: var(--brand); }
.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); color: var(--brand); }
.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-ghost { background: none; color: var(--brand); }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all .3s ease; padding: 16px 0;
}
.nav.scrolled {
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); padding: 12px 0;
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
}
.nav-logo { height: 32px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; text-decoration: none; }
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  padding: 10px 24px; background: var(--brand); color: #fff !important;
  border-radius: var(--radius-full); font-size: 14px; font-weight: 600;
}
.nav-cta:hover { background: var(--brand-dark); }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; padding-bottom: 60px; position: relative; overflow: hidden;
  background: linear-gradient(168deg, var(--white) 0%, var(--bg-soft) 50%, rgba(208,232,249,.2) 100%);
}
.hero-bg-1 {
  position: absolute; top: -180px; right: -180px; width: 500px; height: 500px;
  border-radius: 50%; background: var(--accent-pale); opacity: .2; filter: blur(80px);
}
.hero-bg-2 {
  position: absolute; bottom: -80px; left: -120px; width: 350px; height: 350px;
  border-radius: 50%; background: var(--accent); opacity: .1; filter: blur(60px);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; }
.hero h1 { font-size: clamp(32px, 5.5vw, 54px); line-height: 1.08; margin-bottom: 18px; }
.hero h1 span { color: var(--brand); }
.hero-sub { font-size: 17px; line-height: 1.7; color: var(--muted); max-width: 460px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 36px; }
.hero-stat-num { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px; color: var(--brand); }
.hero-stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: var(--radius-full); padding: 6px 14px; font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.badge-green { background: var(--green-bg); border: 1px solid #bbf7d0; color: #166534; }
.badge-green .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

/* ── Widget Preview Card ── */
.widget-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(15,33,55,.1), 0 2px 16px rgba(15,33,55,.04);
  padding: 24px; max-width: 360px; width: 100%; border: 1px solid var(--border);
  animation: float 5s ease-in-out infinite; margin: 0 auto;
}
.widget-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.widget-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.widget-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; }
.widget-sub { font-size: 12px; color: var(--muted); }
.widget-status {
  background: var(--green-bg); border-radius: 10px; padding: 12px 14px;
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.widget-status .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.widget-status-text { font-weight: 600; font-size: 13px; color: #166534; }
.widget-status-time { font-size: 12px; color: #22863a; margin-left: auto; }
.widget-loc { background: var(--bg-soft); border-radius: 10px; padding: 14px; margin-bottom: 14px; }
.widget-loc-label { font-size: 12px; color: var(--muted); margin-bottom: 3px; }
.widget-loc-name { font-weight: 600; font-size: 14px; }
.widget-loc-time { font-size: 12px; color: var(--muted); margin-top: 2px; }
.widget-next-label { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.widget-next-item { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.widget-next-day {
  width: 32px; height: 32px; border-radius: 8px; background: var(--accent-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--brand); font-family: 'Sora', sans-serif;
}
.widget-next-name { font-weight: 600; font-size: 13px; }
.widget-next-time { font-size: 11px; color: var(--muted); }
.widget-footer { text-align: center; margin-top: 14px; font-size: 10px; color: var(--muted); }
.widget-footer span { font-weight: 700; color: var(--brand); }

/* ── Sections ── */
.section { padding: 100px 0; }
.section-label {
  display: inline-block; font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 700; color: var(--brand);
  background: var(--accent-pale); border-radius: var(--radius-full);
  padding: 6px 16px; margin-bottom: 16px;
  letter-spacing: .06em; text-transform: uppercase;
}
.section-title { font-size: clamp(26px, 4vw, 40px); margin-bottom: 16px; }
.section-center { text-align: center; max-width: 640px; margin: 0 auto; }

/* ── Problem Section ── */
.problem-text { font-size: 17px; line-height: 1.75; color: var(--muted); margin-bottom: 40px; }
.problem-text strong { color: var(--text); }
.problem-strike { text-decoration: line-through; color: var(--muted); opacity: .45; }
.problem-box {
  max-width: 760px; margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-soft), rgba(208,232,249,.2));
  border-radius: var(--radius-lg); padding: 36px 32px;
  border: 1px solid var(--border);
  display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: start;
}
.problem-box h3 { font-size: 19px; margin-bottom: 8px; }
.problem-box p { font-size: 15px; line-height: 1.7; color: var(--muted); }
.problem-box p strong { color: var(--brand); }
.problem-phone-icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; background: var(--white); border-radius: 16px; border: 1px solid var(--border);
}

/* ── Benefits ── */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.benefit-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--border); transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(15,33,55,.08); }
.benefit-highlight { border-color: var(--accent); }
.benefit-highlight::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent)); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.benefits-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.benefit-icon { font-size: 28px; margin-bottom: 14px; }
.benefit-card h3 { font-size: 16px; margin-bottom: 8px; font-family: 'Sora', sans-serif; }
.benefit-card p { font-size: 13px; line-height: 1.65; color: var(--muted); }
.benefit-card p strong { color: var(--text); }
.benefit-card code { background: var(--accent-pale); padding: 2px 6px; border-radius: 4px; font-size: 12px; color: var(--brand); }
.benefit-tag {
  display: inline-block; margin-top: 12px; padding: 3px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; background: var(--accent-pale); color: var(--brand);
}

.compare-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
}
.compare-col { padding: 28px; }
.compare-old { background: #FEF2F2; }
.compare-new { background: #ECFDF5; }
.compare-title { font-weight: 700; font-size: 15px; margin-bottom: 16px; font-family: 'Sora', sans-serif; }
.compare-old .compare-title { color: #991B1B; }
.compare-new .compare-title { color: #166534; }
.compare-item { font-size: 13px; line-height: 1.6; color: var(--text); padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.compare-item:last-child { border-bottom: none; }

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(15,33,55,.08); }
.step-num {
  position: absolute; top: -6px; right: 10px;
  font-family: 'Sora', sans-serif; font-size: 72px; font-weight: 800;
  color: var(--accent-pale); line-height: 1; opacity: .5;
}
.step-icon {
  width: 48px; height: 48px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  background: var(--bg-soft); border-radius: 14px; border: 1px solid var(--border);
}
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* ── Widget Showcase ── */
.widgets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wid-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid var(--border); height: 100%;
}
.wid-preview { margin-bottom: 18px; }
.wid-card h3 { font-size: 17px; margin-bottom: 6px; }
.wid-card p { font-size: 13px; line-height: 1.6; color: var(--muted); }
.mini-status { background: var(--bg-soft); border-radius: 10px; padding: 14px; }
.mini-status-top { display: flex; align-items: center; gap: 8px; }
.mini-status-top .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.mini-status-top span:last-child { font-weight: 600; font-size: 13px; }
.mini-status-loc { font-size: 12px; color: var(--muted); margin-top: 6px; }
.mini-map {
  background: linear-gradient(135deg, var(--accent-pale), var(--bg-soft));
  border-radius: 10px; height: 90px; display: flex; align-items: center; justify-content: center;
}
.mini-map-pin {
  width: 28px; height: 28px; border-radius: 50%; background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; box-shadow: 0 0 0 6px rgba(41,104,163,.12);
}
.mini-week { display: flex; flex-direction: column; gap: 5px; }
.mini-week-row { display: flex; align-items: center; gap: 8px; border-radius: 8px; padding: 7px 10px; font-size: 12px; background: var(--bg-soft); }
.mini-week-day { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--brand); width: 22px; }
.mini-week-active { background: var(--accent-pale); border: 1px solid var(--accent); }

/* ── Stats Bar ── */
.stats-bar { padding: 64px 0; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: 'Sora', sans-serif; font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; color: #fff; }
.stat-label { font-size: 13px; color: var(--accent); margin-top: 4px; }

/* ── Pricing ── */
.pricing-card {
  max-width: 420px; margin: 0 auto; background: var(--white);
  border-radius: 24px; padding: 44px 40px; text-align: center;
  box-shadow: 0 16px 56px rgba(15,33,55,.08);
  border: 2px solid var(--brand); position: relative; overflow: hidden;
}
.pricing-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--brand), var(--brand-light)); }
.pricing-tier { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.pricing-price { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 8px; }
.pricing-price .amount { font-family: 'Sora', sans-serif; font-size: 52px; font-weight: 800; color: var(--text); }
.pricing-price .period { font-size: 15px; color: var(--muted); }
.pricing-note { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-feature { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; }
.pricing-check { color: var(--green); font-size: 16px; line-height: 1; margin-top: 2px; flex-shrink: 0; }
.pricing-feature span:last-child { font-size: 14px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-btn {
  all: unset; cursor: pointer; display: flex; width: 100%;
  justify-content: space-between; align-items: center; gap: 16px;
}
.faq-btn .faq-q { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px; color: var(--text); text-align: left; }
.faq-icon { font-size: 22px; color: var(--brand); transition: transform .3s ease; flex-shrink: 0; }
.faq-body { overflow: hidden; transition: max-height .35s ease, opacity .3s ease; max-height: 0; opacity: 0; }
.faq-body.open { max-height: 200px; opacity: 1; }
.faq-body p { margin-top: 12px; color: var(--muted); line-height: 1.7; font-size: 14px; }

/* ── Final CTA ── */
.final-cta {
  padding: 90px 0; background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  text-align: center; position: relative; overflow: hidden;
}
.final-cta-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.03);
}
.final-cta h2 { color: #fff; }
.final-cta p { font-size: 17px; color: var(--accent); max-width: 460px; margin: 16px auto 32px; line-height: 1.7; }

/* ── Footer ── */
.footer { padding: 48px 0 0; background: var(--brand-deep); color: rgba(255,255,255,.55); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-col-title { font-family: 'Sora', sans-serif; font-weight: 600; color: #fff; font-size: 13px; margin-bottom: 4px; }
.footer-brand { font-family: 'Sora', sans-serif; font-weight: 700; color: #fff; font-size: 17px; }
.footer-tag { font-size: 12px; }
.footer-bottom { margin-top: 32px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

/* Burger Menu */
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; margin-left: 4px; position: relative; z-index: 1001; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--brand-deep); border-radius: 2px; margin: 4px 0; transition: all .3s; }
.nav-burger.open span { background: #fff; }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(3px, 4px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
  background: linear-gradient(168deg, var(--brand-deep), var(--brand));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-close { position: absolute; top: 20px; right: 24px; background: none; border: none;
  color: rgba(255,255,255,.6); font-size: 36px; cursor: pointer; z-index: 1002;
  line-height: 1; padding: 4px; transition: color .15s; }
.mobile-menu-close:hover { color: #fff; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.mobile-menu-inner a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 18px; font-weight: 500;
  font-family: 'Sora', sans-serif; transition: color .15s; }
.mobile-menu-inner a:hover { color: #fff; }
.mobile-menu-cta { display: inline-block; margin-top: 8px; padding: 14px 32px;
  background: #fff !important; color: var(--brand-deep) !important; border-radius: var(--radius-full);
  font-weight: 700 !important; font-size: 16px !important; }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .3s; }

/* ── Animations ── */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-input {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 15px; font-family: inherit;
  transition: border-color .2s; background: var(--white); color: var(--text);
}
.form-input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(41,104,163,.1); }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── Form Row (responsive grid) ── */
.form-row { display: flex; gap: 16px; }
.form-row > .form-group, .form-row > div { flex: 1; min-width: 0; }
.form-row > .form-group:only-child { flex: 1; }

/* ── Table Scroll Wrapper ── */
.dash-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.dash-table-wrap .dash-table { min-width: 500px; }

/* ── Flash Messages ── */
.flash { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; }
.flash-success { background: var(--green-bg); color: #166534; border: 1px solid #bbf7d0; }
.flash-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.flash-warning { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }

/* ════════════════════════════════════════ */
/* RESPONSIVE                               */
/* ════════════════════════════════════════ */

@media (max-width: 768px) {
  .wrap { padding: 0 16px; }
  .nav-link-desktop { display: none !important; }
  .nav-burger { display: block; }
  .nav-cta { padding: 8px 16px; font-size: 13px; }
  
  .hero { padding-top: 72px; padding-bottom: 40px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .widget-card { max-width: 300px; }
  
  .section { padding: 72px 0; }
  .section-title { font-size: clamp(24px, 6vw, 32px); }
  
  .problem-box { grid-template-columns: 1fr; text-align: center; padding: 28px 24px; }
  .problem-phone-icon { margin: 0 auto; }
  .problem-box p { text-align: left; }
  
  .steps-grid { grid-template-columns: 1fr; }
  .widgets-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-bottom { grid-template-columns: 1fr; }
  .compare-box { grid-template-columns: 1fr; }
  .compare-old { border-bottom: 1px solid rgba(0,0,0,.08); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stats-bar { padding: 48px 0; }
  
  .pricing-card { padding: 36px 24px; }
  
  .final-cta { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-col:first-child { grid-column: 1 / -1; text-align: center; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-grid { gap: 32px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .widgets-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ════════════════════════════════════════ */
/* DASHBOARD                                */
/* ════════════════════════════════════════ */

.dash-layout { min-height: 100vh; }
.dash-sidebar {
  background: var(--brand-deep); color: #fff; padding: 24px 0;
  position: fixed; left: 0; top: 0; width: 240px; height: 100vh; overflow-y: auto; z-index: 50;
}
.dash-sidebar-brand { padding: 0 20px 24px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; }
.dash-sidebar-brand small { display: block; font-size: 11px; color: rgba(255,255,255,.5); font-weight: 400; margin-top: 2px; }
.dash-nav { list-style: none; }
.dash-nav li a {
  display: flex; align-items: center; gap: 10px; padding: 12px 20px;
  color: rgba(255,255,255,.65); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all .2s;
}
.dash-nav li a:hover, .dash-nav li a.active {
  color: #fff; background: rgba(255,255,255,.08);
}
.dash-nav li a .icon { width: 20px; text-align: center; font-style: normal; }
.dash-main {
  margin-left: 240px; padding: 36px 48px; background: var(--bg-soft); min-height: 100vh;
  max-width: 100%; overflow-x: hidden;
}
.dash-header { margin-bottom: 28px; }
.dash-header h1 { font-size: 24px; }
.dash-header p { color: var(--muted); font-size: 14px; margin-top: 4px; }

.dash-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid var(--border); margin-bottom: 20px;
}
.dash-card h3 { font-size: 16px; margin-bottom: 12px; }
.dash-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin-bottom: 24px; }
.dash-stat-card {
  background: var(--white); border-radius: var(--radius); padding: 20px;
  border: 1px solid var(--border); text-align: center;
}
.dash-stat-num { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 700; color: var(--brand); }
.dash-stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

.dash-table { width: 100%; border-collapse: collapse; }
.dash-table th { text-align: left; font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; padding: 10px 12px; border-bottom: 2px solid var(--border); }
.dash-table td { padding: 12px; border-bottom: 1px solid var(--border); font-size: 14px; }
.dash-table tr:hover { background: var(--bg-soft); }

.status-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 600;
}
.status-success { background: var(--green-bg); color: #166534; }
.status-error { background: #FEF2F2; color: #991B1B; }
.status-pending { background: #FFF7ED; color: #9A3412; }

/* Hamburger Toggle (Mobile) */
.dash-toggle {
  display: none; position: fixed; top: 12px; left: 12px; z-index: 60;
  background: var(--brand-deep); color: #fff; border: none;
  width: 40px; height: 40px; border-radius: 10px; font-size: 20px; cursor: pointer;
}
.dash-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 45;
}

@media (max-width: 900px) {
  .dash-toggle { display: flex; align-items: center; justify-content: center; }
  .dash-sidebar {
    transform: translateX(-100%); transition: transform .3s ease;
  }
  .dash-sidebar.open { transform: translateX(0); }
  .dash-overlay.open { display: block; }
  .dash-main { margin-left: 0; padding: 24px 16px; padding-top: 64px; }
  .dash-stats-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
  .dash-table { font-size: 13px; }
  .dash-table th, .dash-table td { padding: 8px 6px; }

  /* Forms stacking on mobile */
  .form-row { flex-direction: column; gap: 0; }
  .form-row > div, .form-row > .form-group { flex: unset; width: 100%; }
}

/* ════════════════════════════════════════ */
/* AUTH PAGES                               */
/* ════════════════════════════════════════ */

.auth-title { font-size: 24px; margin-bottom: 4px; }
.auth-subtitle { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--muted); }
.auth-footer a { font-weight: 600; }

/* ════════════════════════════════════════ */
/* LEGAL / STATIC PAGES                     */
/* ════════════════════════════════════════ */

.legal-page { max-width: 740px; margin: 0 auto; padding: 120px 24px 80px; }
.legal-page h1 { font-size: 32px; margin-bottom: 8px; }
.legal-page .legal-updated { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
.legal-page h2 { font-size: 18px; margin-top: 36px; margin-bottom: 12px; }
.legal-page p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.legal-page ul { padding-left: 24px; margin-bottom: 16px; }
.legal-page li { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 6px; }
.legal-page a { color: var(--brand); text-decoration: underline; }

.legal-nav { position: fixed; top: 0; left: 0; right: 0; background: rgba(255,255,255,.95); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); padding: 14px 0; z-index: 100; }
.legal-nav-brand { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; color: var(--brand) !important; text-decoration: none !important; }

.legal-footer { padding: 32px 0; background: var(--brand-deep); color: rgba(255,255,255,.55); font-size: 12px; text-align: center; }
.legal-footer a { color: rgba(255,255,255,.55); text-decoration: none; margin: 0 10px; }
.legal-footer a:hover { color: #fff; }
