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

:root {
  --navy: #1B3A6B;
  --navy-deep: #0F2444;
  --blue: #2A5FAC;
  --sky: #4A9FD4;
  --sky-light: #7AB8E0;
  --bg: #F4F6FA;
  --bg-soft: #EEF1F7;
  --white: #FFFFFF;
  --text: #1B3A6B;
  --text-mid: #4A5E7A;
  --text-light: #8899BB;
  --border: #D0D8E8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 24px rgba(27,58,107,0.07);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  text-decoration: none;
}

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

.nav-link {
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 16px; border-radius: 6px;
  cursor: pointer; border: none; background: none;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-link:hover { color: var(--navy); background: var(--bg-soft); }
.nav-link.active { color: var(--navy); }

.nav-cta {
  background: var(--navy); color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 10px 24px; border-radius: 6px;
  cursor: pointer; border: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--blue); transform: translateY(-1px); }

/* ── PAGES ── */
.page { display: none; padding-top: 72px; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  background: var(--navy-deep);
  position: relative; overflow: hidden;
  padding: 100px 48px 90px;
  min-height: 88vh;
  display: flex; align-items: center;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(42,95,172,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(74,159,212,0.15) 0%, transparent 60%);
}

.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
}

.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 2px; background: var(--sky);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800; line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
  max-width: 800px;
}

.hero h1 em {
  font-style: italic; color: var(--sky-light);
}

.hero-sub {
  font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.65);
  max-width: 560px; margin: 24px 0 48px;
  line-height: 1.7;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
}

.btn-primary {
  background: var(--sky); color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px; border-radius: 6px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--sky-light); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.8);
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 14px; letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: white; transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 48px; margin-top: 72px;
  padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.stat-item { }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 12px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* ── SECTION BASE ── */
section { padding: 96px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--sky);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 16px;
}

.section-lead {
  font-size: 17px; font-weight: 300; color: var(--text-mid);
  max-width: 640px; line-height: 1.8;
}

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px; margin-top: 56px;
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.2s;
  cursor: default;
}
.service-card:hover { background: var(--bg); }

.service-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.service-title {
  font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.5px; color: var(--navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px; font-weight: 400; color: var(--text-mid);
  line-height: 1.7;
}

/* ── IS THIS YOU ── */
.is-this-you { background: var(--navy-deep); }

.is-this-you .section-title { color: var(--white); }
.is-this-you .section-lead { color: rgba(255,255,255,0.6); max-width: 700px; }

.situations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; margin-top: 56px;
}

.situation-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 32px;
  transition: background 0.2s, border-color 0.2s;
}
.situation-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(74,159,212,0.4);
}

.situation-num {
  font-family: 'Playfair Display', serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; color: var(--sky);
  margin-bottom: 14px;
}

.situation-title {
  font-size: 16px; font-weight: 700; color: var(--white);
  margin-bottom: 12px;
}

.situation-body {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ── QUOTE ── */
.quote-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
  text-align: center;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px; line-height: 0.5;
  color: var(--sky); opacity: 0.4;
  margin-bottom: 24px; display: block;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: var(--navy);
  line-height: 1.4; max-width: 780px;
  margin: 0 auto 24px;
  font-style: italic;
}

.quote-attr {
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light);
}

/* ── REVOPS ── */
.revops-section { background: var(--white); }

.revops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-top: 48px;
}

.revops-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.revops-card:hover { border-color: var(--sky); transform: translateY(-3px); }

.revops-card-title {
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 10px;
}

.revops-card-body {
  font-size: 13px; color: var(--text-mid); line-height: 1.7;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 80px 48px;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 520px; margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  padding: 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copy {
  font-size: 13px; color: rgba(255,255,255,0.35);
}

.footer-links {
  display: flex; gap: 24px;
}

.footer-link {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  cursor: pointer; transition: color 0.2s;
  border: none; background: none;
}
.footer-link:hover { color: rgba(255,255,255,0.7); }

/* ── SERVICES PAGE ── */
.services-hero {
  background: var(--navy);
  padding: 80px 48px 72px;
  position: relative; overflow: hidden;
}
.services-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(74,159,212,0.15) 0%, transparent 70%);
}
.services-hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.services-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px); font-weight: 800;
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.services-hero p {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 580px; line-height: 1.8;
}

.service-detail {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.service-detail:nth-child(even) { background: var(--white); }
.service-detail:nth-child(odd) { background: var(--bg); }

.service-detail-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }

.service-detail-label {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 16px;
}

.service-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px); font-weight: 700;
  color: var(--navy); line-height: 1.2; margin-bottom: 20px;
}

.service-detail-body {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 32px;
}

.bullet-list { list-style: none; }
.bullet-list li {
  font-size: 14px; color: var(--text-mid);
  padding: 10px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 12px;
  line-height: 1.6;
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before {
  content: '—'; color: var(--sky);
  font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* Engagement Model */
.engagement-section {
  background: var(--navy-deep);
  padding: 96px 48px;
}

.engagement-intro {
  max-width: 1100px; margin: 0 auto 64px;
}
.engagement-intro .section-title { color: var(--white); }
.engagement-intro .section-lead { color: rgba(255,255,255,0.6); }

.steps {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}

.step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 32px; position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px; top: 64px; bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(74,159,212,0.4), rgba(74,159,212,0.05));
}

.step-num-wrap {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 4px;
}

.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--sky);
  flex-shrink: 0; background: var(--navy-deep);
  position: relative; z-index: 1;
}

.step-content {
  padding: 4px 0 56px;
}

.step-day {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 8px;
}

.step-title {
  font-size: 18px; font-weight: 700; color: var(--white);
  margin-bottom: 12px;
}

.step-body {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6);
  line-height: 1.8; max-width: 600px;
}

/* Engagement options table */
.engagement-table-wrap {
  max-width: 1100px; margin: 64px auto 0;
}
.engagement-table-title {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.engagement-table-title::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--sky);
}

.eng-table {
  width: 100%; border-collapse: collapse;
  border-radius: 10px; overflow: hidden;
}
.eng-table th {
  background: rgba(255,255,255,0.08);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 14px 20px; text-align: left;
}
.eng-table td {
  padding: 16px 20px;
  font-size: 14px; color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.eng-table tr:last-child td { border-bottom: none; }
.eng-table tr:hover td { background: rgba(255,255,255,0.03); }
.eng-table td:first-child { font-weight: 600; color: var(--white); }

/* ── CONTACT PAGE ── */
.contact-hero {
  background: var(--navy);
  padding: 80px 48px 72px;
  position: relative; overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 90% 40%, rgba(74,159,212,0.18) 0%, transparent 70%);
}
.contact-hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px); font-weight: 800;
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.contact-hero p {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 600px; line-height: 1.8;
}

.contact-qualify {
  background: var(--bg-soft);
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.contact-qualify-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}

.qualify-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px); font-weight: 700;
  color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.qualify-sub {
  font-size: 15px; color: var(--text-mid); line-height: 1.8;
  margin-bottom: 32px;
}

.criteria-list { list-style: none; }
.criteria-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; color: var(--text); line-height: 1.6;
}
.criteria-list li:last-child { border-bottom: none; }
.criteria-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.criteria-check svg { width: 11px; height: 11px; }

/* Contact Form */
.contact-form-section {
  background: var(--white);
  padding: 80px 48px;
}

.contact-form-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
  align-items: start;
}

.form-intro-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px); font-weight: 700;
  color: var(--navy); margin-bottom: 16px; line-height: 1.3;
}
.form-intro-body {
  font-size: 15px; color: var(--text-mid); line-height: 1.8;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-text {
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 2px;
}
.contact-detail-value {
  font-size: 15px; color: var(--navy); font-weight: 500;
}

.form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light);
}

.form-input, .form-select, .form-textarea {
  font-family: 'Barlow', sans-serif;
  font-size: 15px; color: var(--navy);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px; padding: 13px 16px;
  outline: none; width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--navy); color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 18px 36px; border-radius: 8px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--blue); transform: translateY(-2px); }

.form-note {
  font-size: 12px; color: var(--text-light); line-height: 1.6;
  padding: 16px; background: var(--bg); border-radius: 8px;
  border-left: 3px solid var(--sky);
}

/* Success message */
.form-success {
  display: none;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-left: 4px solid var(--sky);
  border-radius: 8px; padding: 28px 24px;
  text-align: center;
}
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--navy); margin-bottom: 8px;
}
.form-success p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .hero { padding: 64px 24px 72px; min-height: auto; }
  .hero-stats { gap: 32px; }
  .service-detail-inner,
  .contact-qualify-inner,
  .contact-form-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-inner.reverse { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; padding: 32px 24px; }
  .services-hero, .contact-hero { padding: 60px 24px 56px; }
  .engagement-section { padding: 64px 24px; }
  .contact-qualify, .contact-form-section { padding: 64px 24px; }
  .quote-section { padding: 60px 24px; }
  .cta-band { padding: 60px 24px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.6s ease both; }
.hero h1 { animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.6s 0.2s ease both; }
.hero-actions { animation: fadeUp 0.6s 0.3s ease both; }
.hero-stats { animation: fadeUp 0.6s 0.4s ease both; }
