/* ============================================================
   Landing Page CSS — Gofudo Partner
   Converted from partner-web/src/app/page.tsx inline styles
   ============================================================ */

:root {
  --lp-primary:       #1a73e8;
  --lp-primary-dark:  #0d47a1;
  --lp-primary-light: #e8f0fe;
  --lp-accent:        #00c853;
  --lp-accent-dark:   #00963f;
  --lp-red:           #f44336;
  --lp-orange:        #ff9800;
  --lp-dark:          #0f1923;
  --lp-dark-2:        #1a2836;
  --lp-gray-1:        #3b4a58;
  --lp-gray-2:        #6b7c8e;
  --lp-gray-3:        #94a3b5;
  --lp-gray-4:        #d0d8e0;
  --lp-light:         #f4f7fa;
  --lp-white:         #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--lp-dark);
  background: var(--lp-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.05);
  padding: 16px 0;
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 22px; font-weight: 700; color: var(--lp-primary);
  text-decoration: none; letter-spacing: -.5px;
}
.nav-cta {
  background: var(--lp-primary); color: #fff; border: none;
  padding: 10px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  text-decoration: none; transition: background .2s;
}
.nav-cta:hover { background: var(--lp-primary-dark); }

/* ---- Hero ---- */
.hero {
  padding: 140px 32px 80px;
  background: linear-gradient(170deg, var(--lp-dark) 0%, var(--lp-dark-2) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,232,.15) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,83,.08) 0%, transparent 70%);
}
.hero-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 2; }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0,1.7fr) minmax(0,1fr);
  gap: 28px; align-items: start;
}
.hero-badge {
  display: inline-block;
  background: rgba(0,200,83,.15); color: var(--lp-accent);
  font-size: 13px; font-weight: 500;
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 24px; letter-spacing: .3px;
}
.hero h1 {
  font-size: clamp(32px,5vw,56px); font-weight: 700;
  color: var(--lp-white); line-height: 1.12;
  max-width: 700px; margin-bottom: 20px; letter-spacing: -1px;
}
.hero h1 .highlight { color: var(--lp-accent); }
.hero-sub {
  font-size: 18px; color: var(--lp-gray-3);
  max-width: 540px; line-height: 1.7; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px; margin-top: 48px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat .num { font-size: 32px; font-weight: 700; color: var(--lp-white); }
.hero-stat .label { font-size: 13px; color: var(--lp-gray-3); margin-top: 4px; }

/* Get-started card */
.hero-get-started {
  background: var(--lp-white); border-radius: 16px;
  padding: 26px; box-shadow: 0 18px 48px rgba(0,0,0,.28);
  border: 1px solid rgba(26,115,232,.15);
}
.get-started-kicker {
  display: inline-flex; align-items: center;
  background: var(--lp-primary-light); color: var(--lp-primary);
  border-radius: 999px; padding: 4px 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .4px;
  text-transform: uppercase; margin-bottom: 10px;
}
.hero-get-started h2 { font-size: 24px; line-height: 1.2; color: var(--lp-dark); margin-bottom: 8px; font-weight: 700; }
.hero-get-started p  { font-size: 14px; line-height: 1.6; color: var(--lp-gray-2); margin-bottom: 18px; }
.get-started-form { display: grid; gap: 12px; }
.get-started-form label { font-size: 13px; font-weight: 600; color: var(--lp-gray-1); }
.get-started-form input[type=tel] {
  width: 100%; border-radius: 10px;
  border: 1px solid var(--lp-gray-4);
  background: #f8fbff; color: var(--lp-dark);
  padding: 13px 14px; font-size: 15px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.get-started-form input[type=tel]:focus {
  border-color: var(--lp-primary);
  box-shadow: 0 0 0 3px rgba(26,115,232,.12);
}
.get-started-form input[type=tel].field-invalid {
  border-color: var(--lp-red);
  box-shadow: 0 0 0 3px rgba(244,67,54,.14);
  background: #fff5f4;
}
.field-error { font-size: 12px; font-weight: 500; color: var(--lp-red); margin-top: -4px; }
.get-started-btn { width: 100%; justify-content: center; margin-top: 4px; }
.terms-check {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 12px; color: var(--lp-gray-2); line-height: 1.5;
  margin-top: 2px; border: 1px solid transparent;
  border-radius: 10px; padding: 8px; cursor: pointer;
}
.terms-check.terms-invalid { border-color: var(--lp-red); background: #fff5f4; }

/* ---- Shared section helpers ---- */
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .overtitle {
  font-size: 13px; font-weight: 500; color: var(--lp-primary);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.section-head h2 {
  font-size: 32px; font-weight: 700; color: var(--lp-dark);
  letter-spacing: -.5px; margin-bottom: 12px;
}
.section-head p { font-size: 16px; color: var(--lp-gray-2); max-width: 520px; margin: 0 auto; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lp-primary); color: #fff;
  padding: 14px 32px; border-radius: 10px;
  font-size: 16px; font-weight: 500;
  text-decoration: none; transition: all .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--lp-primary-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--lp-white);
  padding: 14px 32px; border-radius: 10px;
  font-size: 16px; font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.2); transition: all .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }

/* ---- Pain ---- */
.pain { padding: 80px 32px; background: #fff8f6; }
.pain-inner { max-width: 1140px; margin: 0 auto; }
.pain-head { text-align: center; margin-bottom: 48px; }
.pain-head .overtitle { font-size: 13px; font-weight: 500; color: var(--lp-red); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.pain-head h2 { font-size: 32px; font-weight: 700; color: var(--lp-dark); letter-spacing: -.5px; }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.pain-card {
  background: var(--lp-white); border-radius: 16px;
  padding: 28px 24px; border: 1px solid #ffe0d6;
  position: relative; overflow: hidden;
}
.pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--lp-red), var(--lp-orange));
}
.pain-icon { font-size: 32px; margin-bottom: 16px; }
.pain-card h3 { font-size: 18px; font-weight: 700; color: var(--lp-dark); margin-bottom: 8px; }
.pain-card p  { font-size: 14px; color: var(--lp-gray-2); line-height: 1.7; }
.pain-num { font-size: 28px; font-weight: 700; color: var(--lp-red); margin-top: 12px; }

/* ---- Comparison table ---- */
.comparison { padding: 80px 32px; background: var(--lp-white); }
.compare-table {
  width: 100%; border-collapse: collapse;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 0 0 1px var(--lp-gray-4);
}
.compare-table thead th {
  padding: 18px 20px; text-align: left;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}
.compare-table thead th:first-child { background: var(--lp-light); color: var(--lp-gray-2); }
.compare-table thead th:nth-child(2) { background: #fff0f0; color: var(--lp-red); }
.compare-table thead th:last-child   { background: #e8f5e9; color: var(--lp-accent-dark); }
.compare-table tbody td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--lp-gray-4); }
.compare-table tbody td:first-child  { font-weight: 500; color: var(--lp-dark); }
.compare-table tbody td:nth-child(2) { color: var(--lp-red); background: #fffafa; }
.compare-table tbody td:last-child   { color: var(--lp-accent-dark); background: #fafff5; font-weight: 600; }
.compare-table tbody tr:last-child td { border-bottom: none; font-size: 16px; font-weight: 700; }

/* ---- USP ---- */
.usp { padding: 80px 32px; background: var(--lp-light); }
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.usp-card {
  background: var(--lp-white); border-radius: 16px;
  padding: 32px 28px; border: 1px solid rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s; position: relative;
}
.usp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.usp-num {
  position: absolute; top: 16px; right: 20px;
  font-size: 48px; font-weight: 700;
  color: rgba(26,115,232,.06); line-height: 1;
}
.usp-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.usp-card h3 { font-size: 18px; font-weight: 700; color: var(--lp-dark); margin-bottom: 8px; }
.usp-card p  { font-size: 14px; color: var(--lp-gray-2); line-height: 1.7; }
.tag { display: inline-block; font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 6px; margin-top: 12px; }
.tag-save  { background: #e8f5e9; color: var(--lp-accent-dark); }
.tag-trust { background: var(--lp-primary-light); color: var(--lp-primary); }
.tag-grow  { background: #fff3e0; color: #e65100; }
.tag-easy  { background: #f3e8fd; color: #7b1fa2; }
.u1 .usp-icon { background: #e8f5e9; }
.u2 .usp-icon { background: var(--lp-primary-light); }
.u3 .usp-icon { background: #fff3e0; }
.u4 .usp-icon { background: #e8f5e9; }
.u5 .usp-icon { background: #f3e8fd; }
.u6 .usp-icon { background: var(--lp-primary-light); }
.u7 .usp-icon { background: #fff3e0; }
.u8 .usp-icon { background: #e8f5e9; }

/* ---- Steps ---- */
.steps { padding: 80px 32px; background: var(--lp-white); }
.steps-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 36px;
  left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--lp-primary), var(--lp-accent));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--lp-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700;
  margin: 0 auto 20px; position: relative;
  box-shadow: 0 4px 20px rgba(26,115,232,.3);
}
.step h3 { font-size: 16px; font-weight: 700; color: var(--lp-dark); margin-bottom: 8px; }
.step p   { font-size: 13px; color: var(--lp-gray-2); line-height: 1.6; }
.time-badge {
  display: inline-block;
  background: var(--lp-primary-light); color: var(--lp-primary);
  font-size: 11px; font-weight: 500; padding: 4px 10px;
  border-radius: 6px; margin-top: 10px;
}

/* ---- Activation timeline ---- */
.activation { padding: 80px 32px; background: var(--lp-dark); }
.activation .section-head .overtitle { color: var(--lp-accent); }
.activation .section-head h2 { color: var(--lp-white); }
.activation .section-head p  { color: var(--lp-gray-3); }
.act-timeline {
  max-width: 700px; margin: 0 auto;
  position: relative; padding-left: 40px;
}
.act-timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--lp-primary), var(--lp-accent));
}
.act-step { position: relative; padding: 0 0 40px 32px; }
.act-step:last-child { padding-bottom: 0; }
.act-dot {
  position: absolute; left: -32px; top: 2px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--lp-dark-2); border: 2px solid var(--lp-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--lp-primary); font-weight: 700;
}
.act-step.done .act-dot { background: var(--lp-accent); border-color: var(--lp-accent); color: #fff; }
.act-step h3 { font-size: 17px; font-weight: 700; color: var(--lp-white); margin-bottom: 6px; }
.act-step p  { font-size: 14px; color: var(--lp-gray-3); line-height: 1.7; }
.act-tag { display: inline-block; font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 6px; margin-top: 8px; }
.act-auto { background: rgba(0,200,83,.15); color: var(--lp-accent); }
.act-you  { background: rgba(26,115,232,.15); color: #64b5f6; }
.act-us   { background: rgba(255,152,0,.15); color: var(--lp-orange); }

/* ---- Calculator ---- */
.calculator {
  padding: 80px 32px; background: var(--lp-primary);
  position: relative; overflow: hidden;
}
.calculator::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.calc-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.calc-inner h2  { font-size: 32px; font-weight: 700; color: var(--lp-white); margin-bottom: 12px; }
.calc-inner .sub { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 36px; }
.calc-card { background: var(--lp-white); border-radius: 20px; padding: 36px; text-align: left; box-shadow: 0 20px 60px rgba(0,0,0,.15); }
.calc-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--lp-gray-4); font-size: 15px; }
.calc-row:last-child { border-bottom: none; }
.calc-row .clabel { color: var(--lp-gray-2); }
.calc-row .cold   { color: var(--lp-red); font-weight: 600; text-decoration: line-through; }
.calc-row .cnew   { color: var(--lp-accent-dark); font-weight: 700; font-size: 17px; }
.calc-row .cbold  { font-weight: 600; color: var(--lp-dark); }
.calc-row .cgray  { color: var(--lp-gray-2); }
.calc-total { margin-top: 16px; padding: 20px; background: #e8f5e9; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; }
.calc-total .clabel { font-size: 18px; font-weight: 700; color: var(--lp-dark); }
.calc-total .amt    { font-size: 28px; font-weight: 700; color: var(--lp-accent-dark); }

/* ---- Early bird ---- */
.early { padding: 80px 32px; background: var(--lp-light); }
.early-card {
  max-width: 800px; margin: 0 auto;
  background: var(--lp-white); border-radius: 20px;
  padding: 48px; text-align: center;
  border: 2px dashed var(--lp-primary);
}
.early-card .gift { font-size: 48px; margin-bottom: 16px; }
.early-card h2   { font-size: 28px; font-weight: 700; color: var(--lp-dark); margin-bottom: 8px; }
.early-card .sub { font-size: 15px; color: var(--lp-gray-2); margin-bottom: 28px; }
.early-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; margin-bottom: 32px; }
.early-perk {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px 16px; background: var(--lp-light);
  border-radius: 10px; font-size: 14px; color: var(--lp-dark); line-height: 1.5;
}
.early-perk .check { color: var(--lp-accent); font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ---- FAQ ---- */
.faq { padding: 80px 32px; background: var(--lp-white); }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--lp-gray-4); padding: 20px 0; }
.faq-q { font-size: 16px; font-weight: 700; color: var(--lp-dark); margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--lp-gray-2); line-height: 1.7; }

/* ---- CTA footer ---- */
.cta-footer { padding: 80px 32px; background: var(--lp-dark); text-align: center; }
.cta-footer h2 { font-size: 36px; font-weight: 700; color: var(--lp-white); margin-bottom: 12px; }
.cta-footer p  { font-size: 16px; color: var(--lp-gray-3); margin-bottom: 32px; }
.cta-footer .btn-primary { padding: 16px 40px; font-size: 18px; border-radius: 12px; }
.cta-contact { margin-top: 24px; font-size: 14px; color: var(--lp-gray-3); }
.cta-contact a { color: var(--lp-accent); text-decoration: none; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-layout, .pain-grid, .usp-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-get-started { padding: 20px; }
  .early-perks { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
  .nav-inner, .hero { padding-left: 20px; padding-right: 20px; }
  .early-card { padding: 28px 20px; }
}
