/* ===================================================================
   AI Korektury – style.css
   =================================================================== */

/* ===== Variables ===== */
:root {
  --bg: #ffffff;
  --fg: hsl(222, 47%, 8%);
  --primary: hsl(243, 75%, 59%);
  --primary-fg: #ffffff;
  --muted: hsl(220, 14%, 96%);
  --muted-fg: hsl(220, 9%, 46%);
  --accent: hsl(238, 100%, 95%);
  --accent-fg: hsl(245, 58%, 41%);
  --border: hsl(220, 13%, 91%);
  --brand-accent: hsl(199, 89%, 48%);
  --brand-surface: hsl(226, 57%, 98%);
  --brand-dark: hsl(245, 58%, 41%);
  --radius: 0.75rem;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }
ul { list-style: none; }

/* ===== Layout ===== */
.container { max-width: 1152px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

/* ===== Reusable ===== */
.icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-sm { width: 14px; height: 14px; }
.icon-lg { width: 28px; height: 28px; }
.icon-xs { width: 12px; height: 12px; }
.icon-16 { width: 16px; height: 16px; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--brand-dark) 100%);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-fg);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float-reverse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes pulse-cursor { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.card-hover { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -12px hsla(243, 75%, 59%, 0.15); }

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 0.5rem;
  background: var(--primary); color: var(--primary-fg);
  font-size: 0.875rem; font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary-lg {
  padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 0.75rem;
  border: 1px solid var(--border); background: white;
  color: var(--fg); font-size: 1rem; font-weight: 600;
  transition: background 0.2s;
}
.btn-secondary:hover { background: var(--muted); }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.3s ease; background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border-bottom: 1px solid var(--border);
}
.navbar-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; height: 64px; }
.navbar-logo { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; min-width: 0; position: relative; z-index: 2; }
.navbar-logo-icon {
  width: 32px; height: 32px; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
}
.navbar-logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; white-space: nowrap; }
.navbar-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  pointer-events: none;
}

.navbar-links a {
  font-size: 0.875rem;
  color: var(--muted-fg);
  font-weight: 500;
  transition: color 0.2s;
  pointer-events: auto;
}
.navbar-links a:hover { color: var(--fg); }
.navbar-right { margin-left: auto; display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.navbar-cta { display: none; align-items: center; gap: 0.75rem; }
.navbar-cta .btn-login { font-size: 0.875rem; color: var(--muted-fg); font-weight: 500; background: none; transition: color 0.2s; }
.navbar-cta .btn-login:hover { color: var(--fg); }
.flag-btn {
  width: 42px; height: 42px; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.flag-btn img { width: 100%;}
.flag-btn:hover { transform: translateY(-2px); }
.mobile-toggle { display: flex; padding: 0.5rem; border-radius: 0.5rem; background: none; transition: background 0.2s; flex-shrink: 0; }
.mobile-toggle:hover { background: var(--muted); }
.mobile-menu { display: none; background: white; border-bottom: 1px solid var(--border); padding: 1rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.5rem 0; font-size: 0.875rem; color: var(--muted-fg); font-weight: 500; }
.mobile-menu .btn-primary { width: 100%; justify-content: center; margin-top: 0.75rem; padding: 0.625rem 1rem; color: #fff; }
.mobile-lang-link { display: flex !important; align-items: center; gap: 0.625rem; margin-top: 0.25rem; }
.mobile-lang-link img { width: 24px; height: 24px; border-radius: 9999px; object-fit: cover; flex-shrink: 0; }

@media (max-width: 850px) {
  .navbar-inner { height: 72px; }
  .navbar-logo-text { font-size: 1rem; }
}

@media (min-width: 850px) {
  .navbar-links { display: flex; justify-content: center; align-content: center;
    width: 100%; }
  .navbar-cta { display: flex; }
  .mobile-toggle { display: none; }
  .navbar-right { gap: 0.875rem; }
}

@media (min-width: 1024px) {
  .navbar-inner { gap: 1.5rem; }
  .navbar-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    z-index: 1;
  }
  .navbar-right { margin-left: auto; }
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative; padding: 5rem 0 2rem; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, hsla(243,75%,59%,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 30%, hsla(199,89%,48%,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 70%, hsla(243,75%,59%,0.06) 0%, transparent 60%);
}
@media (min-width: 640px) { .hero { padding: 7rem 0 3rem; } }
@media (min-width: 1024px) { .hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; } }

.hero-grid { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.hero-content { text-align: center; }
@media (min-width: 1024px) { .hero-content { text-align: left; } }
.hero-badge { background: var(--accent); color: var(--accent-fg); border-color: hsla(243,75%,59%,0.3); margin-bottom: 0.75rem; }
@media (min-width: 640px) { .hero-badge { margin-bottom: 1.25rem; } }
.hero h1 { font-size: clamp(1.65rem, 5vw, 3.75rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
@media (min-width: 640px) { .hero h1 { margin-bottom: 1.25rem; } }
.hero-sub {
  font-size: clamp(0.8125rem, 2vw, 1.25rem); color: var(--muted-fg);
  margin-bottom: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6;
}
@media (min-width: 640px) { .hero-sub { margin-bottom: 1.75rem; } }
@media (min-width: 1024px) { .hero-sub { margin-left: 0; margin-right: 0; } }
.hero-ctas { display: flex; flex-direction: column; gap: 0.5rem; justify-content: center; margin-bottom: 1rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; gap: 0.75rem; margin-bottom: 2rem; } }
@media (min-width: 1024px) { .hero-ctas { justify-content: flex-start; } }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; justify-content: center; font-size: 0.75rem; color: var(--muted-fg); }
@media (min-width: 640px) { .hero-trust { font-size: 0.875rem; } }
@media (min-width: 1024px) { .hero-trust { justify-content: flex-start; } }
.hero-trust span { display: flex; align-items: center; gap: 0.375rem; }
.hero-trust .check { color: var(--primary); font-weight: 700; }

/* Hero Stats */
.hero-stats {
  margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; text-align: center;
}
@media (min-width: 640px) { .hero-stats { margin-top: 3rem; padding-top: 2rem; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.hero-stat-value { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.125rem, 3vw, 1.875rem); }
.hero-stat-label { font-size: clamp(0.75rem, 1.5vw, 0.875rem); color: var(--muted-fg); }

/* ================================================
   MOCKUP
   ================================================ */
.mockup-wrapper { position: relative; max-width: 320px; margin: 0 auto; }
@media (min-width: 640px) { .mockup-wrapper { max-width: 100%; } }
.mockup-glow { position: absolute; inset: 0; border-radius: 1rem; filter: blur(48px); opacity: 0.2; background: linear-gradient(135deg, var(--primary), var(--brand-accent)); }
.mockup {
  position: relative; border-radius: 1rem; overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); background: white;
}
.mockup-titlebar { display: flex; align-items: center; gap: 0.375rem; padding: 0.625rem 0.75rem; background: hsla(222,47%,8%,0.04); border-bottom: 1px solid var(--border); }
.mockup-dots { display: flex; gap: 0.375rem; flex-shrink: 0; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot--red { background: #f87171; }
.mockup-dot--yellow { background: #facc15; }
.mockup-dot--green { background: #4ade80; }
.mockup-url { flex: 1; min-width: 0; margin: 0 0.5rem; height: 20px; border-radius: 0.375rem; background: var(--muted); display: flex; align-items: center; padding: 0 0.5rem; gap: 0.375rem; }
.mockup-url-dot { width: 8px; height: 8px; border-radius: 50%; background: hsla(243,75%,59%,0.4); flex-shrink: 0; }
.mockup-url-text { font-size: 0.75rem; color: var(--muted-fg); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mockup-export-btn { padding: 0.125rem 0.5rem; border-radius: 0.375rem; font-size: 0.75rem; font-weight: 600; color: var(--primary-fg); white-space: nowrap; flex-shrink: 0; cursor: default; }
.mockup-layout { display: flex; height: 7.5rem; }
@media (min-width: 640px) { .mockup-layout { height: 16rem; } }
@media (min-width: 1024px) { .mockup-layout { height: 18rem; } }
.mockup-sidebar { width: 96px; background: hsla(222,47%,8%,0.02); border-right: 1px solid var(--border); display: flex; flex-direction: column; }
@media (min-width: 640px) { .mockup-sidebar { width: 144px; } }
.mockup-sidebar-header { padding: 0.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.375rem; }
.mockup-sidebar-header span { font-size: 0.75rem; font-weight: 700; color: var(--fg); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mockup-sidebar-items { flex: 1; padding: 0.5rem; display: flex; flex-direction: column; gap: 2px; overflow: hidden; }
.mockup-sidebar-item { padding: 0.25rem 0.375rem; border-radius: 0.375rem; display: flex; align-items: center; gap: 0.375rem; cursor: default; }
@media (min-width: 640px) { .mockup-sidebar-item { padding: 0.375rem; } }
.mockup-sidebar-item.active { background: var(--primary); }
.mockup-sidebar-item .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.mockup-sidebar-item .label { font-size: 0.75rem; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mockup-sidebar-progress { padding: 0.5rem; border-top: 1px solid var(--border); }
.mockup-sidebar-progress .progress-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.25rem; }
.mockup-sidebar-progress .progress-header span { font-size: 0.75rem; }
.progress-bar { height: 6px; background: var(--muted); border-radius: 9999px; overflow: hidden; }
.progress-bar-fill { height: 100%; border-radius: 9999px; background: var(--primary); }
.mockup-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-width: 0; }
.mockup-toolbar { padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .mockup-toolbar { padding: 0.5rem 1rem; } }
.mockup-toolbar-title { font-size: 0.75rem; color: var(--muted-fg); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.mockup-toolbar-badges { margin-left: auto; display: flex; align-items: center; gap: 0.25rem; flex-shrink: 0; }
.mockup-toolbar-badge { padding: 0.125rem 0.5rem; border-radius: 0.25rem; font-size: 0.75rem; font-weight: 500; border: 1px solid; }
.mockup-toolbar-badge--green { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.mockup-toolbar-badge--amber { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.mockup-editor { flex: 1; padding: 0.75rem; overflow: hidden; font-family: var(--font-body); }
@media (min-width: 640px) { .mockup-editor { padding: 0.75rem 1rem; } }
.mockup-editor p { font-size: 0.75rem; color: var(--muted-fg); line-height: 1.7; margin-bottom: 0.5rem; }
.mockup-editor mark { padding: 0 0.125rem; border-radius: 0.25rem; cursor: default; }
.mark-amber { background: #fef3c7; color: #92400e; }
.mark-red { background: #fee2e2; color: #991b1b; text-decoration: line-through; }
.mark-green { background: #dcfce7; color: #166534; }
.mark-blue { background: #dbeafe; color: #1e40af; }
.cursor-blink { display: inline-block; width: 2px; height: 12px; background: var(--primary); margin-left: 4px; animation: pulse-cursor 1s infinite; }
.mockup-ai { display: none; flex-direction: column; width: 160px; border-left: 1px solid var(--border); background: hsla(226,57%,98%,0.5); }
@media (min-width: 640px) { .mockup-ai { display: flex; } }
@media (min-width: 768px) { .mockup-ai { width: 208px; } }
.mockup-ai-header { padding: 0.625rem 0.75rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.375rem; }
.mockup-ai-header span { font-size: 0.75rem; font-weight: 700; }
.mockup-ai-body { flex: 1; padding: 0.5rem 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; overflow: hidden; }
.ai-card { border-radius: 0.5rem; padding: 0.5rem; border: 1px solid; }
.ai-card-header { display: flex; align-items: flex-start; gap: 0.375rem; margin-bottom: 0.375rem; }
.ai-card-icon { width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ai-card p { font-size: 0.75rem; line-height: 1.5; }
.ai-card-link { font-size: 0.75rem; color: var(--primary); font-weight: 600; margin-top: 0.375rem; display: block; }

/* Floating badges */
.float-badge {
  position: absolute; border-radius: 0.75rem; padding: 0.5rem 0.75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9); display: none; align-items: center; gap: 0.5rem;
}
@media (min-width: 640px) { .float-badge { display: flex; } }
.float-badge--top { top: -16px; right: -16px; animation: float 4s ease-in-out infinite; }
.float-badge--bottom { bottom: -16px; left: -16px; animation: float-reverse 5s ease-in-out infinite; }
.float-badge-icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.float-badge p { font-size: 0.75rem; font-weight: 700; }
.float-badge p.sub { font-weight: 400; color: var(--muted-fg); }

/* ================================================
   PROBLEMS
   ================================================ */
.problems { padding: 5rem 0; background: white; }
@media (min-width: 640px) { .problems { padding: 7rem 0; } }
.problems-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .problems-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .problems-grid { grid-template-columns: repeat(3, 1fr); } }
.problem-card { border-radius: 1rem; padding: 1.5rem; border: 1px solid; }
.problem-icon { width: 40px; height: 40px; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.problem-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }
.problem-card--solution { color: var(--primary-fg); }
.problem-card--solution h3 { color: var(--primary-fg); }
.problem-card--solution p { color: rgba(255,255,255,0.8); }

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-it-works { padding: 5rem 0; background: var(--brand-surface); }
@media (min-width: 640px) { .how-it-works { padding: 7rem 0; } }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.step-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
@media (min-width: 1024px) { .step-card { align-items: flex-start; text-align: left; } }
.step-icon-wrap { position: relative; margin-bottom: 1.25rem; }
.step-icon { width: 64px; height: 64px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; border: 1px solid; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.step-number { position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; border-radius: 50%; background: var(--fg); color: white; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.step-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

/* ================================================
   FEATURES
   ================================================ */
.features { padding: 5rem 0; background: white; }
@media (min-width: 640px) { .features { padding: 7rem 0; } }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card { border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); background: white; transition: border-color 0.2s; }
.feature-card:hover { border-color: hsla(243,75%,59%,0.3); }
.feature-card--highlight { color: var(--primary-fg); border-color: transparent; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.feature-card--highlight:hover { border-color: transparent; }
.feature-card--highlight h3 { color: var(--fg) }
.feature-card--highlight p { color: rgba(255,255,255,0.8); }
.feature-icon { width: 40px; height: 40px; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; background: var(--accent); border: 1px solid hsla(243,75%,59%,0.2); }
.feature-card--highlight .feature-icon { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

/* ================================================
   BENEFITS
   ================================================ */
.benefits { padding: 5rem 0; background: var(--brand-surface); }
@media (min-width: 640px) { .benefits { padding: 7rem 0; } }
.benefits-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.benefits-list { display: flex; flex-direction: column; gap: 1rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 1rem; }
.benefit-icon { width: 40px; height: 40px; border-radius: 0.75rem; background: var(--accent); border: 1px solid hsla(243,75%,59%,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-item h3 { font-weight: 700; margin-bottom: 0.125rem; }
.benefit-item p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

/* Stats card */
.stats-card { border-radius: 1rem; background: white; border: 1px solid var(--border); box-shadow: 0 4px 16px rgba(0,0,0,0.08); overflow: hidden; }
.stats-card-header { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.75rem; }
.stats-card-icon { width: 40px; height: 40px; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; }
.stats-card-header h3 { font-weight: 700; }
.stats-card-header p { font-size: 0.75rem; color: var(--muted-fg); }
.stats-card-body { padding: 1.5rem; }
.stat-row { margin-bottom: 1.25rem; }
.stat-row:last-child { margin-bottom: 0; }
.stat-row-header { display: flex; justify-content: space-between; margin-bottom: 0.375rem; }
.stat-row-header span { font-size: 0.875rem; font-weight: 500; }
.stat-row-header strong { font-size: 0.875rem; font-weight: 700; }
.stat-bar { height: 8px; background: var(--muted); border-radius: 9999px; overflow: hidden; }
.stat-bar-fill { height: 100%; border-radius: 9999px; width: 0; transition: width 1.5s ease; }
.stats-card-footer { padding: 0 1.5rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding-top: 0.5rem; }
.stats-mini { border-radius: 0.75rem; background: var(--accent); padding: 1rem; text-align: center; }
.stats-mini-value { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; margin-bottom: 0.25rem; }
.stats-mini-label { font-size: 0.75rem; color: var(--muted-fg); }

/* Testimonials */
.testimonials { margin-top: 5rem; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: white; border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: #fbbf24; }
.testimonial-card blockquote { font-size: 0.875rem; line-height: 1.6; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--primary-fg); flex-shrink: 0; }
.testimonial-name { font-size: 0.875rem; font-weight: 600; }
.testimonial-role { font-size: 0.75rem; color: var(--muted-fg); }

/* ================================================
   CTA
   ================================================ */
.cta-section { padding: 5rem 0; background: white; }
@media (min-width: 640px) { .cta-section { padding: 7rem 0; } }
.cta-box { position: relative; border-radius: 1.5rem; overflow: hidden; padding: 2rem; text-align: center; color: white; }
@media (min-width: 640px) { .cta-box { padding: 3.5rem; } }
.cta-box .deco { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); }
.cta-box .deco1 { width: 256px; height: 256px; top: 0; left: 0; transform: translate(-50%, -50%); }
.cta-box .deco2 { width: 320px; height: 320px; bottom: 0; right: 0; transform: translate(33%, 33%); }
.cta-box .deco3 { width: 128px; height: 128px; top: 50%; right: 40px; transform: translateY(-50%); }
.cta-inner { position: relative; z-index: 1; }
.cta-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; border-radius: 9999px; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem; }
.cta-title { font-size: clamp(1.5rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1.25rem; line-height: 1.2; }
.cta-desc { font-size: clamp(1rem, 2vw, 1.125rem); opacity: 0.8; max-width: 560px; margin: 0 auto 2rem; line-height: 1.6; }
.cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.btn-cta-primary { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 1.75rem; border-radius: 0.75rem; background: white; color: var(--primary); font-weight: 700; font-size: 1rem; box-shadow: 0 4px 16px rgba(0,0,0,0.12); transition: all 0.2s; }
.btn-cta-primary:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.18); transform: translateY(-2px); }
.btn-cta-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 1.75rem; border-radius: 0.75rem; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: white; font-weight: 600; font-size: 1rem; transition: background 0.2s; }
.btn-cta-secondary:hover { background: rgba(255,255,255,0.25); }
.cta-note { margin-top: 1.5rem; font-size: 0.875rem; opacity: 0.6; }

/* ================================================
   FAQ
   ================================================ */
.faq-section { padding: 5rem 0; background: var(--brand-surface); }
@media (min-width: 640px) { .faq-section { padding: 7rem 0; } }
.faq-list { max-width: 768px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border-radius: 0.75rem; border: 1px solid var(--border); background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.04); overflow: hidden; }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 1rem 1.5rem; text-align: left; background: none; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--fg); cursor: pointer; transition: background 0.2s; }
.faq-trigger:hover { background: hsla(220,14%,96%,0.5); }
.faq-trigger svg { flex-shrink: 0; transition: transform 0.2s; color: var(--muted-fg); }
.faq-item.open .faq-trigger svg { transform: rotate(180deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-content { max-height: 500px; }
.faq-content-inner { padding: 0 1.5rem 1.25rem; }
.faq-content-inner::before { content: ''; display: block; height: 1px; background: var(--border); margin-bottom: 1rem; }
.faq-content-inner p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--fg); color: white; }
.footer-main { padding: 3rem 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 768px) { .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { grid-column: span 2; }
@media (min-width: 768px) { .footer-brand { grid-column: span 1; } }
.footer-brand-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand-logo-icon { width: 32px; height: 32px; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; }
.footer-brand-logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 280px; }
.footer-col h3 { font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem; margin-bottom: 1rem; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { padding: 1.5rem 0; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
