/* ============================================================
   DECISIONBETTER — Seoul Style
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@300;400;500&display=swap');

:root {
  /* Seoul Design Tokens */
  --bg:           #fafaf8;
  --bg-surface:   #f2f0eb;
  --ink:          #191917;
  --ink-muted:    #6b6b63;
  --accent:       #3d5cff;
  --accent-2:     #ff6b35;
  --accent-soft:  rgba(61,92,255,0.08);
  --line:         rgba(25,25,23,0.1);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: 120px;
  --container:   1280px;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ── TEXTURE — Seoul gradient mesh ─────────────────────────── */
.texture-seoul {
  background-image:
    radial-gradient(ellipse at 15% 85%, rgba(61,92,255,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(255,107,53,0.055) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(61,92,255,0.03) 0%, transparent 70%);
}

/* ── CLIP-PATH DIVIDERS ────────────────────────────────────── */
.clip-diagonal-br {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  padding-bottom: calc(var(--section-pad) + 8vw);
}
.clip-cover-prev {
  position: relative;
  z-index: 2;
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  margin-top: -48px;
}

/* ── CONTAINER ─────────────────────────────────────────────── */
.wrapper {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 5vw;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px rgba(61,92,255,0.25);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(61,92,255,0.35); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn svg {
  width: 18px;
  height: 18px;
}

/* ── NAV — Full-screen Blast (Nav A) ───────────────────────── */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease;
}
.top-bar.scrolled {
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.top-bar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
}
.top-bar-logo svg { width: 28px; height: 28px; }
.menu-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
  z-index: 300;
  color: var(--ink);
}
.menu-toggle:hover { background: var(--accent-soft); }
.menu-toggle svg { width: 22px; height: 22px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }
.top-bar-cta-desktop {
  display: none;
}

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg);
}
.nav-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(61,92,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(255,107,53,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.nav-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--ink);
  position: relative;
  z-index: 1;
  transition: color 0.2s ease;
  padding: 8px 0;
}
.nav-item:hover { color: var(--accent); }

@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .top-bar-links {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .top-bar-links a {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--ink-muted);
    transition: color 0.2s ease;
  }
  .top-bar-links a:hover { color: var(--accent); }
  .top-bar-cta-desktop {
    display: inline-flex;
    padding: 10px 24px;
    font-size: 0.85rem;
  }
}
@media (max-width: 899px) {
  .top-bar-links { display: none; }
}

/* ── HERO — Full-screen Bold (Variant A) ───────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
}
.hero-glow-1 {
  top: -20%;
  right: -10%;
  background: var(--accent);
}
.hero-glow-2 {
  bottom: -30%;
  left: -5%;
  background: var(--accent-2);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 7rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .accent-2 { color: var(--accent-2); }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 4px;
}

.hero-footnote {
  margin-top: 16px;
  font-size: 0.72rem;
  color: var(--ink-muted);
  opacity: 0.6;
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 24px; }
}

/* ── PROBLEM SECTION ───────────────────────────────────────── */
.problem {
  padding: 140px 0 120px;
  background: var(--bg-surface);
  position: relative;
}
.problem-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto;
}
.section-sub {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--ink-muted);
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.7;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pain-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.pain-card:hover { transform: translateY(-4px); }
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-2);
  opacity: 0.7;
}
.pain-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 6rem);
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  color: rgba(61,92,255,0.08);
}
.pain-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.pain-card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ── WHAT WE AUTOMATE — Bento Grid ─────────────────────────── */
.automate {
  padding: 140px 0;
  position: relative;
}
.automate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 64px;
}
.auto-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.auto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.auto-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.auto-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.auto-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.auto-card p {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.auto-card .time-saved {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255,107,53,0.08);
  color: var(--accent-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
}
.auto-card .time-saved svg { width: 14px; height: 14px; }

/* Featured card spans 2 columns */
.auto-card--featured {
  grid-column: span 2;
  background: var(--ink);
  color: #fff;
}
.auto-card--featured h3 { color: #fff; }
.auto-card--featured p { color: rgba(255,255,255,0.65); }
.auto-card--featured .auto-card-icon {
  background: rgba(255,255,255,0.1);
}
.auto-card--featured .auto-card-icon svg { color: var(--accent-2); }
.auto-card--featured .time-saved {
  background: rgba(255,255,255,0.1);
  color: var(--accent-2);
}

@media (max-width: 768px) {
  .automate-grid { grid-template-columns: 1fr; }
  .auto-card--featured { grid-column: span 1; }
}

/* ── CAPABILITIES — Two Column ─────────────────────────────── */
.capabilities-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 64px;
}
.cap-col {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cap-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.cap-col-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.cap-col-header svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}
.cap-col-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
}
.cap-list {
  list-style: none;
}
.cap-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-muted);
  padding-left: 0;
}
.cap-list li:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .capabilities-two-col { grid-template-columns: 1fr; }
}

/* ── HOW IT WORKS — Timeline ───────────────────────────────── */
.how-it-works {
  padding: 140px 0;
  background: var(--bg-surface);
  position: relative;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 72px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.timeline-item {
  display: flex;
  gap: 40px;
  padding: 48px 0;
  position: relative;
}
.timeline-item + .timeline-item {
  border-top: 1px solid var(--line);
}
.timeline-num {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
}
.timeline-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.timeline-body p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .timeline::before { left: 20px; }
  .timeline-num { width: 42px; height: 42px; font-size: 1rem; }
  .timeline-item { gap: 24px; padding: 32px 0; }
}

/* ── TWO PATHS — Workshop + Done For You ───────────────────── */
.two-paths {
  padding: 140px 0;
  position: relative;
}
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 64px;
}
.path-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.path-card--dark {
  background: var(--bg-surface);
  color: #fff;
}
.path-card--dark p { color: var(--ink-muted); }
.path-card--dark .path-subtitle { color: var(--accent-2); }
.path-card--dark .path-features li { color: var(--ink-muted); border-color: rgba(0,0,0,0.08); }
.path-card--dark .path-features svg { color: var(--accent-2); }
.path-card--dark h3 { color: var(--ink); }
.path-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.path-card--dark .path-icon-wrap {
  background: rgba(255,107,53,0.1);
}
.path-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}
.path-card--dark .path-icon-wrap svg {
  color: var(--accent-2);
}
.path-card--dark .btn-primary {
  color: #fff;
}
.path-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.path-subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.path-card > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.path-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}
.path-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-muted);
}
.path-features li:last-child { border-bottom: none; }
.path-features svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .paths-grid { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS — Quote Wall ─────────────────────────────── */
.testimonials {
  padding: 140px 0;
  position: relative;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.test-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.test-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 28px;
}
.test-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
}
.test-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
}
.test-role {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq {
  padding: 140px 0;
  background: var(--bg-surface);
  position: relative;
}
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-top: 64px;
}
.faq-anchor {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 8rem);
  color: rgba(61,92,255,0.06);
  line-height: 0.9;
  letter-spacing: -0.04em;
  position: sticky;
  top: 140px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--accent); }
.faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.faq-q-icon::before {
  content: '+';
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 28px;
}
.faq-a p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-anchor { position: static; font-size: 4rem; }
}

/* ── ABOUT / CREDIBILITY ───────────────────────────────────── */
.about {
  padding: 140px 0;
  position: relative;
}
.about-inner {
  max-width: 800px;
  margin: 0 auto;
}
.about-inner .section-title {
  text-align: left;
  margin-bottom: 36px;
}
.about-text p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }

/* ── FINAL CTA — Lead Capture Form ─────────────────────────── */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
  z-index: 0;
}
.final-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(61,92,255,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 40%, rgba(255,107,53,0.12) 0%, transparent 55%);
}
.final-cta .wrapper {
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 20px;
}
.final-cta p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

/* Form */
.cta-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row--half {
  grid-template-columns: 1fr;
  max-width: 50%;
}
.form-row--three {
  grid-template-columns: 1fr 1fr 1fr;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}
.form-optional {
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}
.form-group input::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group select option {
  background: var(--ink);
  color: #fff;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}
.form-submit {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 18px 36px;
  box-shadow: 0 4px 24px rgba(61,92,255,0.4);
}

/* Trust badges */
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}
.cta-trust-item svg {
  width: 16px;
  height: 16px;
  color: #10b981;
}

@media (max-width: 600px) {
  .form-row,
  .form-row--three { grid-template-columns: 1fr; }
  .form-row--half { max-width: 100%; }
  .cta-trust { flex-direction: column; align-items: center; gap: 12px; }
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo svg { width: 24px; height: 24px; }
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 320px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links ul,
.footer-contact ul {
  list-style: none;
}
.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}
.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── REVEAL ANIMATION STATES ───────────────────────────────── */
.js-reveal {
  opacity: 0;
  transform: translateY(32px);
}
