/* ==========================================================================
   StriveGrowth Solutions — landing
   Brand: Midnight Navy #001F3F · Strive Gold #FDD056 · Surface Navy #06304F
          Paper #FCFBF7 · Cloud #F4F1E8 · Graphite #5C6675 · Ink #15212E
   Type:  Outfit (display/headings) · Hanken Grotesk (body)
   Rule:  ~70% navy & neutrals, 20% paper, 10% gold. Gold is a spark, never a flood.
   ========================================================================== */

:root {
  --navy: #001F3F;
  --gold: #FDD056;
  --surface: #06304F;
  --paper: #FCFBF7;
  --cloud: #F4F1E8;
  --graphite: #5C6675;
  --ink: #15212E;
  --display: "Outfit", "Avenir Next", sans-serif;
  --body: "Hanken Grotesk", "Helvetica Neue", sans-serif;
  --radius: 12px;
  --container: 1080px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--display); line-height: 1.12; color: var(--navy); }
h1 { font-size: clamp(2.5rem, 6.5vw, 4rem); font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 700; margin-bottom: 0.9rem; }
h3 { font-size: 1.3rem; font-weight: 600; }

p { max-width: 62ch; }

a { color: var(--surface); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 780px; }

.section { padding: 4.5rem 0; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 0.75rem;
}
.gold-eyebrow { color: var(--gold); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(0, 31, 63, 0.18);
}
.btn-gold:hover { box-shadow: 0 8px 22px rgba(0, 31, 63, 0.26); }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.9rem; }
.btn-lg { padding: 0.95rem 2rem; font-size: 1.1rem; }
.btn-block { width: 100%; text-align: center; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(253, 208, 86, 0.15);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-right: auto;
}
.nav-mark { width: 34px; height: 34px; flex: none; border-radius: 8px; box-shadow: 0 0 0 1px rgba(253,208,86,.35); }
.nav-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--paper);
  white-space: nowrap;
}
.nav-name em { font-style: normal; color: var(--gold); }
.nav-links { display: flex; gap: 1.35rem; }
.nav-links a {
  color: var(--cloud);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.lang-toggle {
  background: transparent;
  color: var(--cloud);
  border: 1px solid rgba(252, 251, 247, 0.4);
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 0.42rem 0.85rem;
  cursor: pointer;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
.lang-toggle:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
}
.hero-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 5.5rem 1.25rem 6rem;
}
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: var(--paper); max-width: 14ch; }
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  margin-top: 1.4rem;
  font-size: 1.2rem;
  max-width: 54ch;
  color: var(--cloud);
}
.hero-sub strong { color: var(--gold); font-weight: 700; }
.hero-cta { margin-top: 2.2rem; }
.cta-note {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  color: rgba(252, 251, 247, 0.75);
}
.hero-proof {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-top: 2.6rem;
}
.hero-proof li {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cloud);
  background: rgba(6, 48, 79, 0.75);
  border: 1px solid rgba(253, 208, 86, 0.3);
  border-radius: 999px;
  padding: 0.45rem 1rem;
}

/* ===== Problem ===== */
.problem { background: var(--cloud); }
.problem h2 { max-width: 24ch; }
.problem p { margin-top: 1rem; }
.lead-line {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
}

/* ===== Services ===== */
.cards-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.card-navy {
  background: var(--navy);
  color: var(--cloud);
}
.card-navy h3 { color: var(--gold); margin-bottom: 0.4rem; }
.card-for { font-size: 0.95rem; color: rgba(252, 251, 247, 0.8); margin-bottom: 1.1rem; }
.card-navy ul { list-style: none; display: grid; gap: 0.65rem; }
.card-navy li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.98rem;
}
.card-navy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: var(--gold);
}
.card-outcome {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(253, 208, 86, 0.25);
  font-weight: 700;
  color: var(--paper);
}
.services-note { margin-top: 1.6rem; font-size: 1rem; color: var(--graphite); }

/* ===== How it works ===== */
.how { background: var(--cloud); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  counter-reset: step;
}
.step {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(92, 102, 117, 0.15);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--display);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { font-size: 0.98rem; }

/* ===== Why ===== */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}
.why-card {
  border-top: 3px solid var(--gold);
  background: var(--paper);
  padding: 1.4rem 1.3rem 0.4rem;
}
.why-card h3 { margin-bottom: 0.5rem; font-size: 1.12rem; }
.why-card p { font-size: 0.95rem; color: var(--ink); }
.guarantee {
  margin-top: 2.4rem;
  background: var(--navy);
  color: var(--cloud);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
}
.guarantee strong { color: var(--gold); }
.guarantee p { max-width: none; }

/* ===== About ===== */
.about { background: var(--cloud); }
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-photo { perspective: 900px; }
.tilt {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
  will-change: transform;
}
.tilt img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 22px 44px rgba(0, 31, 63, 0.28);
  transform: translateZ(28px);
}
.tilt-frame {
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  transform: translateZ(-24px);
}
.tilt-backdrop {
  position: absolute;
  inset: 14px -14px -14px 14px;
  background: var(--surface);
  border-radius: var(--radius);
  transform: translateZ(-48px);
}
.tilt-glare {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  transform: translateZ(29px);
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 35%), rgba(252, 251, 247, 0.16), rgba(252, 251, 247, 0) 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.about-photo:hover .tilt-glare { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .tilt, .tilt img, .tilt-frame, .tilt-backdrop, .tilt-glare { transform: none !important; }
}
.about p { margin-top: 1rem; }
.about-tagline {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 240px; }
}

/* ===== FAQ ===== */
.faq details {
  border-bottom: 1px solid rgba(92, 102, 117, 0.25);
  padding: 1.1rem 0;
}
.faq summary {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}
.faq details[open] summary::after { content: "–"; }
.faq summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.faq details p { margin-top: 0.7rem; font-size: 1rem; }

/* ===== Contact ===== */
.contact {
  position: relative;
  background: var(--navy);
  color: var(--cloud);
  padding-top: 0;
  padding-bottom: 5rem;
}
.contact-wave { width: 100%; height: 90px; }
.contact-inner { padding-top: 2.5rem; }
.contact h2 { color: var(--paper); }
.contact-sub { margin-bottom: 2rem; }

.form { display: grid; gap: 1.2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.4rem; }
.field label, .lang-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--paper);
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--gold);
}
.radio-row { display: flex; gap: 1.6rem; }
.radio-row label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.98rem;
  color: var(--cloud);
  cursor: pointer;
}
.radio-row input { accent-color: var(--gold); width: 1.05rem; height: 1.05rem; }
.form-privacy {
  font-size: 0.83rem;
  color: rgba(252, 251, 247, 0.7);
  max-width: none;
}
.form-privacy a { color: var(--gold); }
.hp { position: absolute; left: -9999px; }

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: var(--cloud);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--paper);
}
.footer-brand em { font-style: normal; color: var(--gold); }
.footer-line { font-size: 0.9rem; color: rgba(252, 251, 247, 0.7); margin-top: 0.3rem; }
.footer-tagline { color: var(--gold); font-weight: 600; }
.footer-meta { text-align: right; font-size: 0.88rem; }
.footer-meta a { color: var(--cloud); }
.footer-meta p + p { margin-top: 0.3rem; }
@media (max-width: 560px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}
