/* ============================================================
   CheckFrota — Landing Page Styles
   ============================================================ */

/* ---- Reset & Variables ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg:          #060B14;
  --color-bg-2:        #0D1422;
  --color-bg-3:        #111827;
  --color-surface:     #141D2E;
  --color-surface-2:   #1B2640;
  --color-border:      rgba(255,255,255,0.08);
  --color-border-2:    rgba(255,255,255,0.12);

  --color-brand:       #2563EB;
  --color-brand-light: #3B82F6;
  --color-brand-glow:  rgba(37, 99, 235, 0.25);
  --color-brand-2:     #1D4ED8;

  --color-green:       #10B981;
  --color-orange:      #F59E0B;
  --color-red:         #EF4444;
  --color-purple:      #8B5CF6;
  --color-teal:        #14B8A6;

  --color-text:        #F8FAFC;
  --color-text-muted:  #94A3B8;
  --color-text-dim:    #64748B;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 60px rgba(37, 99, 235, 0.15);

  --transition: 0.25s ease;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Scroll bar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-surface-2); border-radius: 3px; }

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section ---- */
.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.15);
  color: var(--color-brand-light);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 0 0 0 var(--color-brand-glow);
}
.btn--primary:hover {
  background: var(--color-brand-light);
  box-shadow: 0 0 24px var(--color-brand-glow);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-2);
}
.btn--outline:hover {
  border-color: var(--color-brand-light);
  color: var(--color-brand-light);
  background: rgba(37, 99, 235, 0.08);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
}
.btn--ghost:hover {
  color: var(--color-text);
  background: rgba(255,255,255,0.06);
}

.btn--lg { padding: 13px 28px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(6, 11, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { width: 36px; height: 36px; }

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.logo-text strong { color: var(--color-brand-light); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.navbar__nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.navbar__nav a:hover {
  color: var(--color-text);
  background: rgba(255,255,255,0.06);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--color-bg-2);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 24px 28px;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.mobile-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-link:hover { color: var(--color-text); background: rgba(255,255,255,0.06); }

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 75%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px 60px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-full);
  color: #93BBFD;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand-light);
  box-shadow: 0 0 6px var(--color-brand-light);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--color-text);
}

.hero__title--accent {
  background: linear-gradient(135deg, #60A5FA, #2563EB, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { text-align: center; }
.stat strong { display: block; font-size: 1.375rem; font-weight: 800; color: var(--color-text); }
.stat span { font-size: 0.8125rem; color: var(--color-text-dim); }

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--color-border-2);
}

/* App Mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-mockup {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.mockup__screen {
  background: var(--color-surface);
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 80px rgba(37, 99, 235, 0.1);
}

.mockup__header {
  background: var(--color-bg-3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--color-border);
}

.mockup__dots { display: flex; gap: 6px; }
.mockup__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup__dots span:nth-child(1) { background: #EF4444; }
.mockup__dots span:nth-child(2) { background: #F59E0B; }
.mockup__dots span:nth-child(3) { background: #10B981; }

.mockup__url {
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--color-text-dim);
  flex: 1;
}

.mockup__body { padding: 16px; }

.mockup__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mockup__logo-mini {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
}

.mockup__user-badge {
  background: rgba(37, 99, 235, 0.2);
  color: var(--color-brand-light);
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
}

.mockup__dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.dash-card {
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-card--blue   { background: rgba(37, 99, 235, 0.2);  border: 1px solid rgba(37, 99, 235, 0.3); }
.dash-card--green  { background: rgba(16, 185, 129, 0.2); border: 1px solid rgba(16, 185, 129, 0.3); }
.dash-card--orange { background: rgba(245, 158, 11, 0.2); border: 1px solid rgba(245, 158, 11, 0.3); }
.dash-card--gray   { background: rgba(100, 116, 139, 0.2); border: 1px solid rgba(100, 116, 139, 0.3); }

.dash-card__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.dash-card__label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.mockup__list { display: flex; flex-direction: column; gap: 6px; }

.list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg-3);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.list-badge {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.list-badge--ok   { background: rgba(16, 185, 129, 0.2); color: var(--color-green); border: 1px solid rgba(16, 185, 129, 0.4); }
.list-badge--warn { background: rgba(245, 158, 11, 0.2); color: var(--color-orange); border: 1px solid rgba(245, 158, 11, 0.4); }

.list-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.mockup__glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}

/* Scroll indicator */
.hero__scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--color-text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--color-text-dim), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   LOGOS STRIP
   ============================================================ */
.logos-strip {
  padding: 28px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-2);
}

.logos-strip__label {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}

.logos-strip__track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-chip {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  background: var(--color-bg-2);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__icon svg { width: 24px; height: 24px; }

.feature-card__icon--blue   { background: rgba(37, 99, 235, 0.15); color: var(--color-brand-light); }
.feature-card__icon--green  { background: rgba(16, 185, 129, 0.15); color: var(--color-green); }
.feature-card__icon--purple { background: rgba(139, 92, 246, 0.15); color: var(--color-purple); }
.feature-card__icon--orange { background: rgba(245, 158, 11, 0.15); color: var(--color-orange); }
.feature-card__icon--teal   { background: rgba(20, 184, 166, 0.15); color: var(--color-teal); }
.feature-card__icon--red    { background: rgba(239, 68, 68, 0.15); color: var(--color-red); }

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--color-bg);
}

.steps { display: flex; flex-direction: column; gap: 80px; }

.step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.step--reverse { direction: rtl; }
.step--reverse > * { direction: ltr; }

.step__number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-border-2);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.step__content h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.step__content p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Step visual cards */
.step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

/* Step 1 — Form */
.step-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.75rem; color: var(--color-text-dim); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.form-input {
  background: var(--color-bg-3);
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.color-options { display: flex; gap: 10px; padding: 8px 0; }
.color-opt {
  width: 24px; height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.color-opt--blue  { background: var(--color-brand); }
.color-opt--green { background: var(--color-green); }
.color-opt--dark  { background: #475569; }
.color-opt.active { border-color: white; }

.form-btn {
  background: var(--color-brand);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background var(--transition);
}
.form-btn:hover { background: var(--color-brand-light); }

/* Step 2 — Template */
.template-preview {}
.tpl-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 14px; color: var(--color-text); }
.tpl-items { display: flex; flex-direction: column; gap: 8px; }
.tpl-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--color-bg-3);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.tpl-tag {
  width: 26px; height: 26px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.tpl-tag--photo  { background: rgba(139, 92, 246, 0.2); }
.tpl-tag--voice  { background: rgba(239, 68, 68, 0.2); }
.tpl-tag--gps    { background: rgba(245, 158, 11, 0.2); }
.tpl-tag--status { background: rgba(16, 185, 129, 0.2); }

/* Step 3 — Realtime */
.rt-header { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-dim); margin-bottom: 12px; }
.rt-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  margin-bottom: 6px;
}
.rt-item--ok      { background: rgba(16, 185, 129, 0.1); color: #6EE7B7; border: 1px solid rgba(16, 185, 129, 0.2); }
.rt-item--warn    { background: rgba(245, 158, 11, 0.1); color: #FCD34D; border: 1px solid rgba(245, 158, 11, 0.2); }
.rt-item--pending { background: rgba(100, 116, 139, 0.1); color: var(--color-text-muted); border: 1px solid var(--color-border); }

/* ============================================================
   PLANS
   ============================================================ */
.plans {
  background: var(--color-bg-2);
}

/* Billing toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.billing-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-dim);
  transition: color var(--transition);
}
.billing-label--active { color: var(--color-text); }

.discount-badge {
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-green);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 7px;
  margin-left: 4px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.toggle-switch input { display: none; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-surface-2);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  left: 3px; top: 3px;
  transition: transform var(--transition);
}
.toggle-switch input:checked + .toggle-slider { background: var(--color-brand); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

/* Plan cards */
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}

.plan-card--featured {
  border-color: var(--color-brand);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.15);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-brand);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.plan-card__header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 6px;
}

.plan-card__header p {
  font-size: 0.875rem;
  color: var(--color-text-dim);
  margin-bottom: 24px;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.price-currency { font-size: 1rem; font-weight: 700; color: var(--color-text-muted); }
.price-value { font-size: 2.5rem; font-weight: 900; color: var(--color-text); line-height: 1; letter-spacing: -0.02em; }
.price-period { font-size: 0.875rem; color: var(--color-text-dim); }

.plan-card__features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-card__features li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.plan-card__features li.disabled {
  color: var(--color-text-dim);
  text-decoration: none;
  opacity: 0.5;
}

.plans__note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.8125rem;
  color: var(--color-text-dim);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--color-bg); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: border-color var(--transition);
}

.testimonial-card:hover { border-color: var(--color-border-2); }

.testimonial-card__stars {
  color: #FBBF24;
  font-size: 0.875rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand), var(--color-purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 700;
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--color-bg-2); }

.faq__inner { max-width: 780px; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(37, 99, 235, 0.3); }

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: color var(--transition);
  font-family: var(--font);
}

.faq-item__question:hover { color: var(--color-brand-light); }

.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--color-text-dim);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item__answer.open {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  padding: 0 24px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { background: var(--color-bg); }

.cta-final__card {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-xl);
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final__glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__card h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-final__card p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

.cta-final__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-final__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--color-text-dim);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding: 60px 24px 40px;
}

.footer__brand .navbar__logo { margin-bottom: 14px; display: inline-flex; }
.footer__brand p {
  font-size: 0.875rem;
  color: var(--color-text-dim);
  line-height: 1.6;
  max-width: 220px;
}

.footer__links { display: contents; }

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 0.875rem;
  color: var(--color-text-dim);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--color-text); }

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 24px;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--color-text-dim);
}

.footer__social { display: flex; gap: 12px; }
.footer__social a {
  color: var(--color-text-dim);
  text-decoration: none;
  transition: color var(--transition);
  display: flex; align-items: center;
}
.footer__social a:hover { color: var(--color-text); }

/* ============================================================
   AOS ANIMATIONS (custom, no library needed)
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-left"]  { transform: translateX(24px); }
[data-aos="zoom-in"]    { transform: scale(0.95); }

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .plans__grid { grid-template-columns: repeat(2, 1fr); }
  .plans__grid .plan-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .step { grid-template-columns: 64px 1fr; }
  .step__visual { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section { padding: 70px 0; }

  /* Navbar */
  .navbar__nav, .navbar__actions { display: none; }
  .navbar__hamburger { display: flex; }
  .mobile-menu { display: block; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
    text-align: center;
  }
  .hero__badge { font-size: 0.75rem; }
  .hero__ctas { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { display: none; }

  /* Features */
  .features__grid { grid-template-columns: 1fr; }

  /* Plans */
  .plans__grid { grid-template-columns: 1fr; }
  .plans__grid .plan-card:last-child { grid-column: auto; max-width: none; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Steps */
  .step { grid-template-columns: 1fr; gap: 20px; }
  .step--reverse { direction: ltr; }
  .step__number { font-size: 2.5rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-final__card { padding: 48px 24px; }
}