/* ══════════════════════════════════════════
   CODEXCAR — Design System — Apple Edition
   Paleta: Cinzas puros + Azul Apple
   Fonte: Inter (substituto SF Pro)
   Princípios: Glassmorphism, white space,
   sombras sutis, raios 12px
══════════════════════════════════════════ */

:root {
  /* ── Superfícies ── */
  --bg:          #F5F5F7;
  --surface:     #FFFFFF;
  --surface-2:   #F5F5F7;
  --surface-3:   #E8E8ED;
  --glass:       rgba(255,255,255,0.78);
  --glass-dark:  rgba(15,15,20,0.72);

  /* ── Bordas ── */
  --border:      #E8E8ED;
  --border-2:    #D2D2D7;

  /* ── Texto ── */
  --text:        #1D1D1F;
  --text-2:      #6E6E73;
  --text-3:      #AEAEB2;

  /* ── Acento principal — Azul Apple ── */
  --blue:        #0071E3;
  --blue-hover:  #0077ED;
  --blue-light:  #EBF3FE;
  --blue-mid:    #B3D3F5;

  /* ── Acento secundário — Verde (selos/status) ── */
  --green:       #1A6B45;
  --green-light: #EAF4EE;
  --green-mid:   #2D9B63;

  /* ── Semânticas ── */
  --amber:       #D97706;
  --amber-light: #FEF3C7;
  --red:         #DC2626;
  --red-light:   #FEE2E2;

  /* ── Raios ── */
  --r:   12px;
  --rs:   8px;
  --rl:  18px;
  --rx:  24px;

  /* ── Sombras Apple — muito sutis ── */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow:    0 8px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.09);

  /* ── Espaçamento de seção ── */
  --section-y: 112px;
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

a    { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
img  { max-width: 100%; display: block; }

/* ══════════════════════════════════════════
   TIPOGRAFIA — Inter como SF Pro
══════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--text);
}

h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(26px, 3.5vw, 44px); }
h3 { font-size: clamp(17px, 2vw, 21px); font-weight: 600; }
h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }

p  { line-height: 1.65; }

/* italic colorido (substituindo serif italic) */
em { font-style: italic; color: var(--blue); font-weight: inherit; }

/* ══════════════════════════════════════════
   BOTÕES
══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r);
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(0,113,227,0.22);
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,113,227,0.28);
}
.btn-primary:active { transform: scale(0.98); }

.btn-primary-sm {
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  background: var(--blue); color: #fff;
  border-radius: var(--rs);
  font-size: 14px; font-weight: 600;
  transition: background 0.18s;
}
.btn-primary-sm:hover { background: var(--blue-hover); }

.btn-outline {
  display: inline-flex; align-items: center;
  padding: 12px 24px;
  border: 1px solid var(--border-2);
  color: var(--text);
  border-radius: var(--r);
  font-size: 15px; font-weight: 500;
  background: var(--surface);
  transition: all 0.18s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-outline-sm {
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: var(--rs);
  font-size: 14px; font-weight: 500;
  transition: all 0.18s;
}
.btn-outline-sm:hover { border-color: var(--blue); color: var(--blue); }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  color: var(--text-2);
  border-radius: var(--rs);
  font-size: 14px; font-weight: 500;
  transition: all 0.15s;
}
.btn-ghost:hover { background: var(--surface-3); color: var(--text); }

.btn-white {
  display: inline-flex; align-items: center;
  padding: 13px 24px;
  background: #fff; color: var(--text);
  border-radius: var(--r);
  font-size: 15px; font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all 0.18s;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-ghost-white {
  display: inline-flex; align-items: center;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.82);
  border-radius: var(--r);
  font-size: 15px; font-weight: 500;
  transition: all 0.18s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.08); }

.btn-danger {
  display: inline-flex; align-items: center;
  padding: 9px 18px;
  border: 1px solid #FCA5A5; color: var(--red);
  border-radius: var(--rs);
  font-size: 14px; font-weight: 500;
  background: var(--surface);
  transition: all 0.18s;
}
.btn-danger:hover { background: var(--red-light); }

/* ══════════════════════════════════════════
   HEADER — Glassmorphism
══════════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 200;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
  height: 52px;
  display: flex; align-items: center; gap: 28px;
}

.logo { display: flex; align-items: center; gap: 9px; }

.logo-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark.sm { width: 26px; height: 26px; border-radius: 7px; }

.logo-name {
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nav { display: flex; align-items: center; gap: 0; margin-left: 4px; flex: 1; }

.nav-link {
  padding: 6px 13px; border-radius: 7px;
  font-size: 14px; font-weight: 500;
  color: var(--text-2);
  transition: all 0.15s;
}
.nav-link:hover  { background: var(--surface-3); color: var(--text); }
.nav-link.active { color: var(--blue); background: var(--blue-light); }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.nav-toggle {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px; border-radius: 8px;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text-2); border-radius: 1px;
  transition: all 0.2s;
}

/* ══════════════════════════════════════════
   EYEBROW PILL
══════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 18px;
}
.eyebrow.light {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.1);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  background: #FFFFFF;
  min-height: calc(100vh - 52px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

/* Decoração geométrica sutil */
.hero::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,113,227,0.04) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; left: -60px; bottom: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,113,227,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 96px 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 64px);
  margin-bottom: 22px; line-height: 1.04;
}

.hero-desc {
  font-size: 17px; color: var(--text-2);
  line-height: 1.7; margin-bottom: 36px;
  max-width: 460px;
}

.hero-ctas   { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust  { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item  {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--text-2); font-weight: 500;
}
.trust-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}

/* ── Hero card ── */
.hero-visual { position: relative; padding: 28px 0 36px; }

.hero-card {
  background: #fff;
  border-radius: var(--rx);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-card-badge {
  position: absolute; top: -14px; right: 20px;
  background: var(--blue);
  color: #fff; border-radius: var(--r);
  padding: 8px 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(0,113,227,0.28);
}

.card-label  { font-size: 10px; font-weight: 600; color: var(--text-3); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 4px; }
.card-model  { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 3px; }
.card-plate  { font-size: 12px; color: var(--text-2); font-weight: 500; letter-spacing: 0.6px; margin-bottom: 20px; }

.card-score-row   { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.score-ring-wrap  { position: relative; flex-shrink: 0; }
.score-center     { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.score-num        { font-size: 23px; font-weight: 700; letter-spacing: -0.03em; color: var(--text); }
.score-info       { flex: 1; }
.score-lbl        { font-size: 11px; color: var(--text-2); margin-bottom: 2px; }
.score-val        { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
.score-tag        { font-size: 12px; color: var(--blue); font-weight: 600; margin-top: 3px; }

.card-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.cs { text-align: center; }
.cs + .cs { border-left: 1px solid var(--border); }
.cs-val { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
.cs-val.green { color: var(--green); }
.cs-lbl { font-size: 10px; color: var(--text-2); margin-top: 3px; font-weight: 500; }

.hero-float-pill {
  position: absolute; bottom: -12px; left: 20px;
  background: #fff; border-radius: var(--r);
  padding: 10px 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; white-space: nowrap;
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: #34C759; flex-shrink: 0; }

/* ══════════════════════════════════════════
   NUMBERS BAR
══════════════════════════════════════════ */
.numbers-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.numbers-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: center;
}
.num-item  { text-align: center; padding: 0 56px; flex: 1; }
.num-sep   { width: 1px; background: var(--border); height: 44px; flex-shrink: 0; }
.num-val   { font-size: 44px; font-weight: 600; line-height: 1; letter-spacing: -0.03em; margin-bottom: 8px; }
.num-accent { color: var(--blue); }
.num-lbl   { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ══════════════════════════════════════════
   SECTIONS — GENÉRICAS
══════════════════════════════════════════ */
section { padding: var(--section-y) 0; }

.section-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
}

.section-head  { margin-bottom: 60px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 14px auto 0; max-width: 540px; }

.section-title { margin-bottom: 14px; }

.section-sub {
  font-size: 17px; color: var(--text-2);
  line-height: 1.65; max-width: 500px;
}

.bg-white  { background: var(--surface); }
.bg-tint   { background: var(--bg); }

/* ══════════════════════════════════════════
   COMO FUNCIONA — STEPS
══════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; align-items: center;
}

.step-card {
  background: var(--bg);
  border-radius: var(--rl);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.step-num {
  font-size: 40px; font-weight: 700;
  color: var(--border-2); line-height: 1;
  margin-bottom: 18px; letter-spacing: -0.04em;
}
.step-icon {
  width: 44px; height: 44px; border-radius: var(--r);
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step-title { font-size: 16px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.02em; }
.step-desc  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

.step-arrow { font-size: 20px; color: var(--text-3); padding: 0 20px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   SELOS
══════════════════════════════════════════ */
.seals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 28px;
}

.seal {
  background: var(--surface);
  border-radius: var(--rl);
  padding: 26px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.seal:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.seal-bar { height: 3px; position: absolute; top: 0; left: 0; right: 0; }
.bronze .seal-bar  { background: #CD7F32; }
.silver .seal-bar  { background: #9CA3AF; }
.gold   .seal-bar  { background: #D97706; }
.diamond .seal-bar { background: linear-gradient(90deg, #60A5FA, #2563EB); }
.diamond           { border-color: #BFDBFE; }

.seal-badge-top {
  position: absolute; top: 10px; right: 10px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.06em;
  background: var(--blue-light); color: var(--blue);
  padding: 2px 8px; border-radius: 20px;
}

.seal-icon { font-size: 26px; margin-bottom: 10px; }
.seal-name { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 4px; }
.seal-tag  {
  font-size: 10px; font-weight: 600; color: var(--text-2);
  letter-spacing: 0.06em; margin-bottom: 16px;
  text-transform: uppercase;
}

.seal-list { list-style: none; }
.seal-list li {
  font-size: 12px; color: var(--text-2);
  padding: 5px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 7px; line-height: 1.5;
}
.seal-list li:last-child { border-bottom: none; }
.seal-list li::before {
  content: "✓"; color: var(--green);
  font-weight: 700; flex-shrink: 0; margin-top: 1px; font-size: 11px;
}

.seal-insight {
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 13px; color: #1D4ED8; line-height: 1.65;
}
.insight-icon { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* ══════════════════════════════════════════
   BENEFÍCIOS / CASE
══════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.benefits-list { list-style: none; margin-top: 32px; }
.benefits-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.benefits-list li:last-child { border-bottom: none; }
.benefit-ico {
  width: 36px; height: 36px; border-radius: var(--rs);
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.benefits-list strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 4px; letter-spacing: -0.015em; }
.benefits-list p      { font-size: 13px; color: var(--text-2); line-height: 1.65; }

/* Case card */
.case-card {
  background: var(--surface);
  border-radius: var(--rl);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.case-eyebrow  { font-size: 10px; font-weight: 600; color: var(--blue); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.case-model    { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 3px; }
.case-location { font-size: 13px; color: var(--text-2); margin-bottom: 20px; }
.case-nums     { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.case-num      { background: var(--bg); border-radius: var(--rs); padding: 14px; text-align: center; }
.cn-lbl        { font-size: 10px; font-weight: 600; color: var(--text-2); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 5px; }
.cn-val        { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.cn-val.green  { color: var(--green); }
.case-result   { background: var(--blue-light); border-radius: var(--rs); padding: 14px; text-align: center; }
.cr-lbl        { font-size: 10px; font-weight: 600; color: var(--blue); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 5px; }
.cr-val        { font-size: 28px; font-weight: 700; color: var(--blue); letter-spacing: -0.03em; }
.cr-sub        { font-size: 11px; color: #4B7FCC; margin-top: 3px; }
.case-quote {
  background: #F5F5F7;
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  font-size: 13px; color: var(--text-2);
  line-height: 1.65; font-style: italic;
}
.quote-author { font-size: 11px; color: var(--text-3); margin-top: 8px; font-style: normal; font-weight: 600; }

/* ══════════════════════════════════════════
   PLANOS PREVIEW (homepage)
══════════════════════════════════════════ */
.plans-preview {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 24px;
}
.plan-prev-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 30px 24px; text-align: center;
  position: relative; transition: transform 0.2s;
}
.plan-prev-card:hover { transform: translateY(-2px); }
.plan-prev-card.featured { border-color: var(--blue); box-shadow: 0 8px 24px rgba(0,113,227,0.10); }

.pp-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 3px 12px; border-radius: 20px; white-space: nowrap;
}
.pp-name   { font-size: 12px; font-weight: 700; color: var(--text-2); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.pp-price  { font-size: 38px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.pp-price span { font-size: 17px; font-weight: 700; }
.pp-period { font-size: 12px; color: var(--text-2); margin-bottom: 22px; }

.plans-also {
  display: flex; gap: 32px; justify-content: center;
  font-size: 14px; color: var(--blue); font-weight: 600;
}
.plans-also a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   CTA SECTION (dark)
══════════════════════════════════════════ */
.cta-section {
  background: #1D1D1F;
  padding: var(--section-y) 0;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; padding: 0 40px; }
.cta-title {
  font-size: clamp(30px, 5vw, 50px);
  color: #fff; line-height: 1.08;
  margin-bottom: 18px; letter-spacing: -0.025em;
}
.cta-title em { color: #5AC8FA; font-style: italic; }
.cta-sub   { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 40px; }
.cta-btns  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: #1D1D1F; padding: 64px 0 36px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo     { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-logo .logo-name { color: #fff; }
.footer-desc     { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 280px; }
.footer-col-title {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a  { font-size: 13px; color: rgba(255,255,255,0.48); transition: color 0.18s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.28); flex-wrap: wrap; gap: 12px;
}
.footer-flags { display: flex; gap: 8px; }
.flag-badge {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px; padding: 3px 8px;
}

/* ══════════════════════════════════════════
   AUTH PAGES
══════════════════════════════════════════ */
.auth-page   { min-height: 100vh; background: var(--bg); display: flex; flex-direction: column; }
.auth-body   { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px 24px; }
.auth-card   {
  background: var(--surface);
  border-radius: var(--rx);
  padding: 44px;
  width: 100%; max-width: 440px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.auth-title { font-size: 28px; font-weight: 600; letter-spacing: -0.022em; margin-bottom: 6px; }
.auth-sub   { font-size: 15px; color: var(--text-2); margin-bottom: 32px; }

.form-group { margin-bottom: 14px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-2); margin-bottom: 7px;
}
.form-input {
  width: 100%; padding: 12px 14px;
  background: var(--bg);
  border: 1px solid transparent;
  border-radius: var(--rs);
  font-size: 15px; color: var(--text);
  transition: border-color 0.18s, background 0.18s;
}
.form-input:focus { border-color: var(--blue); background: #fff; outline: none; }
.form-input::placeholder { color: var(--text-3); }

.form-select {
  width: 100%; padding: 12px 14px;
  background: var(--bg);
  border: 1px solid transparent;
  border-radius: var(--rs);
  font-size: 15px; color: var(--text);
  appearance: none; cursor: pointer;
  transition: border-color 0.18s;
}
.form-select:focus { border-color: var(--blue); background: #fff; outline: none; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }

.btn-auth {
  width: 100%; padding: 13px;
  background: var(--blue); color: #fff;
  border-radius: var(--rs);
  font-size: 15px; font-weight: 600;
  transition: background 0.18s;
  margin-top: 8px;
}
.btn-auth:hover { background: var(--blue-hover); }

.auth-divider {
  text-align: center; color: var(--text-3); font-size: 13px;
  margin: 20px 0; position: relative;
}
.auth-divider::before, .auth-divider::after {
  content: ''; position: absolute; top: 50%; width: 43%;
  height: 1px; background: var(--border);
}
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }

.btn-auth-sec {
  display: block; width: 100%; padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text); border-radius: var(--rs);
  font-size: 15px; font-weight: 500;
  text-align: center; transition: all 0.18s;
}
.btn-auth-sec:hover { border-color: var(--blue); color: var(--blue); }

.auth-foot  { text-align: center; margin-top: 18px; font-size: 13px; color: var(--text-2); }
.auth-foot a { color: var(--blue); font-weight: 600; }
.auth-note  { text-align: center; font-size: 11px; color: var(--text-3); margin-top: 8px; }
.auth-error { color: var(--red); font-size: 13px; text-align: center; margin-top: 6px; display: none; }

/* ══════════════════════════════════════════
   APP — SIDEBAR + LAYOUT
══════════════════════════════════════════ */
.app-wrap {
  display: flex; min-height: 100vh; background: var(--bg);
}

/* Sidebar com glassmorphism */
.app-sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-right: 1px solid var(--border);
  padding: 20px 12px;
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}

.sidebar-logo {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 32px; padding: 0 8px;
}
.sidebar-logo .logo-name { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }

.sidebar-section-lbl {
  font-size: 10px; font-weight: 700; color: var(--text-3);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0 10px; margin: 14px 0 6px;
}
.sidebar-item {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 10px; border-radius: var(--rs);
  font-size: 14px; font-weight: 500; color: var(--text-2);
  cursor: pointer; transition: all 0.15s; margin-bottom: 2px;
}
.sidebar-item:hover  { background: var(--surface-3); color: var(--text); }
.sidebar-item.active { background: var(--blue-light); color: var(--blue); font-weight: 600; }
.sidebar-item svg    { flex-shrink: 0; opacity: 0.65; }
.sidebar-item.active svg { opacity: 1; }

.sidebar-bottom { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.sidebar-user   { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--rs); }
.user-avatar    {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.user-name  { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.user-plan  { font-size: 11px; color: var(--blue); font-weight: 600; margin-top: 1px; }

.app-main   { flex: 1; min-width: 0; padding: 36px 40px; }
.app-panel  { display: none; }
.app-panel.active { display: block; }

.panel-title { font-size: 26px; font-weight: 600; letter-spacing: -0.022em; margin-bottom: 4px; }
.panel-sub   { font-size: 14px; color: var(--text-2); margin-bottom: 32px; }

/* ══════════════════════════════════════════
   DASHBOARD — KPI CARDS
══════════════════════════════════════════ */
.dash-kpi {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-bottom: 24px;
}
.kpi-card {
  background: var(--surface);
  border-radius: var(--r);
  padding: 22px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.kpi-label { font-size: 11px; font-weight: 600; color: var(--text-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.kpi-val   { font-size: 28px; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.kpi-val.green { color: var(--green); }
.kpi-val.blue  { color: var(--blue); }
.kpi-val.amber { color: var(--amber); }
.kpi-sub   { font-size: 12px; color: var(--text-2); margin-top: 5px; }

.dash-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.dash-card {
  background: var(--surface);
  border-radius: var(--r);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.dash-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.dash-card-title { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }

/* ── Vehicle rows ── */
.vehicle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity 0.15s;
}
.vehicle-row:last-child { border-bottom: none; }
.vehicle-row:hover { opacity: 0.65; }
.vr-left   { display: flex; align-items: center; gap: 12px; }
.vr-icon   {
  width: 36px; height: 36px; border-radius: var(--rs);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vr-name   { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.vr-plate  { font-size: 11px; color: var(--text-2); font-weight: 500; letter-spacing: 0.6px; margin-top: 2px; }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
}
.badge-active  { background: var(--green-light); color: var(--green); }
.badge-pending { background: var(--amber-light); color: #92400E; }
.badge-diamond { background: var(--blue-light); color: #1E40AF; }
.badge-gold    { background: var(--amber-light); color: #92400E; }
.badge-silver  { background: #F3F4F6; color: #4B5563; }
.badge-bronze  { background: #FDF0E6; color: #7D5A3C; }

/* ── Alertas ── */
.alert-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.alert-row:last-child { border-bottom: none; }
.alert-ico {
  width: 30px; height: 30px; border-radius: var(--rs);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.alert-ico.warn { background: var(--amber-light); color: var(--amber); }
.alert-ico.info { background: var(--blue-light); color: var(--blue); }
.alert-title    { font-size: 13px; font-weight: 600; }
.alert-sub      { font-size: 11px; color: var(--text-2); margin-top: 2px; }

/* ══════════════════════════════════════════
   TIMELINE — PRONTUÁRIO
══════════════════════════════════════════ */
.timeline    { max-width: 700px; }
.tl-item     { display: flex; gap: 14px; }
.tl-spine    { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tl-dot      {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tl-dot.done     { background: var(--green); box-shadow: 0 2px 8px rgba(26,107,69,0.25); }
.tl-dot.official { background: var(--amber); }
.tl-line         { width: 2px; flex: 1; background: var(--border); margin: 4px 0; min-height: 14px; }

.tl-card {
  flex: 1; background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 12px; overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.tl-head {
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; width: 100%; background: none; text-align: left;
  font-family: 'Inter', sans-serif;
}
.tl-type { font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.tl-meta { font-size: 12px; color: var(--text-2); margin-top: 3px; }
.tl-body { padding: 0 18px 18px; display: none; border-top: 1px solid var(--border); }
.tl-body.open { display: block; }
.tl-workshop {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg); border-radius: var(--rs);
  padding: 10px 12px; margin: 14px 0 12px;
  font-size: 13px; color: var(--text-2); font-weight: 500;
}
.tl-field   { font-size: 10px; font-weight: 700; color: var(--text-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.tl-service {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--text);
}
.tl-service:last-child { border-bottom: none; }
.tl-dot-sm  { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.tl-pending {
  background: var(--amber-light); border-radius: var(--rs);
  padding: 10px 12px; margin-top: 10px;
  font-size: 12px; color: #78350F; line-height: 1.55;
}
.tl-pending-lbl { font-weight: 700; color: #92400E; margin-bottom: 4px; }
.tl-photos  { font-size: 11px; color: var(--text-3); margin-top: 10px; display: flex; align-items: center; gap: 5px; }

/* ── Add button ── */
.btn-add {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: var(--blue); color: #fff;
  border-radius: var(--rs);
  font-size: 13px; font-weight: 600;
  transition: background 0.18s;
  box-shadow: 0 2px 8px rgba(0,113,227,0.18);
}
.btn-add:hover { background: var(--blue-hover); }

/* ══════════════════════════════════════════
   MODAL
══════════════════════════════════════════ */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.modal-bg.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--surface);
  border-radius: var(--rx);
  padding: 36px;
  width: 100%; max-width: 500px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  transform: translateY(12px);
  transition: transform 0.22s;
  border: 1px solid var(--border);
}
.modal-bg.open .modal-box { transform: translateY(0); }

.modal-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 22px;
}
.modal-title { font-size: 20px; font-weight: 600; letter-spacing: -0.022em; }
.modal-close-btn {
  width: 28px; height: 28px; border-radius: var(--rs);
  background: var(--bg); color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
  transition: background 0.15s;
}
.modal-close-btn:hover { background: var(--border); }
.modal-note {
  background: var(--amber-light); border: 1px solid #FCD34D;
  border-radius: var(--rs); padding: 12px 14px;
  font-size: 13px; color: #78350F; line-height: 1.55;
  margin-bottom: 18px;
}

/* ── Share modal ── */
.expiry-row { display: flex; gap: 8px; margin-bottom: 18px; }
.ex-btn {
  flex: 1; padding: 8px;
  border-radius: var(--rs);
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg); color: var(--text-2);
  cursor: pointer; transition: all 0.18s;
  font-family: 'Inter', sans-serif;
}
.ex-btn.active { background: var(--blue-light); border-color: var(--blue); color: var(--blue); }
.link-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--rs); padding: 12px 14px; margin-bottom: 12px;
}
.link-txt { font-size: 13px; color: var(--text-2); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.copy-btn {
  background: var(--blue); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: var(--rs);
  transition: background 0.18s; white-space: nowrap;
  cursor: pointer; font-family: 'Inter', sans-serif;
}
.copy-btn:hover { background: var(--blue-hover); }
.share-note {
  background: var(--blue-light); border-radius: var(--rs);
  padding: 10px 12px; font-size: 12px; color: #1D4ED8;
  line-height: 1.6; margin-bottom: 14px;
}

/* ══════════════════════════════════════════
   CHECKLIST
══════════════════════════════════════════ */
.checklist-section { margin-bottom: 22px; }
.cl-section-title {
  font-size: 14px; font-weight: 600; color: var(--text);
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  letter-spacing: -0.01em;
}
.cl-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.cl-item:last-child { border-bottom: none; }
.cl-item-name   { font-size: 13px; color: var(--text); }
.cl-item-status { display: flex; gap: 10px; }
.cl-item-status label {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--text-2); cursor: pointer;
}
.cl-item-status input[type="radio"] { width: 14px; height: 14px; accent-color: var(--blue); cursor: pointer; }
.cl-notes {
  width: 100%; padding: 8px 10px;
  background: var(--bg); border: 1px solid transparent;
  border-radius: var(--rs); font-size: 12px; color: var(--text);
  resize: none; transition: border-color 0.18s; height: 52px;
}
.cl-notes:focus { border-color: var(--blue); outline: none; background: #fff; }

/* ══════════════════════════════════════════
   PROFILE
══════════════════════════════════════════ */
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 680px; }
.profile-card {
  background: var(--surface); border-radius: var(--r);
  padding: 22px; border: 1px solid var(--border); box-shadow: var(--shadow-xs);
}
.profile-card.full { grid-column: 1 / -1; }

/* ══════════════════════════════════════════
   PLANOS PAGE
══════════════════════════════════════════ */
.plans-page .section-inner { max-width: 1100px; }
.plans-tabs-row { display: flex; gap: 8px; margin-bottom: 40px; }
.plan-tab-btn {
  padding: 9px 20px; border-radius: var(--rs);
  font-size: 14px; font-weight: 600;
  border: 1px solid var(--border);
  background: var(--surface); color: var(--text-2);
  cursor: pointer; transition: all 0.18s;
  font-family: 'Inter', sans-serif;
}
.plan-tab-btn.active { background: var(--text); color: #fff; border-color: var(--text); }
.plans-tab-content { display: none; }
.plans-tab-content.active { display: block; }
.plans-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.plan-card-full {
  background: var(--surface);
  border-radius: var(--rl); padding: 30px;
  border: 1px solid var(--border);
  position: relative; transition: transform 0.2s;
  box-shadow: var(--shadow-xs);
}
.plan-card-full:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.plan-card-full.featured { border-color: var(--blue); box-shadow: 0 8px 28px rgba(0,113,227,0.10); }

.plan-popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 3px 14px; border-radius: 20px; white-space: nowrap;
}
.plan-name-full {
  font-size: 12px; font-weight: 700; color: var(--text-2);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px;
}
.plan-price-full { font-size: 44px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.plan-price-full sup { font-size: 18px; font-family: 'Inter', sans-serif; font-weight: 700; vertical-align: super; }
.plan-period-full { font-size: 12px; color: var(--text-2); margin-bottom: 20px; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.plan-features-list { list-style: none; margin-bottom: 24px; }
.plan-features-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--text-2); padding: 5px 0; line-height: 1.5;
}
.plan-features-list .chk { color: var(--green); font-size: 14px; flex-shrink: 0; }
.plan-features-list .x   { color: var(--text-3); font-size: 14px; flex-shrink: 0; }
.plan-features-list .gray{ color: var(--text-3); }
.btn-plan-green {
  width: 100%; padding: 12px; background: var(--blue); color: #fff;
  border-radius: var(--rs); font-size: 14px; font-weight: 600;
  transition: background 0.18s; font-family: 'Inter', sans-serif;
}
.btn-plan-green:hover { background: var(--blue-hover); }
.btn-plan-outline {
  width: 100%; padding: 11px; background: var(--surface);
  border: 1px solid var(--border); color: var(--text);
  border-radius: var(--rs); font-size: 14px; font-weight: 600;
  transition: all 0.18s; font-family: 'Inter', sans-serif;
}
.btn-plan-outline:hover { border-color: var(--blue); color: var(--blue); }
.addons-row {
  margin-top: 16px; padding: 16px 20px;
  background: var(--bg); border-radius: var(--r);
  font-size: 13px; color: var(--text-2); line-height: 1.7;
}

/* ══════════════════════════════════════════
   SOBRE PAGE
══════════════════════════════════════════ */
.about-hero    { background: var(--surface); padding: 96px 0; }
.about-founder { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.founder-photo {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, #0047A3 100%);
  color: #fff; font-size: 52px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; box-shadow: var(--shadow-lg);
  letter-spacing: -0.02em;
}
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-stat {
  background: var(--surface); border-radius: var(--r);
  padding: 20px; border: 1px solid var(--border); text-align: center;
}
.about-stat-val { font-size: 30px; font-weight: 700; color: var(--blue); letter-spacing: -0.03em; margin-bottom: 4px; }
.about-stat-lbl { font-size: 12px; color: var(--text-2); line-height: 1.5; }

/* ══════════════════════════════════════════
   WORKSHOP PANEL
══════════════════════════════════════════ */
.workshop-queue { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.queue-card {
  background: var(--surface); border-radius: var(--r);
  padding: 20px; border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.queue-car   { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 2px; }
.queue-plate { font-size: 11px; color: var(--text-2); letter-spacing: 0.6px; font-weight: 600; margin-bottom: 10px; }
.queue-owner { font-size: 12px; color: var(--text-2); margin-bottom: 12px; }
.queue-status{ font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; display: inline-block; }
.qs-waiting  { background: var(--amber-light); color: #92400E; }
.qs-progress { background: var(--blue-light); color: #1E40AF; }
.qs-done     { background: var(--green-light); color: var(--green); }

/* ══════════════════════════════════════════
   ADMIN TABLE
══════════════════════════════════════════ */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  font-size: 11px; font-weight: 700; color: var(--text-2);
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 16px; text-align: left;
  border-bottom: 1px solid var(--border-2); background: var(--bg);
}
.admin-table td {
  font-size: 13px; padding: 12px 16px;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg); }

/* ══════════════════════════════════════════
   TOAST
══════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: #1D1D1F; color: #fff;
  padding: 11px 22px; border-radius: var(--r);
  font-size: 14px; font-weight: 500;
  z-index: 999; box-shadow: var(--shadow);
  transition: opacity 0.3s; pointer-events: none;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-y: 80px; }
  .header-inner, .section-inner, .numbers-inner, .footer-inner, .cta-inner { padding-left: 28px; padding-right: 28px; }
  .hero-inner    { padding-left: 28px; padding-right: 28px; }
  .hero-inner    { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual   { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-founder { grid-template-columns: 1fr; gap: 44px; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dash-kpi      { grid-template-columns: 1fr 1fr; }
  .dash-row      { grid-template-columns: 1fr; }
  .seals-grid    { grid-template-columns: 1fr 1fr; }
  .plans-3       { grid-template-columns: 1fr; }
  .workshop-queue{ grid-template-columns: 1fr; }
  .app-main      { padding: 28px; }
}

@media (max-width: 768px) {
  :root { --section-y: 64px; }
  .header-inner  { padding: 0 20px; }
  .nav {
    display: none; position: absolute; top: 52px; left: 0; right: 0;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 16px; flex-direction: column; gap: 2px;
    box-shadow: var(--shadow); z-index: 100;
  }
  .nav.open      { display: flex; }
  .nav-toggle    { display: flex; }
  .hero-inner, .section-inner, .footer-inner, .cta-inner, .numbers-inner { padding-left: 20px; padding-right: 20px; }
  .hero-inner    { padding-top: 56px; padding-bottom: 56px; }
  .numbers-inner { flex-direction: column; gap: 36px; }
  .num-sep       { width: 100%; height: 1px; }
  .steps-grid    { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow    { display: none; }
  .seals-grid    { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr; }
  .plans-preview { grid-template-columns: 1fr; }
  .app-sidebar   { display: none; }
  .app-main      { padding: 20px; }
  .dash-kpi      { grid-template-columns: 1fr 1fr; }
  .profile-grid  { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-table   { font-size: 12px; }
  .admin-table th, .admin-table td { padding: 8px 10px; }
  .modal-box     { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-ctas     { flex-direction: column; align-items: flex-start; }
  .cta-btns      { flex-direction: column; align-items: center; }
  .dash-kpi      { grid-template-columns: 1fr; }
  .case-nums     { grid-template-columns: 1fr; }
  .form-grid     { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr; }
  .plans-tabs-row { flex-wrap: wrap; }
}
