:root {
  --dark:   #1C4A2A;
  --mid:    #2D7A4A;
  --accent: #3AB26A;
  --pale:   #EBF5EE;
  --cream:  #F7FBF8;
  --white:  #FFFFFF;
  --ink:    #1A1A1A;
  --muted:  #5A7A63;
  --rule:   #C8DFD0;
  --warm:   #FFF8F0;
  --amber:  #7D4E00;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(28, 74, 42, 0.97);
  backdrop-filter: blur(8px);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: #A8D5B8; font-weight: 400; }
nav a.cta-nav {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
nav a.cta-nav:hover { background: var(--accent); border-color: var(--accent); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex; align-items: center;
  padding: 7rem 2.5rem 5rem;
  position: relative;
  overflow: visible;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb1 { width: 520px; height: 520px; right: -120px; top: -80px; background: radial-gradient(circle, #2D7A4A22 0%, transparent 70%); }
.orb2 { width: 320px; height: 320px; left: 40%; bottom: -60px; background: radial-gradient(circle, #3AB26A18 0%, transparent 70%); }

.hero-layout {
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-inner { max-width: 760px; position: relative; }
.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
}
#hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
#hero h1 em { font-style: italic; color: #A8D5B8; }
#hero p {
  font-size: 1.1rem;
  color: #A8D5B8;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.4rem;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #2D9A58; transform: translateY(-1px); }

.hero-rule {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 4rem;
  opacity: 0.4;
}
.hero-rule span { font-size: 0.75rem; color: var(--white); letter-spacing: 0.1em; white-space: nowrap; }
.hero-rule hr { flex: 1; border: none; border-top: 1px solid rgba(255,255,255,0.3); }

/* ── SECTION COMMON ── */
section { padding: 6rem 2.5rem; }
.container { max-width: 1080px; margin: 0 auto; }
.section-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ── PROBLEM ── */
#problem { background: var(--cream); }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  padding: 1.8rem 1.6rem;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.stat-sub { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

.callout {
  background: var(--warm);
  border-left: 3px solid #E8A84A;
  padding: 1.2rem 1.6rem;
  font-size: 0.95rem;
  color: var(--amber);
  line-height: 1.65;
  font-style: italic;
  max-width: 100%;
}

/* ── HOW IT WORKS ── */
#how { background: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid var(--rule);
}
.step {
  padding: 2.2rem 1.8rem;
  border-right: 1px solid var(--rule);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  width: 36px; height: 36px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.step p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

.how-footer {
  margin-top: 1.6rem;
  padding: 1.1rem 1.6rem;
  background: var(--pale);
  border-left: 3px solid var(--accent);
  font-size: 0.92rem;
  color: var(--dark);
  font-style: italic;
}

/* ── WHY PARTNER ── */
#why { background: var(--pale); }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 1.8rem 1.6rem;
  position: relative;
}
.benefit-icon {
  width: 40px; height: 40px;
  background: var(--pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.benefit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.benefit-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── WHO THIS IS FOR ── */
#who { background: var(--white); }
.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 700px) { .who-inner { grid-template-columns: 1fr; gap: 2rem; } }
.who-left .section-title { margin-bottom: 1rem; }
.who-left p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.who-right {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  padding: 2rem;
}
.who-right p {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.who-list { list-style: none; }
.who-list li {
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.5;
}
.who-list li:last-child { border-bottom: none; }
.who-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ── PARTNER CTA ── */
#partner {
  background: var(--dark);
  padding: 6rem 2.5rem;
}
#partner .section-tag { color: #A8D5B8; }
#partner .section-title { color: var(--white); }
#partner .section-sub { color: #A8D5B8; }

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 700px) { .partner-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.pilot-details { margin-top: 2rem; }
.pilot-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: flex-start;
}
.pilot-item:last-child { border-bottom: none; }
.pilot-num {
  width: 26px; height: 26px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pilot-item p { font-size: 0.88rem; color: #A8D5B8; line-height: 1.6; }
.pilot-item strong { color: var(--white); font-weight: 500; }

/* FORM */
form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
input, textarea, select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.35); }
input:focus, textarea:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 90px; }
button[type="submit"] {
  background: var(--accent);
  color: var(--white);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
button[type="submit"]:hover { background: #2D9A58; transform: translateY(-1px); }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.5; }
.bot-field { display: none; }

/* ── FOOTER ── */
footer {
  background: #111F16;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .logo { font-size: 1.1rem; }
footer p { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav { padding: 1rem 1.4rem; }
  section { padding: 4rem 1.4rem; }
  #hero { padding: 6rem 1.4rem 4rem; }
  .steps { border: none; }
  .step { border: 1px solid var(--rule); border-right: 1px solid var(--rule); margin-bottom: -1px; }
  footer { flex-direction: column; }
}

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── HERO PHONES ── */
.hero-phones {
  position: absolute;
  right: 5rem;
  top: 50%;
  transform: translateY(-52%);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  z-index: 2;
  pointer-events: none;
}
.hero-phone {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,0.5);
  flex-shrink: 0;
  background: #fff;
}
.hero-phone img {
  display: block;
  width: 215px;
  height: 440px;
  object-fit: cover;
  object-position: top;
}
.hero-phone-2 {
  margin-top: 48px;
}
.hero-phone-caption {
  display: none;
}
@media (max-width: 960px) {
  .hero-phones { display: none; }
}
