/* Geppetto Creator Landing Page */

:root {
  --bg: #faf9f5;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-2: #f3f2ec;
  --text: #15192b;
  --text-muted: #5c6378;
  --text-soft: #8b92a5;
  --border: #e4e2da;
  --border-strong: #d0cdc3;
  --primary: #3d7bf2;
  --primary-2: #7b5bf0;
  --gradient: linear-gradient(135deg, #3d7bf2 0%, #7b5bf0 100%);
  --shadow-sm: 0 1px 3px rgba(21, 25, 43, 0.06);
  --shadow-md: 0 8px 30px rgba(21, 25, 43, 0.08);
  --shadow-lg: 0 20px 60px rgba(21, 25, 43, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --nav-h: 72px;
  --max-w: 1180px;
  --font: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
}

[data-theme='dark'] {
  --bg: #0c0e14;
  --bg-elevated: #12151f;
  --surface: #15192b;
  --surface-2: #1c2136;
  --text: #f0f1f5;
  --text-muted: #9aa3b8;
  --text-soft: #6b7289;
  --border: #2a3045;
  --border-strong: #3a4260;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
}

/* ── Header ── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
}

.logo__img--dark { display: none; }

[data-theme='dark'] .logo__img--light { display: none; }
[data-theme='dark'] .logo__img--dark { display: block; }

.footer .logo img {
  height: 88px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav a:hover { color: var(--text); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.theme-toggle:hover { border-color: var(--border-strong); color: var(--text); }
.theme-toggle .icon-sun { display: none; }
[data-theme='dark'] .theme-toggle .icon-moon { display: none; }
[data-theme='dark'] .theme-toggle .icon-sun { display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn--ghost {
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: var(--surface);
}

.btn--ghost:hover { border-color: var(--border-strong); color: var(--text); }

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 18px rgba(61, 123, 242, 0.35);
}

.btn--primary:hover { box-shadow: 0 6px 24px rgba(61, 123, 242, 0.45); }

.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  border-radius: 12px;
}

.btn--xl {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: 14px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(61, 123, 242, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.hero__badges span::before {
  content: '✓ ';
  color: var(--primary);
  font-weight: 700;
}

.hero__visual {
  position: relative;
}

.hero__browser {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}

.browser-bar span:first-child { background: #ff5f57; }
.browser-bar span:nth-child(2) { background: #febc2e; }
.browser-bar span:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-soft);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.25rem 0.65rem;
}

/* ── Sections common ── */
.section {
  padding: 5rem 0;
}

.section--alt { background: var(--surface-2); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section__header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ── Video ── */
.video-section {
  padding: 2rem 0 5rem;
}

.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 19 / 10;
  background: var(--surface-2);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Showcase cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.showcase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.showcase-card__media--gif {
  position: relative;
}

.showcase-card__media--gif .showcase-card__poster,
.showcase-card__media--gif .showcase-card__anim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.showcase-card__media--gif .showcase-card__poster {
  width: 100%;
  height: auto;
}

.showcase-card__media--gif .showcase-card__anim {
  object-fit: cover;
}

.showcase-card__media--gif .showcase-card__anim[hidden] {
  display: none;
}

.showcase-card__media--gif .showcase-card__poster[hidden] {
  display: none;
}

.showcase-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
}

.showcase-card__media.is-gif-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--surface-2) 0%,
    color-mix(in srgb, var(--border) 60%, var(--surface-2)) 50%,
    var(--surface-2) 100%
  );
  background-size: 200% 100%;
  animation: gif-shimmer 1.2s ease-in-out infinite;
}

@keyframes gif-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.showcase-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.showcase-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.showcase-card__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── PAS (Problem/Agitation/Solution) ── */
.pas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pas-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.pas-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.pas-card--problem .pas-card__label { color: #e05252; }
.pas-card--agitation .pas-card__label { color: #e0a020; }
.pas-card--solution .pas-card__label { color: #3d7bf2; }

.pas-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--primary) 12%, var(--surface));
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Team section ── */
.team-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.team-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.team-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.kanban-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.kanban-preview h4 {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.kanban-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.kanban-col {
  background: var(--surface-2);
  border-radius: 10px;
  padding: 0.75rem;
  min-height: 120px;
}

.kanban-col__title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  margin-bottom: 0.6rem;
}

.kanban-task {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  font-size: 0.78rem;
  margin-bottom: 0.4rem;
}

/* ── Templates ── */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.template-card {
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  background: var(--surface);
  transition: border-color 0.2s, background 0.2s;
}

.template-card:hover {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 4%, var(--surface));
}

.template-card--blank {
  border-style: solid;
  border-color: var(--border);
}

.template-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.template-card p {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* ── Audience ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.audience-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.audience-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.audience-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  max-width: 280px;
  margin-inline: auto;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* ── Platform features (replaces pricing) ── */
.features-catalog {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.feature-group__head h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.feature-group__badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  background: color-mix(in srgb, var(--primary) 14%, var(--surface));
  color: var(--primary);
}

.feature-group__badge--expert {
  background: color-mix(in srgb, #7b5bf0 14%, var(--surface));
  color: #7b5bf0;
}

.feature-group__badge--premium {
  background: color-mix(in srgb, #e0a020 16%, var(--surface));
  color: #c48a10;
}

[data-theme='dark'] .feature-group__badge--premium { color: #f0c040; }

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 1.25rem 1.5rem;
}

.feature-pill {
  font-size: 0.84rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.feature-pill:hover {
  border-color: color-mix(in srgb, var(--primary) 50%, var(--border));
  color: var(--text);
}

.features-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  color: #fff;
}

.features-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.features-cta p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.features-cta .btn {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.features-cta .btn:hover { box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2); }

/* ── CTA banner ── */
.cta-banner {
  padding: 4rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-banner p:not(.cta-banner__note):not(.cta-banner__badge) {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.cta-banner__note {
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.cta-banner__badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 14%, var(--surface));
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ── Modal cupom (LeadLovers) ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 20, 0.55);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  width: min(100%, 440px);
  max-height: min(92vh, 720px);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 1.75rem 1.75rem;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s;
}

.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.modal__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  color: var(--text-muted);
  display: grid;
  place-items: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.modal__close:hover {
  color: var(--text);
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, var(--surface-2));
}

.modal__header {
  margin-bottom: 1.25rem;
}

.modal__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin: 0;
}

.modal__header h2 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.modal__lead {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.modal__consent {
  margin-top: 1rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-soft);
  text-align: center;
}

.ll-form-embed form {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ll-form-embed label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 0.5rem;
}

#cupom-modal .ll-form-embed input.form-control.form-ll,
#cupom-modal .ll-form-embed input.form-ll[type="text"],
#cupom-modal .ll-form-embed input.form-ll[type="email"] {
  width: 100%;
  padding: 0.75rem 0.9rem !important;
  border-radius: 10px !important;
  border: 1.5px solid var(--border-strong) !important;
  background: var(--bg-elevated) !important;
  color: var(--text) !important;
  font-family: var(--font) !important;
  font-size: 0.95rem !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  -webkit-appearance: none;
  appearance: none;
}

[data-theme='dark'] #cupom-modal .ll-form-embed input.form-control.form-ll,
[data-theme='dark'] #cupom-modal .ll-form-embed input.form-ll[type="text"],
[data-theme='dark'] #cupom-modal .ll-form-embed input.form-ll[type="email"] {
  border-color: #4a5270 !important;
  background: var(--bg) !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

#cupom-modal .ll-form-embed input.form-control.form-ll::placeholder,
#cupom-modal .ll-form-embed input.form-ll::placeholder {
  color: var(--text-soft) !important;
  opacity: 1 !important;
}

#cupom-modal .ll-form-embed input.form-control.form-ll:focus,
#cupom-modal .ll-form-embed input.form-ll:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 20%, transparent) !important;
}

.ll-form-embed .ll-form-submit {
  width: 100%;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--text-soft);
}

.faq-item.is-open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 1.35rem 1.15rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-item.is-open .faq-answer { display: block; }

/* ── Footer ── */
.footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 320px;
}

.footer h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.footer ul { display: flex; flex-direction: column; gap: 0.55rem; }

.footer a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer a:hover { color: var(--text); }

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.footer__bottom a { color: var(--primary); }

/* ── Mobile nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.mobile-nav.is-open {
  display: flex;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.mobile-nav a {
  padding: 0.85rem 0;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__grid,
  .team-section,
  .about-grid { grid-template-columns: 1fr; }

  .about-photo {
    max-width: 240px;
    margin-bottom: 0.5rem;
  }

  .cards-grid,
  .features-grid,
  .pas-grid,
  .audience-grid { grid-template-columns: repeat(2, 1fr); }

  .templates-grid { grid-template-columns: repeat(2, 1fr); }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav, .header__actions .btn--ghost:not(.btn--coupon) { display: none; }

  .menu-toggle { display: flex; }

  .header__actions .btn--coupon { display: none; }

  .cards-grid,
  .features-grid,
  .pas-grid,
  .audience-grid,
  .templates-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 2.5rem 1.5rem; }

  .hero { padding-top: calc(var(--nav-h) + 2rem); }

  .section { padding: 3.5rem 0; }
}
