/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* === PALETTE — Founder's North exact brand colors === */
  --fn-deep:    #0F3528;   /* nền chính */
  --fn-mid:     #133526;   /* nền section xen kẽ */
  --fn-card:    #1D4A34;   /* nền card */
  --fn-dark:    #040e08;   /* footer */
  --fn-emerald: #286245;   /* highlight card / hero */

  --wasabi:  #809076;   /* text phụ, border */
  --khaki:   #F8E794;   /* text accent, gold — đúng brand */
  --earth:   #B86830;   /* CTA, nút bấm — đúng brand */

  --bg-base:       var(--fn-deep);
  --bg-surface:    var(--fn-mid);
  --bg-card:       rgba(29,74,52,0.6);
  --bg-card-hover: rgba(29,74,52,0.85);

  /* Text — cổ điển, ấm hơn */
  --text-primary:   #FFF9E6;
  --text-secondary: #C8C0A8;
  --text-muted:     #809076;
  --text-gold:      #F8E794;

  --border-subtle: rgba(128,144,118,0.22);
  --border-accent: rgba(248,231,148,0.28);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Font system — Philosopher cho heading, Be Vietnam Pro cho body */
  --font-heading: 'Philosopher', Georgia, serif;
  --font-body:    'Be Vietnam Pro', system-ui, sans-serif;
  --font:         var(--font-body);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.gradient-text {
  background: linear-gradient(135deg, #F8E794 0%, #B86830 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Headings dùng Philosopher */
h1, h2, h3 {
  font-family: var(--font-heading);
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--khaki);
  margin-bottom: 12px;
  padding: 4px 14px;
  border: 1px solid rgba(248,231,148,0.3);
  border-radius: 100px;
  font-family: var(--font-body);
  opacity: 0.85;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-primary);
}

.body-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* =====================================================
   BUTTON
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--earth) 0%, #D4823A 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(187,104,48,0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(187,104,48,0.6);
  filter: brightness(1.08);
}

.btn--large {
  font-size: 17px;
  padding: 18px 40px;
}

/* =====================================================
   GLASS CARD
   ===================================================== */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  padding: 100px 0 80px;
  position: relative;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, #286245 0%, #1D4A34 40%, #163B29 70%, #0F3528 100%);
}

.hero__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}

.glow--emerald {
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(40,98,69,0.5) 0%, transparent 70%);
  top: -80px; left: -120px;
}

.glow--earth {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,104,48,0.15) 0%, transparent 70%);
  top: 20px; right: -80px;
}

.hero .container { position: relative; z-index: 1; }

.badge-pill {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(248,215,148,0.08);
  border: 1px solid rgba(248,215,148,0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--khaki);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.offer-name-badge {
  display: inline-block;
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  font-family: var(--font-heading);
  padding: 8px 22px;
  margin-bottom: 20px;
  position: relative;
  color: var(--khaki);
}

.offer-name-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--khaki), var(--earth));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero__sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.hero__deliverable-peek {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(40,65,57,0.4);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 560px;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero__deliverable-peek span {
  color: var(--khaki);
  font-weight: 700;
  white-space: nowrap;
}

.hero__invest-row {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(40,65,57,0.5);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 8px 8px 8px 24px;
}

.invest-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wasabi);
}

.invest-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--khaki);
  letter-spacing: -0.01em;
}

.invest-price small {
  font-size: 12px;
  font-weight: 600;
}

/* =====================================================
   PROCESS SECTION
   ===================================================== */
.process-section {
  background: var(--bg-base);
}

.process-section .section-label,
.process-section .section-title {
  text-align: center;
  display: block;
}

.steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

/* Connector line removed — colors per card make it clear enough */

/* ── Step card base ── */
.step-card {
  border-radius: var(--radius-lg);
  padding: 32px 36px 32px 100px;
  position: relative;
  transition: filter 0.25s ease, transform 0.2s ease;
  border: 1px solid transparent;
}

.step-card:hover {
  filter: brightness(1.06);
  transform: translateX(4px);
}

/* ── Step 01: Emerald Green (#284139) → chữ kem sáng ── */
#step-1 {
  background: #284139;
  border-color: rgba(248,231,148,0.2);
}
#step-1 .step-card__title  { color: #FFF9E6; }
#step-1 .step-card__desc   { color: #C8C0A8; }
#step-1 .step-timing        { color: #F8E794; opacity: 0.9; }
#step-1 .step-number        { background: rgba(248,231,148,0.1); border-color: rgba(248,231,148,0.25); color: #F8E794; }
#step-1 .step-detail-item  { background: rgba(0,0,0,0.2); border-left-color: rgba(248,231,148,0.25); color: #C8C0A8; }
#step-1 .step-detail-item strong { color: #FFF9E6; }
#step-1 .step-card__output { background: rgba(0,0,0,0.2); border-color: rgba(248,231,148,0.2); color: #F8E794; }

/* ── Step 02: Wasabi (#809076) → chữ kem sáng (không phải tối) ── */
#step-2 {
  background: #809076;
  border-color: rgba(255,249,230,0.15);
}
#step-2 .step-card__title  { color: #FFF9E6; }
#step-2 .step-card__desc   { color: #F5F0E0; }
#step-2 .step-timing        { color: #F8E794; opacity: 0.95; }
#step-2 .step-number        { background: rgba(255,249,230,0.15); border-color: rgba(255,249,230,0.3); color: #FFF9E6; }
#step-2 .step-detail-item  { background: rgba(0,0,0,0.12); border-left-color: rgba(255,249,230,0.25); color: #F5F0E0; }
#step-2 .step-detail-item strong { color: #FFF9E6; }
#step-2 .step-card__output { background: rgba(0,0,0,0.12); border-color: rgba(255,249,230,0.2); color: #FFF9E6; }

/* ── Step 03: Creased Khaki (#F8E794) → chữ tối ── */
#step-3 {
  background: #F8E794;
  border-color: rgba(184,104,48,0.3);
}
#step-3 .step-card__title  { color: #0F3528; }
#step-3 .step-card__desc   { color: #2A3E2E; }
#step-3 .step-timing        { color: #B86830; font-weight: 700; }
#step-3 .step-number        { background: rgba(15,53,40,0.1); border-color: rgba(15,53,40,0.2); color: #0F3528; }
#step-3 .detail-dot--earth  { background: #B86830; }
#step-3 .step-detail-item  { background: rgba(255,255,255,0.5); border-left-color: rgba(184,104,48,0.4); color: #2A3E2E; }
#step-3 .step-detail-item strong { color: #0F3528; }
#step-3 .step-card__output { background: rgba(255,255,255,0.45); border-color: rgba(184,104,48,0.3); color: #0F3528; font-style: italic; }

/* ── Step 04: Egyptian Earth (#B86830) → chữ kem sáng ── */
#step-4 {
  background: #B86830;
  border-color: rgba(248,231,148,0.25);
}
#step-4 .step-card__title  { color: #FFF9E6; }
#step-4 .step-card__desc   { color: #F5EDD5; }
#step-4 .step-timing        { color: #FFF9E6; opacity: 0.8; }
#step-4 .step-number        { background: rgba(255,249,230,0.15); border-color: rgba(255,249,230,0.25); color: #FFF9E6; }
#step-4 .step-detail-item  { background: rgba(0,0,0,0.12); border-left-color: rgba(255,249,230,0.3); color: #F5EDD5; }
#step-4 .step-detail-item strong { color: #FFF9E6; }
#step-4 .step-card__output { background: rgba(0,0,0,0.15); border-color: rgba(255,249,230,0.2); color: #FFF9E6; }

.step-card__icon {
  position: absolute;
  left: 24px;
  top: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.step-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--khaki);
  background: rgba(248,215,148,0.08);
  border: 1px solid rgba(248,215,148,0.2);
  padding: 3px 10px;
  border-radius: 100px;
}

.step-timing {
  font-size: 12px;
  color: var(--earth);
  font-weight: 600;
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-card__desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.step-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.step-detail-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 12px 16px;
  background: rgba(0,0,0,0.15);
  border-radius: var(--radius-sm);
  border-left: 2px solid rgba(255,255,255,0.1);
}

.detail-dot {
  width: 6px; height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--wasabi);
  margin-top: 8px;
}

.detail-dot--earth {
  background: var(--earth);
}

.step-detail-item strong { color: var(--text-primary); }

.step-card__output {
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  line-height: 1.6;
  color: var(--text-primary);
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  font-style: italic;
}

/* =====================================================
   FOR WHO SECTION
   ===================================================== */
.forwho-section { background: var(--bg-surface); }

.forwho-section .section-label,
.forwho-section .section-title {
  text-align: center;
  display: block;
}

.forwho-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.forwho-card {
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: transform 0.2s ease;
}

.forwho-card:hover { transform: translateY(-2px); }

.forwho-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.forwho-tag {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
}

.forwho-card.fit {
  background: rgba(29,74,52,0.5);
  border-color: rgba(40,98,69,0.4);
}

.fit-tag {
  color: #8EB89D;
  background: rgba(40,65,57,0.6);
  border: 1px solid rgba(128,144,118,0.3);
}

.forwho-card.notfit {
  background: rgba(17,26,24,0.4);
  border-color: rgba(128,144,118,0.15);
}

.notfit-tag {
  color: var(--wasabi);
  background: rgba(128,144,118,0.08);
  border: 1px solid rgba(128,144,118,0.2);
}

/* =====================================================
   BRIDGE CARD (between sessions)
   ===================================================== */
.bridge-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(40,65,57,0.2);
  border: 1px dashed rgba(128,144,118,0.35);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  margin: -4px 0;
  position: relative;
}

.bridge-card::before,
.bridge-card::after {
  content: '';
  position: absolute;
  left: 55px;
  width: 2px;
  background: linear-gradient(180deg, var(--wasabi), transparent);
  opacity: 0.25;
}

.bridge-card::before { top: -20px; height: 20px; }
.bridge-card::after  { bottom: -20px; height: 20px; }

.bridge-card__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(128,144,118,0.1);
  border: 1px solid rgba(128,144,118,0.2);
  border-radius: 10px;
}

.bridge-card__content { flex: 1; }

.bridge-card__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wasabi);
  margin-bottom: 8px;
}

.bridge-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.bridge-card__desc strong { color: var(--text-primary); }

/* =====================================================
   REGISTRATION FORM SECTION
   ===================================================== */
.form-section {
  background: var(--bg-surface);
  padding: 88px 0;
}

.form-section .section-label,
.form-section .section-title {
  text-align: center;
  display: block;
}

.form-wrap {
  background: rgba(4,14,8,0.6);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}

.form-wrap::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(187,104,48,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.form-wrap::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(40,65,57,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.form-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.form-intro-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.form-price-box {
  background: rgba(248,215,148,0.06);
  border: 1px solid rgba(248,215,148,0.2);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
}

.form-price-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wasabi);
  margin-bottom: 8px;
}

.form-price-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--khaki);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 4px;
}

.form-price-sub {
  font-size: 12px;
  color: var(--wasabi);
}

.form-divider {
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 36px;
}

.reg-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-group label span {
  color: var(--earth);
  margin-left: 2px;
}

.form-control {
  background: rgba(40,65,57,0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form-control::placeholder {
  color: rgba(128,144,118,0.5);
  font-size: 14px;
}

.form-control:focus {
  border-color: rgba(248,215,148,0.45);
  background: rgba(40,65,57,0.5);
  box-shadow: 0 0 0 3px rgba(248,215,148,0.07);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23809076' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.form-control option {
  background: var(--emerald);
  color: var(--text-primary);
}

.form-check-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(40,65,57,0.25);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.form-check-group:hover {
  border-color: rgba(248,215,148,0.25);
}

.form-check-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--earth);
  cursor: pointer;
  margin-top: 1px;
}

.form-check-group label {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.form-check-group label strong {
  color: var(--text-primary);
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form-submit-note {
  font-size: 13px;
  color: var(--wasabi);
  line-height: 1.5;
}

.btn--submit {
  background: linear-gradient(135deg, var(--earth) 0%, #D4823A 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(187,104,48,0.4);
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}

.btn--submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(187,104,48,0.55);
  filter: brightness(1.08);
}

/* =====================================================
   CTA SECTION (simplified)
   ===================================================== */
.cta-section {
  background: var(--bg-base);
  padding: 60px 0 100px;
}

.cta-card {
  padding: 52px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: rgba(40,65,57,0.3);
  border-color: var(--border-accent);
}

.cta-card__glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(187,104,48,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-top-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 20px;
  padding: 5px 16px;
  background: rgba(187,104,48,0.1);
  border: 1px solid rgba(187,104,48,0.25);
  border-radius: 100px;
}

.cta-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--wasabi);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #040e08;
  border-top: 1px solid rgba(128,144,118,0.15);
  padding: 28px 0;
  text-align: center;
  font-size: 13px;
  color: var(--wasabi);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__headline { animation: fadeUp 0.6s ease both; }
.hero__sub      { animation: fadeUp 0.6s 0.1s ease both; }
.hero__deliverable-peek { animation: fadeUp 0.6s 0.2s ease both; }
.hero__invest-row       { animation: fadeUp 0.6s 0.3s ease both; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
  .section { padding: 40px 0; }

  /* Hero Section */
  .hero { padding: 60px 0 40px; }
  .hero__headline { font-size: clamp(28px, 8vw, 58px); margin-bottom: 16px; }
  .hero__sub { font-size: 14.5px; margin-bottom: 24px; }
  .hero__invest-row { flex-direction: column; border-radius: var(--radius-md); padding: 16px; gap: 12px; width: 100%; }
  
  /* Step Cards - Fix icon positioning on mobile */
  .step-card {
    padding: 24px 20px 24px 64px;
  }
  .step-card__icon {
    position: absolute;
    top: 24px;
    left: 16px;
    margin-bottom: 0;
    width: 34px; height: 34px;
  }
  .step-card__header {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  /* Bridge Card */
  .bridge-card {
    flex-direction: row;
    padding: 20px 16px;
    gap: 16px;
  }
  .bridge-card::before, .bridge-card::after {
    left: 38px;
  }

  /* Form & Grid */
  .forwho-grid { grid-template-columns: 1fr; }
  .form-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
  .form-row   { grid-template-columns: 1fr; }
  .form-wrap  { padding: 24px 16px; }
  .cta-card { padding: 32px 20px; }
  .form-submit-row { flex-direction: column; align-items: stretch; width: 100%; }
  .btn--submit { width: 100%; text-align: center; justify-content: center; }
  
  /* Font sizes */
  .section-title { font-size: clamp(24px, 7vw, 40px); margin-bottom: 24px; }
}
