/* =====================================================
   Jasný Web — Shared Design System
   ===================================================== */

/* ── 1. TOKENS ────────────────────────────────────── */
:root {
  --bg:          #ffffff;
  --bg-2:        #f8fafc;
  --bg-3:        #f1f5f9;
  --surface:     #ffffff;
  --border:      rgba(15,23,42,.08);
  --border-2:    rgba(15,23,42,.15);

  --text:        #0f172a;
  --text-2:      #475569;
  --text-3:      #94a3b8;

  --accent:      #2563eb;
  --accent-2:    #1d4ed8;
  --accent-light:#dbeafe;
  --accent-rgb:  37,99,235;

  --grad:        linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);

  --shadow-sm:   0 1px 3px rgba(15,23,42,.06), 0 4px 16px rgba(15,23,42,.04);
  --shadow:      0 4px 20px rgba(15,23,42,.09), 0 1px 4px rgba(15,23,42,.05);
  --shadow-lg:   0 12px 48px rgba(15,23,42,.13), 0 4px 12px rgba(15,23,42,.07);
  --shadow-accent: 0 8px 28px rgba(var(--accent-rgb),.28);

  --radius:      14px;
  --radius-lg:   22px;
  --nav-h:       64px;
}

/* ── 2. NICHE THEMES ──────────────────────────────── */
.niche-stehovaci {
  --accent:        #ea580c;
  --accent-2:      #c2410c;
  --accent-light:  #ffedd5;
  --accent-rgb:    234,88,12;
  --grad:          linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  --shadow-accent: 0 8px 28px rgba(234,88,12,.28);
}
.niche-fotbal {
  --accent:        #1d4ed8;
  --accent-2:      #1e3a8a;
  --accent-light:  #dbeafe;
  --accent-rgb:    29,78,216;
  --grad:          linear-gradient(135deg, #1d4ed8 0%, #7c3aed 100%);
  --shadow-accent: 0 8px 28px rgba(29,78,216,.28);
}
.niche-doktori {
  --accent:        #0d9488;
  --accent-2:      #0f766e;
  --accent-light:  #ccfbf1;
  --accent-rgb:    13,148,136;
  --grad:          linear-gradient(135deg, #0d9488 0%, #0ea5e9 100%);
  --shadow-accent: 0 8px 28px rgba(13,148,136,.28);
}
.niche-remeslnici {
  --accent:        #ca8a04;
  --accent-2:      #a16207;
  --accent-light:  #fef9c3;
  --accent-rgb:    202,138,4;
  --grad:          linear-gradient(135deg, #ca8a04 0%, #f59e0b 100%);
  --shadow-accent: 0 8px 28px rgba(202,138,4,.28);
}
.niche-beauty {
  --accent:        #db2777;
  --accent-2:      #be185d;
  --accent-light:  #fce7f3;
  --accent-rgb:    219,39,119;
  --grad:          linear-gradient(135deg, #db2777 0%, #f472b6 100%);
  --shadow-accent: 0 8px 28px rgba(219,39,119,.28);
}
.niche-bagristi {
  --accent:        #c2410c;
  --accent-2:      #9a3412;
  --accent-light:  #ffedd5;
  --accent-rgb:    194,65,12;
  --grad:          linear-gradient(135deg, #c2410c 0%, #f59e0b 100%);
  --shadow-accent: 0 8px 28px rgba(194,65,12,.28);
}
.niche-hodinovy-manzel {
  --accent:        #16a34a;
  --accent-2:      #15803d;
  --accent-light:  #dcfce7;
  --accent-rgb:    22,163,74;
  --grad:          linear-gradient(135deg, #16a34a 0%, #4ade80 100%);
  --shadow-accent: 0 8px 28px rgba(22,163,74,.28);
}

/* ── 3. RESET & BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent-light); color: var(--accent-2); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ── 4. LAYOUT ────────────────────────────────────── */
.container    { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 840px; margin: 0 auto; padding: 0 24px; }
section       { padding: 96px 0; position: relative; }
.section-alt  { background: var(--bg-2); }

/* ── 5. NAV ───────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px;
  color: var(--text); letter-spacing: -.01em;
  transition: opacity .2s;
}
.logo:hover { opacity: .85; }
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad);
  display: grid; place-items: center;
  box-shadow: var(--shadow-accent);
  flex-shrink: 0;
}
.logo-mark svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.nav-links {
  display: flex; gap: 2px; list-style: none;
}
.nav-links a {
  display: flex; align-items: center;
  padding: 8px 14px;
  border-radius: 9px;
  font-size: 14px; font-weight: 500;
  color: var(--text-2);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-3); }
.nav-links a.active { color: var(--accent); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px;
  z-index: 99;
  box-shadow: var(--shadow);
  flex-direction: column; gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 16px; font-weight: 500;
  color: var(--text);
  transition: background .2s;
}
.mobile-menu a:hover { background: var(--bg-3); }
.mobile-menu .mobile-cta { color: var(--accent); font-weight: 700; }
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
  .nav-actions .btn:not(.btn-nav-only) { display: none; }
}

/* ── 6. BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 600; font-size: 15px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--grad); color: white;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 12px 36px rgba(var(--accent-rgb),.4); }
.btn-secondary {
  background: var(--bg-3); color: var(--text);
  border-color: var(--border-2);
}
.btn-secondary:hover { background: var(--bg-2); }
.btn-outline {
  background: transparent; color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent-light); }
.btn-white {
  background: white; color: var(--accent-2);
  font-weight: 700;
}
.btn-white:hover { background: rgba(255,255,255,.93); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.btn-ghost-white {
  background: rgba(255,255,255,.12); color: white;
  border-color: rgba(255,255,255,.3);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.22); }
.btn-lg { padding: 15px 30px; font-size: 16px; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── 7. TYPOGRAPHY ────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
h1 { font-size: clamp(38px, 6vw, 68px); }
h2 { font-size: clamp(28px, 4vw, 46px); margin-bottom: 16px; }
h3 { font-size: clamp(18px, 2.5vw, 24px); margin-bottom: 10px; }
p { line-height: 1.7; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; text-transform: uppercase;
  letter-spacing: .1em; font-weight: 700;
  color: var(--accent); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-header { max-width: 680px; margin-bottom: 56px; }
.section-header p { font-size: 18px; color: var(--text-2); margin-top: 14px; }
.text-muted { color: var(--text-2); }
.text-center { text-align: center; }
.text-center .section-header { margin-left: auto; margin-right: auto; }

/* ── 8. HERO ──────────────────────────────────────── */
.hero {
  padding: 96px 0 110px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: -200px;
  background:
    radial-gradient(700px circle at 80% -5%, rgba(var(--accent-rgb),.07), transparent 50%),
    radial-gradient(500px circle at 5% 90%, rgba(var(--accent-rgb),.05), transparent 50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--accent-light); color: var(--accent-2);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; max-width: 820px; }
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-2); max-width: 660px;
  margin-bottom: 40px; line-height: 1.65;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-proof {
  display: flex; align-items: center; gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.proof-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-2);
}
.proof-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--accent-light); color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.proof-icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── 9. GENERIC SECTION ELEMENTS ──────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── 10. NICHE CARDS (homepage) ───────────────────── */
.niche-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative; overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
}
.niche-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.niche-card.orange::before { background: linear-gradient(135deg, #ea580c, #f59e0b); }
.niche-card.blue::before   { background: linear-gradient(135deg, #1d4ed8, #7c3aed); }
.niche-card.teal::before   { background: linear-gradient(135deg, #0d9488, #0ea5e9); }
.niche-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.niche-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.niche-card.orange .niche-card-icon { background: #ffedd5; color: #ea580c; }
.niche-card.blue   .niche-card-icon { background: #dbeafe; color: #1d4ed8; }
.niche-card.teal   .niche-card-icon { background: #ccfbf1; color: #0d9488; }
.niche-card-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.niche-card h3 { font-size: 21px; margin-bottom: 12px; }
.niche-card p  { color: var(--text-2); font-size: 15px; margin-bottom: 28px; flex: 1; }
.niche-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 600;
  margin-top: auto;
  transition: gap .2s;
}
.niche-card.orange .niche-card-link { color: #ea580c; }
.niche-card.blue   .niche-card-link { color: #1d4ed8; }
.niche-card.teal   .niche-card-link { color: #0d9488; }
.niche-card.yellow::before { background: linear-gradient(135deg, #ca8a04, #f59e0b); }
.niche-card.pink::before   { background: linear-gradient(135deg, #db2777, #f472b6); }
.niche-card.amber::before  { background: linear-gradient(135deg, #c2410c, #f59e0b); }
.niche-card.green::before  { background: linear-gradient(135deg, #16a34a, #4ade80); }
.niche-card.yellow .niche-card-icon { background: #fef9c3; color: #ca8a04; }
.niche-card.pink   .niche-card-icon { background: #fce7f3; color: #db2777; }
.niche-card.amber  .niche-card-icon { background: #ffedd5; color: #c2410c; }
.niche-card.green  .niche-card-icon { background: #dcfce7; color: #16a34a; }
.niche-card.yellow .niche-card-link { color: #ca8a04; }
.niche-card.pink   .niche-card-link { color: #db2777; }
.niche-card.amber  .niche-card-link { color: #c2410c; }
.niche-card.green  .niche-card-link { color: #16a34a; }
.niche-card:hover .niche-card-link { gap: 10px; }

/* ── 11. PROBLEM / BENEFIT GRIDS ──────────────────── */
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.problem-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px 22px;
  background: var(--bg-3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.problem-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 10px;
  background: #fee2e2; color: #dc2626;
  display: grid; place-items: center;
}
.problem-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.problem-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.problem-item p  { font-size: 14px; color: var(--text-2); margin: 0; }

.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.benefit-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px 22px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.benefit-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--accent-light); color: var(--accent);
  display: grid; place-items: center;
}
.benefit-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.benefit-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.benefit-item p  { font-size: 14px; color: var(--text-2); margin: 0; }

/* ── 12. WHY US ───────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-item {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-3);
  border: 1px solid var(--border);
}
.why-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--accent-light); color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.why-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.why-item h3 { font-size: 17px; margin-bottom: 8px; }
.why-item p  { font-size: 14px; color: var(--text-2); }

/* ── 13. PACKAGES ─────────────────────────────────── */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.package-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: box-shadow .2s;
}
.package-card.recommended {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-accent);
}
.package-badge {
  display: none;
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: white;
  font-size: 11.5px; font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.package-card.recommended .package-badge { display: block; }
.package-name {
  font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--text-3); margin-bottom: 10px;
}
.package-price {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800; letter-spacing: -.02em;
  color: var(--text); margin-bottom: 4px;
}
.package-price-note { font-size: 13px; color: var(--text-3); margin-bottom: 20px; }
.package-desc { font-size: 15px; color: var(--text-2); margin-bottom: 24px; line-height: 1.6; }
.package-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.package-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-2);
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 50%;
  background: var(--accent-light); color: var(--accent);
  font-size: 11px; font-weight: 900;
  margin-top: 1px; flex-shrink: 0;
}

/* ── 14. MANAGEMENT TABLE ─────────────────────────── */
.mgmt-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.mgmt-table th {
  background: var(--bg-3);
  padding: 14px 20px;
  text-align: left;
  font-size: 12px; font-weight: 700;
  color: var(--text-3); text-transform: uppercase; letter-spacing: .07em;
}
.mgmt-table td { padding: 16px 20px; font-size: 15px; border-top: 1px solid var(--border); }
.mgmt-table tr:hover td { background: var(--bg-2); }
.price-bold { font-weight: 700; color: var(--text); }

/* ── 15. PROCESS STEPS ────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 25px; left: calc(10% + 25px); right: calc(10% + 25px);
  height: 2px; background: var(--border-2);
}
.process-step { text-align: center; }
.step-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border-2);
  display: grid; place-items: center;
  margin: 0 auto 14px;
  font-size: 17px; font-weight: 800; color: var(--accent);
  position: relative; z-index: 1;
}
.step-num.filled {
  background: var(--grad); color: white;
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}
.step-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step-desc  { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ── 16. SECTIONS PREVIEW (niche pages) ───────────── */
.sections-preview { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.section-preview-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--accent-light);
  border-radius: 11px;
  font-size: 14px; font-weight: 600;
  color: var(--accent-2);
}
.section-preview-item .check-sm {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  background: var(--accent); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900;
}

/* ── 17. FAQ ──────────────────────────────────────── */
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 28px;
  text-align: left;
  font-size: 16px; font-weight: 600; color: var(--text);
  background: var(--surface); cursor: pointer;
  transition: background .2s;
}
.faq-q:hover { background: var(--bg-2); }
.faq-q.open  { color: var(--accent); background: var(--bg-2); }
.faq-q svg   { width: 20px; height: 20px; flex-shrink: 0; transition: transform .25s; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.faq-q.open svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 28px;
}
.faq-a.open { max-height: 400px; padding: 0 28px 22px; }
.faq-a p { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* ── 18. FORM ─────────────────────────────────────── */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.f-group { display: flex; flex-direction: column; gap: 6px; }
.f-group.full { grid-column: 1 / -1; }
.f-label { font-size: 14px; font-weight: 600; color: var(--text); }
.f-input, .f-select, .f-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: 10px;
  font-size: 15px; font-family: inherit;
  color: var(--text); background: var(--surface);
  transition: border-color .2s, box-shadow .2s;
  outline: none; appearance: none;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.12);
}
.f-textarea { resize: vertical; min-height: 120px; }
.f-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px; padding-right: 42px; cursor: pointer;
}
.f-checkbox { display: flex; gap: 10px; align-items: flex-start; }
.f-checkbox input { margin-top: 3px; accent-color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }
.f-checkbox label { font-size: 14px; color: var(--text-2); }
.dynamic-fields { display: none; }
.dynamic-fields.active { display: contents; }
.form-success {
  display: none; text-align: center; padding: 48px 24px;
}
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--accent); margin: 0 auto 16px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p  { color: var(--text-2); }

/* ── 19. CTA SECTION ──────────────────────────────── */
.cta-section {
  background: var(--grad); color: white;
  text-align: center; padding: 96px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at 50% -30%, rgba(255,255,255,.14), transparent 60%);
  pointer-events: none;
}
.cta-section h2 { color: white; }
.cta-section p  { color: rgba(255,255,255,.8); font-size: 18px; margin-top: 14px; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── 20. FOOTER ───────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 15px; color: var(--text-2); margin-top: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4  { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--text-3); margin-bottom: 16px; }
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a   { font-size: 15px; color: var(--text-2); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 14px; color: var(--text-3); }

/* ── 21. DIVIDERS & MISC ──────────────────────────── */
hr.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  background: var(--accent-light); color: var(--accent-2);
  border-radius: 100px; font-size: 13px; font-weight: 600;
}
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-8 { margin-bottom: 32px; }

/* ── 22. SCROLL ANIMATIONS ────────────────────────── */
.anim {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.anim.visible { opacity: 1; transform: none; }
.anim-delay-1 { transition-delay: .1s; }
.anim-delay-2 { transition-delay: .2s; }
.anim-delay-3 { transition-delay: .3s; }

/* ── 23. RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .four-col    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero   { padding: 72px 0 80px; }
  .niche-cards, .packages, .three-col { grid-template-columns: 1fr; }
  .problem-grid, .benefit-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-lg { padding: 14px 22px; }
  .cta-btns { flex-direction: column; align-items: center; }
}
