/* ================================
   KAFA AI BUSINESS CAMP 2026
   Style Sheet
   ================================ */

/* TOKENS */
:root {
  --primary: #08306B;
  --primary-dark: #051f47;
  --primary-light: #1a4d8f;
  --secondary: #6BBE2E;
  --secondary-dark: #52971f;
  --accent: #F5B323;
  --accent-dark: #d9980e;
  --bg: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-dark: #08306B;
  --text: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 12px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 48px rgba(8,48,107,.12), 0 8px 20px rgba(0,0,0,.06);
  --shadow-xl: 0 32px 64px rgba(8,48,107,.18);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 68px;
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

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

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================
   NAV
   ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-link { display: flex; align-items: center; }
.nav-logo { height: 42px; width: auto; object-fit: contain; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-sm  { padding: 10px 20px; font-size: .875rem; }
.btn-lg  { padding: 14px 28px; font-size: 1rem; }
.btn-xl  { padding: 16px 36px; font-size: 1.0625rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(8,48,107,.28);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(8,48,107,.36);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.14);
}
.btn-white:hover {
  background: #f0f6ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}

/* ============================
   BADGES
   ============================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.badge-green { background: #dcfce7; color: #15803d; }
.badge-blue  { background: #dbeafe; color: #1d4ed8; }
.badge-yellow{ background: #fef9c3; color: #92400e; }

/* ============================
   SECTIONS
   ============================ */
.section { padding: 96px 0; }
.section-light { background: var(--bg-light); }
.section-dark  { background: var(--bg-dark); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header-light .section-tag  { color: var(--accent); }
.section-header-light .section-title { color: #fff; }

.section-tag {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 72px;
  background: linear-gradient(160deg, #fff 0%, #f0f6ff 60%, #e8f4fd 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,190,46,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(1.875rem, 4.5vw, 3.125rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.text-highlight {
  color: var(--secondary-dark);
  position: relative;
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
}
.meta-icon { font-size: 1rem; }
.meta-urgent {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a3412;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* MOCKUP GRID */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 14px;
  max-width: 380px;
  width: 100%;
}
.mockup-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mockup-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mockup-header {
  display: flex; gap: 5px; margin-bottom: 10px;
}
.mockup-header span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
}
.mockup-header span:first-child { background: #ff5f57; }
.mockup-header span:nth-child(2) { background: #febc2e; }
.mockup-header span:nth-child(3) { background: #28c840; }
.mockup-icon-big { font-size: 1.75rem; margin-bottom: 6px; }
.mockup-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .02em;
  margin-bottom: 10px;
}
.mockup-lines { display: flex; flex-direction: column; gap: 5px; }
.ml {
  height: 6px;
  border-radius: 100px;
  background: var(--border);
}
.ml-full { width: 100%; }
.ml-75   { width: 75%; }
.ml-60   { width: 60%; }
.ml-50   { width: 50%; }
.mockup-cta-mock {
  height: 20px;
  border-radius: 6px;
  background: var(--primary);
  opacity: .7;
  margin-top: 8px;
}
.mockup-phone-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-light);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 6px;
}
.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 40px;
  margin-top: 6px;
}
.mbar {
  flex: 1;
  background: linear-gradient(to top, var(--primary), var(--primary-light));
  border-radius: 3px 3px 0 0;
  opacity: .7;
}
.mockup-ai { grid-column: span 2; }

/* Float animations */
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.mockup-ebook   { animation: float1 4.5s ease-in-out infinite; }
.mockup-website { animation: float2 5s ease-in-out infinite .5s; }
.mockup-landing { animation: float1 5.5s ease-in-out infinite 1s; }
.mockup-app     { animation: float2 4s ease-in-out infinite 1.5s; }
.mockup-ai      { animation: float1 6s ease-in-out infinite .8s; }

/* ============================
   COUNTDOWN TIMER
   ============================ */
.countdown-wrap {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-bottom: 24px;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(8,48,107,.22);
}
.countdown-label {
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .03em;
  margin-bottom: 12px;
}
.countdown-boxes {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cd-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 64px;
}
.cd-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  transition: transform .15s ease;
}
.cd-num.flip {
  transform: scale(1.12);
}
.cd-unit {
  font-size: .6875rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.cd-sep {
  font-size: 1.75rem;
  font-weight: 900;
  color: rgba(255,255,255,.4);
  align-self: flex-start;
  padding-top: 10px;
  line-height: 1;
}
.countdown-wrap.ended .countdown-label {
  color: var(--accent);
}

/* ============================
   QUOTA URGENCY WIDGET
   ============================ */
.quota-widget {
  background: #fff;
  border: 1.5px solid #fecaca;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(220,38,38,.08);
}
.quota-widget-sm {
  margin-top: 20px;
  margin-bottom: 0;
}
.quota-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.quota-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
.quota-live {
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #ef4444;
  background: #fee2e2;
  border-radius: 100px;
  padding: 2px 8px;
}
.quota-text {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-muted);
}
.quota-count {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ef4444;
  letter-spacing: -.03em;
  transition: all .4s ease;
}
.quota-total {
  font-size: .875rem;
  color: var(--text-light);
}
.quota-bar-wrap {
  height: 8px;
  background: #f1f5f9;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}
.quota-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #f97316, #ef4444);
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  width: 0;
}
.quota-sub {
  font-size: .8125rem;
  color: var(--text-muted);
}
.quota-sub strong { color: #ef4444; }

/* ============================
   WHO IS THIS FOR
   ============================ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.who-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.who-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(8,48,107,.12);
  transform: translateY(-3px);
}
.who-icon { font-size: 2rem; margin-bottom: 8px; }
.who-label { font-size: .875rem; font-weight: 600; color: var(--text); }

/* ============================
   WHAT YOU WILL BUILD
   ============================ */
.build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.build-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.build-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 24px rgba(107,190,46,.12);
  transform: translateY(-2px);
}
.build-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  font-size: .875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.build-icon { font-size: 1.625rem; flex-shrink: 0; margin-top: 1px; }
.build-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.build-desc { font-size: .875rem; color: var(--text-muted); }

/* ============================
   MENTOR
   ============================ */
.mentor-wrap { max-width: 820px; margin: 0 auto; }
.mentor-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.mentor-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.32);
  border: 4px solid rgba(255,255,255,.2);
  object-fit: cover;
  object-position: center top;
}
.mentor-name {
  font-size: 1.625rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.mentor-title-role {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}
.mentor-roles {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
.mentor-story {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 28px;
}
.mentor-projects {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mentor-proj {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 10px 16px;
}
.proj-icon { font-size: 1.125rem; }
.proj-name { font-size: .875rem; font-weight: 600; color: #fff; }

/* ============================
   TIMELINE / KURIKULUM
   ============================ */
.timeline {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: flex;
  gap: 28px;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}
.timeline-item:not(:last-child) { margin-bottom: 24px; }
.timeline-marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(8,48,107,.22);
  position: relative;
  z-index: 1;
}
.t-day-num {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.timeline-body {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  margin-top: 4px;
}
.timeline-top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.t-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text);
  flex: 1;
  min-width: 200px;
}
.t-output {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dcfce7;
  border-radius: 100px;
  padding: 6px 14px;
  flex-shrink: 0;
}
.t-out-label { font-size: .75rem; color: #166534; font-weight: 600; }
.t-out-val   { font-size: .8125rem; font-weight: 700; color: #15803d; }
.t-desc {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================
   BONUS
   ============================ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bonus-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity var(--transition);
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.bonus-card:hover::before { opacity: 1; }
.bonus-star {
  background: linear-gradient(135deg, #fff9ed, #fff);
  border-color: var(--accent);
}
.bonus-star::before { background: linear-gradient(90deg, var(--accent), var(--secondary)); opacity: 1; }
.bonus-num {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--text-light);
  margin-bottom: 12px;
}
.bonus-icon { font-size: 2rem; margin-bottom: 10px; }
.bonus-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.bonus-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.5; }

/* ============================
   PRICING
   ============================ */
.pricing-wrap { max-width: 560px; }
.pricing-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.pricing-badge {
  background: var(--accent);
  color: var(--primary-dark);
  font-size: .8125rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  padding: 14px 20px;
}
.pricing-content { padding: 40px; }
.pricing-old-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.old-label { font-size: .875rem; color: var(--text-muted); }
.old-price {
  font-size: 1.125rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.pricing-new-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.new-label { font-size: .9375rem; color: var(--text-muted); }
.new-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.03em;
}
.pricing-saving {
  display: inline-flex;
  background: #dcfce7;
  color: #15803d;
  font-size: .875rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.pricing-includes { margin-bottom: 28px; }
.pi-title { font-size: .9375rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.pi-list { display: flex; flex-direction: column; gap: 8px; }
.pi-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--text-muted);
}
.pi-list li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-note {
  text-align: center;
  font-size: .8125rem;
  color: var(--text-light);
  margin-top: 16px;
}

/* ============================
   FORM
   ============================ */
.form-wrap { max-width: 600px; }
.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.req { color: #ef4444; }
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  font-size: .9375rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8,48,107,.1);
}
.form-input::placeholder { color: var(--text-light); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: .875rem;
  font-weight: 500;
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 16px;
}
.btn-submit { position: relative; overflow: hidden; }
.btn-arrow { transition: transform var(--transition); }
.btn-submit:hover .btn-arrow { transform: translateX(4px); }

/* ============================
   FINAL CTA
   ============================ */
.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #031430 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(107,190,46,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta-title {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 40px;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #0a0f1a;
  padding: 56px 0 40px;
}
.footer-inner {
  text-align: center;
}
.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 16px;
}
.footer-org {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: .9375rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 24px;
}
.footer-copy {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
}

/* ============================
   WHATSAPP FLOAT
   ============================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.36);
  transition: all var(--transition);
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,.46);
}

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .who-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .mentor-card { flex-direction: column; align-items: center; text-align: center; }
  .mentor-projects { justify-content: center; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .nav-logo { height: 34px; }
  .hero { padding-top: calc(var(--nav-h) + 24px); padding-bottom: 56px; }
  .hero-headline { font-size: 1.75rem; letter-spacing: -.02em; }
  .hero-sub { font-size: 1rem; }
  .hero-badges { gap: 6px; }
  .hero-badges .badge { font-size: .75rem; padding: 5px 10px; }

  /* Countdown — shrink boxes to fit mobile */
  .countdown-wrap { display: block; width: 100%; padding: 14px 16px; }
  .countdown-boxes { gap: 4px; justify-content: space-between; }
  .cd-box { min-width: 0; flex: 1; padding: 8px 4px; border-radius: 8px; }
  .cd-num { font-size: 1.5rem; }
  .cd-unit { font-size: .6rem; }
  .cd-sep { font-size: 1.25rem; padding-top: 8px; }

  /* Meta items — wrap and shrink */
  .hero-meta { gap: 8px; }
  .meta-item { font-size: .8125rem; padding: 6px 12px; }

  /* Quota widget */
  .quota-widget { padding: 14px 16px; }
  .quota-count { font-size: 1.25rem; }

  /* Rest of page */
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .build-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .timeline-body { padding: 18px 16px; }
  .timeline-top { flex-direction: column; gap: 8px; }
  .form-card { padding: 24px 16px; }
  .mentor-card { padding: 24px 16px; }
  .pricing-content { padding: 24px 20px; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: 1.625rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .new-price { font-size: 2.25rem; }
}

@media (max-width: 400px) {
  .hero-headline { font-size: 1.5rem; }
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .meta-item { width: 100%; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .cd-num { font-size: 1.25rem; }
}
