/* ===========================================================
   Stratevate Partners -- shared stylesheet (all pages)
   =========================================================== */

:root {
  --navy: #0A1E3F;
  --navy-2: #12294F;
  --ice: #CADCFC;
  --slate: #44546A;
  --white: #FFFFFF;
  --lightbg: #F7F9FC;
  --border: #E3E7EF;
  --max-width: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #222;
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 { margin: 0; font-weight: 700; color: var(--navy); }

p { margin: 0 0 16px; }

a { color: inherit; }

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

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 16px;
}

.eyebrow.on-navy { color: var(--ice); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
}
.btn-primary:hover { background: var(--ice); }

.btn-primary.on-light {
  background: var(--navy);
  color: var(--white);
}
.btn-primary.on-light:hover { background: var(--navy-2); }

.btn-text {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

/* ---------- Nav ---------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.site-nav .logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a.nav-link {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
}

.nav-links a.nav-link:hover { color: var(--slate); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

/* ---------- Sections ---------- */

section { padding: 96px 0; }

.bg-navy { background: var(--navy); color: var(--white); }
.bg-light { background: var(--lightbg); }
.bg-white { background: var(--white); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

h2.headline { font-size: 34px; line-height: 1.25; }
.bg-navy h2.headline { color: var(--white); }

/* ---------- Hero ---------- */

.hero { padding: 140px 0 110px; }
.hero-inner { max-width: 720px; }
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 {
  color: var(--white);
  font-size: 46px;
  line-height: 1.18;
  margin-bottom: 24px;
}
.hero .subhead {
  color: var(--ice);
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 620px;
}
.hero-ctas { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-ctas .btn-text { color: var(--ice); }

/* ---------- Page Hero (About / Services) ---------- */

.page-hero { padding: 100px 0 72px; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 {
  font-size: 38px;
  line-height: 1.25;
  color: var(--navy);
  max-width: 760px;
}
.page-hero .subhead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--slate);
  max-width: 720px;
  margin: 20px 0 0;
}

.page-hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.page-hero-text { flex: 1; }
.page-hero-photo-col { flex-shrink: 0; width: 264px; text-align: center; }
.page-hero-photo {
  width: 264px;
  height: 312px;
  background: #F0F2F5;
  clip-path: polygon(0 0, 76% 0, 100% 20%, 100% 100%, 0 100%);
  padding: 22px 20px;
  box-sizing: border-box;
  box-shadow: 0 12px 32px rgba(10,30,63,0.16);
  margin-bottom: 14px;
}
.page-hero-photo-inner {
  width: 100%;
  height: 100%;
  background: var(--white);
  clip-path: polygon(0 0, 76% 0, 100% 20%, 100% 100%, 0 100%);
  padding: 10px;
  box-sizing: border-box;
}
.page-hero-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.page-hero-caption {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}
.page-hero-caption span {
  display: block;
  font-weight: 400;
  color: var(--slate);
  font-size: 13px;
  margin-top: 2px;
}

/* ---------- The Problem ---------- */

.lead-text {
  font-size: 19px;
  line-height: 1.65;
  color: var(--slate);
  max-width: 800px;
  margin-bottom: 28px;
}

.problem-row {
  display: flex;
  align-items: stretch;
  gap: 28px;
  margin-bottom: 44px;
}
.problem-card {
  flex: 1;
  background: var(--lightbg);
  border-radius: 10px;
  padding: 36px 32px;
}
.problem-card .icon-badge { margin-bottom: 22px; }
.problem-card h3 { font-size: 20px; margin-bottom: 14px; }
.problem-card p { color: var(--slate); margin: 0; }
.problem-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: var(--slate);
  width: 56px;
  flex-shrink: 0;
}
.problem-close {
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
  max-width: 900px;
}

/* ---------- Icon badges ---------- */

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-badge.light { background: var(--ice); }
.icon-badge svg { width: 26px; height: 26px; stroke: var(--white); }
.icon-badge.light svg { stroke: var(--navy); }

/* ---------- POV ---------- */

.pov-statement {
  font-size: 32px;
  line-height: 1.3;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 26px;
}
.pov-support {
  font-style: italic;
  font-size: 18px;
  color: var(--ice);
  margin-bottom: 44px;
}
.pov-rule {
  border: none;
  border-top: 2px solid #3A5490;
  width: 220px;
  margin: 0 0 28px;
}
.pov-labels {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--ice);
  text-transform: uppercase;
}

/* ---------- What We Do grid ---------- */

.wwd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.wwd-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 32px 30px;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.wwd-card .icon-badge {
  background: var(--navy-2);
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}
.wwd-card .icon-badge svg { width: 38px; height: 38px; }
.wwd-card h3 { color: var(--white); font-size: 18px; margin-bottom: 12px; }
.wwd-card p { color: var(--ice); font-style: italic; margin: 0; font-size: 15px; }

/* ---------- Why Us proof grid ---------- */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.proof-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(10,30,63,0.06);
}
.proof-card .icon-badge { margin-bottom: 20px; }
.proof-card h3 { font-size: 17px; margin-bottom: 4px; }
.proof-card .companies { color: var(--slate); font-size: 13px; margin-bottom: 18px; }
.proof-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 18px;
}
.proof-card .stat-line {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 8px;
}

/* ---------- Why Stratevate cards (About page) ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card-frame {
  background: var(--border);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  padding: 1.5px;
}
.value-card {
  background: var(--white);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  padding: 32px 28px;
}
.value-card .icon-badge { margin-bottom: 20px; }
.value-card h3 { font-size: 17px; margin-bottom: 12px; }
.value-card p { color: var(--slate); margin: 0; font-size: 15px; }

/* ---------- Founder bio (About page) ---------- */

.bio-row {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}
.bio-text {
  flex: 2;
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate);
  margin: 0;
}
.bio-facts {
  flex: 1;
  border-left: 2px solid var(--border);
  padding-left: 32px;
}
.bio-facts .eyebrow { margin-bottom: 16px; }
.bio-facts ul { list-style: none; margin: 0; padding: 0; }
.bio-facts li {
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.bio-facts li:last-child { border-bottom: none; }

/* ---------- Values strip ---------- */

.values-strip { padding: 44px 0; text-align: center; }
.values-strip p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
}

/* ---------- Practice areas (Services page) ---------- */

.practice-list { display: flex; flex-direction: column; }
.practice-block {
  display: flex;
  gap: 36px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}
.practice-block:first-child { padding-top: 0; }
.practice-block:last-child { border-bottom: none; padding-bottom: 0; }
.practice-num {
  flex-shrink: 0;
  width: 64px;
  font-size: 34px;
  font-weight: 700;
  color: #C7D2E5;
  line-height: 1;
}
.practice-body { flex: 1; }
.practice-badge {
  display: inline-block;
  background: var(--lightbg);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.practice-body h3 { font-size: 22px; margin-bottom: 14px; }
.practice-body .practice-desc {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.practice-proof {
  font-style: italic;
  color: var(--navy);
  font-size: 15px;
  border-left: 3px solid var(--ice);
  padding-left: 18px;
  margin: 0;
}

.engage-note {
  margin-top: 28px;
  color: var(--slate);
  font-size: 15px;
  text-align: center;
}

/* ---------- How We Engage ---------- */

.engage-row {
  display: flex;
  align-items: center;
  gap: 28px;
}
.engage-card-frame {
  flex: 1;
  background: var(--border);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  padding: 1.5px;
}
.engage-card {
  background: var(--lightbg);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  padding: 36px 32px;
}
.engage-card h3 { font-size: 19px; margin: 20px 0 12px; }
.engage-card p { color: var(--slate); margin: 0; }
.engage-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.engage-arrow svg { width: 24px; height: 24px; stroke: var(--white); }

/* ---------- Lead form (Book page) ---------- */

.lead-form-wrap { max-width: 640px; margin: 0 auto; }
.lead-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row.two-col { flex-direction: row; gap: 24px; }
.form-row.two-col > div { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.lead-form label {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.lead-form input,
.lead-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: #222;
  background: var(--white);
  width: 100%;
}
.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.lead-form textarea { resize: vertical; min-height: 120px; }
.lead-form button.btn { align-self: flex-start; }
.form-note { margin: 0; color: var(--slate); font-size: 14px; }
.hidden-field { position: absolute; left: -9999px; top: -9999px; }
.lead-form-success { text-align: center; padding: 40px 0; }
.lead-form-success h2 { margin-bottom: 16px; }
.lead-form-success p { color: var(--slate); font-size: 17px; max-width: 480px; margin: 0 auto; }

/* ---------- Final CTA ---------- */

.final-cta { text-align: center; }
.final-cta h2 {
  color: var(--white);
  font-size: 34px;
  margin-bottom: 32px;
}
.final-cta .fine-print {
  margin-top: 22px;
  color: var(--ice);
  font-size: 14px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: var(--ice);
  padding: 56px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #223766;
  margin-bottom: 24px;
}
.footer-top img { height: 26px; margin-bottom: 10px; }
.footer-tagline { font-style: italic; color: var(--ice); font-size: 15px; }
.footer-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.footer-links a { text-decoration: none; color: var(--white); font-weight: 700; font-size: 14px; }
.footer-links a:hover { color: var(--ice); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8FA8D6;
}
.footer-bottom a { color: #8FA8D6; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  h2.headline { font-size: 28px; }
  .pov-statement { font-size: 26px; }
  .page-hero h1 { font-size: 30px; }
  .bio-row { flex-direction: column; gap: 32px; }
  .bio-facts { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 24px; }
  .page-hero-row { flex-direction: column-reverse; align-items: flex-start; gap: 28px; }
  .page-hero-photo-col { width: 192px; margin-right: 0; }
  .page-hero-photo { width: 192px; height: 228px; padding: 17px 15px; }
  .page-hero-photo-inner { padding: 7px; }
}

@media (max-width: 700px) {
  .wrap { padding: 0 20px; }
  .form-row.two-col { flex-direction: column; }
  section { padding: 64px 0; }
  .hero { padding: 100px 0 72px; }
  .page-hero { padding: 72px 0 56px; }
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a.nav-link { width: 100%; padding: 16px 20px; border-bottom: 1px solid var(--border); }
  .nav-links .btn { margin: 16px 20px; }
  .nav-toggle { display: block; }
  .wwd-grid { grid-template-columns: 1fr; }
  .wwd-card .icon-badge { width: 60px; height: 60px; }
  .wwd-card .icon-badge svg { width: 30px; height: 30px; }
  .proof-grid { grid-template-columns: 1fr; }
  .problem-row { flex-direction: column; }
  .problem-plus { width: auto; padding: 8px 0; }
  .engage-row { flex-direction: column; }
  .engage-arrow { transform: rotate(90deg); }
  .footer-bottom { flex-direction: column; }
  .practice-block { flex-direction: column; gap: 16px; }
  .practice-num { font-size: 26px; }
}
