/* ===== VARIABLES ===== */
:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --navy: #0d1b2a;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --text: #1a2332;
  --text-muted: #5a6a7a;
  --border: #e2ddd5;
  --green: #2d7a4f;
  --code-bg: #f0ece3;
}

/* ===== BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

/* ===== NAV ===== */
.nav {
  background: var(--navy);
  color: #fff;
  padding: 1rem 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.nav-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 5rem 0 6rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-value {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
  line-height: 1.3;
}

/* Interview cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.interview-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
}
.interview-lang {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.interview-q {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  margin-bottom: 0.25rem;
}
.interview-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
}
.interview-responses { text-align: right; }
.interview-response {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  font-family: 'DM Sans', sans-serif;
}
.interview-form-mapped {
  font-size: 0.62rem;
  color: var(--gold);
  margin-top: 0.2rem;
  font-family: 'DM Sans', monospace;
}

/* ===== SECTION SHARED ===== */
.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-headline {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  max-width: 700px;
  margin-bottom: 3rem;
}

/* ===== PROBLEM ===== */
.problem { padding: 6rem 0; background: var(--bg); }
.problem-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.problem-header { margin-bottom: 4rem; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.problem-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2.25rem;
}
.problem-icon {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1rem;
  line-height: 1;
}
.problem-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.problem-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== SOLUTION ===== */
.solution { padding: 6rem 0; background: var(--surface); border-top: 1px solid var(--border); }
.solution-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.solution-header { margin-bottom: 4rem; max-width: 700px; }
.solution-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: -2rem;
}
.solution-flow {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.flow-step {
  flex: 1;
  min-width: 220px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.flow-num {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.flow-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.flow-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.flow-arrow {
  color: var(--border);
  flex-shrink: 0;
  padding: 0 0.5rem;
}

/* ===== FORMS ===== */
.forms { padding: 6rem 0; background: var(--bg); }
.forms-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.forms-headline {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 3rem;
  font-weight: 600;
}
.forms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.form-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.form-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.form-card--native {
  background: var(--navy);
  border-color: var(--navy);
}
.form-card--native .form-number { background: rgba(255,255,255,0.1); color: var(--gold); border-color: rgba(255,255,255,0.15); }
.form-card--native .form-info h3 { color: rgba(255,255,255,0.9); }
.form-card--native .form-info p { color: rgba(255,255,255,0.5); }
.forms-note {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: var(--code-bg);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 6rem 0; background: var(--surface); border-top: 1px solid var(--border); }
.testimonials-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.testimonial-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.testimonial-attribution { display: flex; flex-direction: column; gap: 0.2rem; }
.testimonial-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.testimonial-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== CLOSING ===== */
.closing {
  background: var(--navy);
  color: #fff;
  padding: 7rem 0;
}
.closing-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.closing-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.closing-headline {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: #fff;
  max-width: 680px;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.closing-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 3rem 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Fraunces', Georgia, serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.footer-desc { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; max-width: 340px; }
.footer-copy { font-size: 0.72rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .problem-grid { grid-template-columns: 1fr; }
  .forms-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .solution-flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
  .footer-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 0 4rem; }
  .hero-stats { gap: 1.5rem; }
  .forms-grid { grid-template-columns: 1fr; }
  .interview-card { padding: 1rem; gap: 0.75rem; }
}