/* ── AI OFFICER DESIGN SYSTEM ── */
/* Colors from Framer project */
:root {
  --deepnavy:      rgb(4, 16, 45);
  --blue:       rgb(40, 123, 232);
  --mint:       rgb(111, 242, 193);
  --pink:       rgb(209, 69, 139);
  --light-grey: rgb(234, 238, 242);
  --white:      rgb(255, 255, 255);
  --text:       rgba(76, 79, 86, 0.8);
  --stroke:     rgb(168, 178, 189);
}

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

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--deepnavy);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--stroke);
  padding: 0 48px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--deepnavy); flex-shrink: 0;
}
.logo-mark { height: 34px; width: auto; flex-shrink: 0; display: block; }
.logo-text { font-size: 19px; font-weight: 700; color: var(--deepnavy); letter-spacing: -0.03em; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--deepnavy); font-size: 15px;
  font-weight: 500; transition: color .15s;
}
.nav-links a:hover { color: var(--blue); }
.btn-nav {
  background: var(--deepnavy); color: var(--white);
  padding: 10px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  white-space: nowrap; transition: opacity .15s; flex-shrink: 0;
}
.btn-nav:hover { opacity: .85; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px; border-radius: 10px; font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: opacity .15s, transform .1s; white-space: nowrap;
}
.btn:hover { opacity: .87; transform: translateY(-1px); }
.btn-primary { background: var(--deepnavy); color: var(--white); }
.btn-secondary { background: transparent; color: var(--deepnavy); border: 1.5px solid var(--deepnavy); }
.btn-secondary:hover { background: var(--deepnavy); color: var(--white); opacity: 1; }
.btn-white { background: var(--white); color: var(--deepnavy); }
.btn-ghost-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); opacity: 1; }

/* ── SECTION SEPARATOR ── */
.sep {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
}
.sep-label { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); }
.sep-line { width: 48px; height: 3px; background: var(--mint); border-radius: 2px; }
.sep h2 { font-size: 48px; font-weight: 600; line-height: 1.1em; letter-spacing: -0.02em; color: var(--deepnavy); max-width: 700px; }
.sep p { font-size: 16px; line-height: 1.6em; color: var(--text); max-width: 600px; }

/* ── HERO ── */
.hero { padding: 80px 0 80px; display: flex; justify-content: center; }
.hero-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 32px; max-width: 1200px; padding: 0 48px; text-align: center; width: 100%;
}
.hero-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; color: var(--blue); text-transform: uppercase; }
.hero h1 { font-size: 60px; font-weight: 600; line-height: 1.1em; letter-spacing: -0.02em; color: var(--deepnavy); max-width: 800px; }
.hero-sub { font-size: 16px; line-height: 1.7em; color: var(--text); max-width: 680px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }

/* ── STATS CARD ── */
.stats-card { background: var(--light-grey); border-radius: 28px; overflow: hidden; margin-top: 40px; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 48px 40px; gap: 12px; text-align: center;
  border-right: 1px solid var(--stroke);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 52px; font-weight: 700; line-height: 1.1em; letter-spacing: -0.04em; color: var(--deepnavy); }
.stat-desc { font-size: 15px; line-height: 1.5em; color: var(--text); letter-spacing: -0.02em; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-dark { padding: 80px 0; background: var(--deepnavy); color: var(--white); }
.section-dark .sep-label { color: rgba(255,255,255,.4); }
.section-dark .sep h2 { color: var(--white); }
.section-dark .sep p { color: rgba(255,255,255,.6); }

/* ── PROBLEM IMAGE ── */
.problem-image { width: 90%; margin: 40px auto 0; border-radius: 20px; overflow: hidden; display: block; }
.problem-image img { width: 100%; display: block; object-fit: cover; }

/* ── QUOTE ── */
.quote-block {
  background: var(--light-grey); border-radius: 20px; padding: 56px 64px;
  display: flex; flex-direction: column; gap: 16px;
}
.quote-marks { font-size: 80px; font-weight: 700; line-height: 0.7; color: var(--mint); font-family: Georgia, serif; }
.quote-text { font-size: 24px; font-weight: 500; line-height: 1.55em; letter-spacing: -0.02em; color: var(--deepnavy); max-width: 820px; }

/* ── SOLUTION CARDS ── */
.solution-cards { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sol-card { border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.sol-card-light { background: var(--light-grey); }
.sol-card-dark { background: var(--deepnavy); }
.sol-card-dark .sol-tag,
.sol-card-dark .sol-missions { color: rgba(255,255,255,.45); }
.sol-card-dark .sol-title { color: var(--white); }
.sol-card-dark .sol-desc { color: rgba(255,255,255,.65); }
.sol-tag { font-size: 12px; font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text); }
.sol-title { font-size: 24px; font-weight: 600; line-height: 1.2em; color: var(--deepnavy); }
.sol-missions { font-size: 14px; font-weight: 500; color: var(--text); }
.sol-desc { font-size: 16px; line-height: 1.4em; color: var(--text); margin-top: 8px; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 80px; margin-top: 40px; }
.step { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: start; }
.step-num { font-size: 72px; font-weight: 700; line-height: 1; color: var(--mint); letter-spacing: -0.04em; }
.step-label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin-top: 4px; }
.step-right { display: flex; flex-direction: column; gap: 20px; }
.step-right h3 { font-size: 32px; font-weight: 600; line-height: 1.2em; letter-spacing: -0.02em; color: var(--deepnavy); }
.step-right > p { font-size: 16px; line-height: 1.6em; color: var(--text); max-width: 640px; }

/* ── AUDIT CARDS ── */
.audit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.audit-card {
  background: var(--light-grey); border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; border: 1.5px solid transparent;
}
.audit-card.featured { border-color: var(--deepnavy); background: var(--white); }
.badge-rec {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--deepnavy); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.audit-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); }
.audit-title { font-size: 18px; font-weight: 700; color: var(--deepnavy); letter-spacing: -0.02em; }
.audit-price { font-size: 28px; font-weight: 700; color: var(--deepnavy); letter-spacing: -0.03em; }
.audit-price span { font-size: 14px; font-weight: 400; color: var(--text); }
.audit-desc { font-size: 14px; line-height: 1.6em; color: var(--text); }
.audit-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.audit-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.4em; }
.audit-features li::before { content: '✓'; color: var(--mint); font-weight: 700; flex-shrink: 0; }

/* ── PRICING TILES ── */
.pricing-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pricing-tile { background: var(--light-grey); border-radius: 14px; padding: 20px 16px; text-align: center; }
.pricing-tier { font-size: 12px; color: var(--text); font-weight: 500; }
.pricing-price { font-size: 22px; font-weight: 700; color: var(--deepnavy); letter-spacing: -0.02em; }
.pricing-period { font-size: 12px; color: var(--text); }

/* ── CERT SECTION ── */
.cert-grid { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
.cert-left { display: flex; flex-direction: column; gap: 24px; }
.cert-left h2 { font-size: 40px; font-weight: 700; line-height: 1.15em; letter-spacing: -0.03em; color: var(--deepnavy); }
.cert-left > p { font-size: 16px; line-height: 1.7em; color: var(--text); }
.cert-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cert-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--deepnavy); font-weight: 500; }
.cert-features li::before {
  content: ''; width: 20px; height: 20px; flex-shrink: 0;
  background: var(--mint); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%2304102D' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.cert-card { background: var(--light-grey); border-radius: 20px; padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.cert-card-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); }
.cert-card-price { font-size: 36px; font-weight: 700; letter-spacing: -0.03em; color: var(--deepnavy); }
.cert-card-price span { font-size: 16px; font-weight: 400; color: var(--text); }
.cert-card-members { font-size: 13px; color: var(--text); margin-top: -12px; }
.cert-card-note { font-size: 12px; color: var(--text); line-height: 1.5em; border-top: 1px solid var(--stroke); padding-top: 16px; }

/* ── TEAM SECTION ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.team-card { background: rgba(255,255,255,.06); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.team-role { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mint); }
.team-name { font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: -0.03em; line-height: 1.2em; }
.team-affil { font-size: 12px; font-weight: 600; color: var(--blue); letter-spacing: 0.05em; text-transform: uppercase; }
.team-bio { font-size: 14px; line-height: 1.6em; color: rgba(255,255,255,.6); }
.team-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 48px; text-align: center; }
.team-stat-num { font-size: 36px; font-weight: 700; color: var(--white); letter-spacing: -0.03em; }
.team-stat-label { font-size: 14px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ── BEFORE/AFTER ── */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ba-card { border-radius: 20px; padding: 48px 40px; }
.ba-before { background: var(--light-grey); }
.ba-after { background: var(--deepnavy); }
.ba-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.ba-before .ba-label { color: var(--text); }
.ba-after .ba-label { color: var(--mint); }
.ba-before p { font-size: 18px; line-height: 1.6em; color: var(--text); }
.ba-after p { font-size: 18px; line-height: 1.6em; color: rgba(255,255,255,.75); }

/* ── TESTIMONIALS ── */
.test-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; margin-top: 48px; scrollbar-width: none; }
.test-scroll::-webkit-scrollbar { display: none; }
.test-card { flex: 0 0 360px; background: var(--light-grey); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.test-text { font-size: 15px; line-height: 1.65em; color: var(--text); font-style: italic; flex: 1; }
.test-name { font-size: 15px; font-weight: 700; color: var(--deepnavy); }
.test-title { font-size: 13px; color: var(--text); }

/* ── STAKES ── */
.stakes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.stakes-card { border-radius: 20px; padding: 40px; }
.stakes-before { background: var(--light-grey); }
.stakes-after { background: var(--deepnavy); }
.stakes-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.stakes-before .stakes-lbl { color: var(--pink); }
.stakes-after .stakes-lbl { color: var(--mint); }
.stakes-before p { font-size: 17px; line-height: 1.6em; color: var(--text); }
.stakes-after p { font-size: 17px; line-height: 1.6em; color: rgba(255,255,255,.75); }
.stakes-quote-wrap { grid-column: 1 / -1; text-align: center; border-top: 1px solid var(--stroke); padding-top: 48px; margin-top: 8px; }
.stakes-quote-text { font-size: 20px; font-weight: 500; line-height: 1.6em; letter-spacing: -0.02em; color: var(--deepnavy); max-width: 700px; margin: 0 auto; font-style: italic; }

/* ── FINAL CTA ── */
.section-cta { padding: 120px 48px; background: var(--deepnavy); text-align: center; }
.section-cta h2 { font-size: 52px; font-weight: 700; line-height: 1.1em; letter-spacing: -0.03em; color: var(--white); max-width: 700px; margin: 0 auto 20px; }
.section-cta p { font-size: 17px; line-height: 1.6em; color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BENEFIT CARDS ── */
.benefit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.benefit-card { background: var(--light-grey); border-radius: 20px; padding: 40px; display: flex; flex-direction: column; gap: 20px; }
.benefit-title { font-size: 24px; font-weight: 600; color: var(--deepnavy); letter-spacing: -0.02em; }
.benefit-body { font-size: 16px; line-height: 1.7em; color: var(--text); }
.benefit-note { font-size: 14px; font-weight: 500; color: var(--deepnavy); font-style: italic; }

/* ── TRACK CARDS ── */
.track-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.track-card { border-radius: 20px; padding: 32px; border: 1.5px solid var(--stroke); display: flex; flex-direction: column; gap: 12px; }
.track-num { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); }
.track-title { font-size: 24px; font-weight: 600; color: var(--deepnavy); }
.track-sub { font-size: 14px; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.05em; }
.track-desc { font-size: 15px; line-height: 1.65em; color: var(--text); }
.track-items { font-size: 14px; color: var(--text); line-height: 1.8em; }

.complete-both { background: var(--deepnavy); border-radius: 20px; padding: 32px; text-align: center; margin-top: 20px; }
.complete-both-label { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.complete-both-title { font-size: 28px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }

/* ── WHO TO ENROLL ── */
.enroll-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.enroll-card { background: var(--light-grey); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.enroll-num { font-size: 36px; font-weight: 700; color: var(--mint); letter-spacing: -0.04em; line-height: 1; }
.enroll-title { font-size: 20px; font-weight: 600; color: var(--deepnavy); letter-spacing: -0.02em; }
.enroll-desc { font-size: 15px; line-height: 1.6em; color: var(--text); }

/* ── CONTACT FORM SECTION ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-info h1 { font-size: 48px; font-weight: 600; line-height: 1.1em; letter-spacing: -0.02em; color: var(--deepnavy); }
.contact-info p { font-size: 16px; line-height: 1.6em; color: var(--text); }
.contact-item { display: flex; flex-direction: column; gap: 8px; }
.contact-item-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); }
.contact-item-title { font-size: 18px; font-weight: 600; color: var(--deepnavy); }
.contact-item-desc { font-size: 15px; line-height: 1.6em; color: var(--text); }
.contact-embed { background: var(--light-grey); border-radius: 20px; padding: 40px; min-height: 500px; display: flex; align-items: center; justify-content: center; }

/* ── ABOUT ── */
.about-mission { background: var(--light-grey); border-radius: 20px; padding: 64px; text-align: center; margin-top: 40px; }
.about-mission-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.about-mission-text { font-size: 24px; font-weight: 300; font-style: italic; line-height: 1.5em; color: var(--deepnavy); max-width: 760px; margin: 0 auto; letter-spacing: -0.01em; }
.letter-card { background: var(--white); border: 1px solid var(--stroke); border-radius: 20px; padding: 80px; }
.letter-card h2 { font-size: 48px; font-weight: 600; line-height: 1.1em; letter-spacing: -0.02em; color: var(--deepnavy); margin-bottom: 40px; }
.letter-card p { font-size: 16px; line-height: 1.7em; color: var(--text); margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }
.letter-sig { font-size: 16px; font-weight: 600; color: var(--deepnavy); margin-top: 32px; text-align: center; }

/* ── LEADERSHIP TRAINING PROGRAM CARDS ── */
.program-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.program-card { background: var(--light-grey); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.prog-num { font-size: 48px; font-weight: 600; line-height: 1; color: var(--deepnavy); letter-spacing: -0.03em; }
.prog-track { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); }
.prog-title { font-size: 24px; font-weight: 600; color: var(--deepnavy); letter-spacing: -0.02em; }
.prog-desc { font-size: 15px; line-height: 1.6em; color: var(--text); }

/* ── FOOTER ── */
footer { background: var(--deepnavy); border-top: 1px solid rgba(255,255,255,.08); padding: 28px 48px; text-align: center; }
footer p { font-size: 13px; color: rgba(255,255,255,.3); letter-spacing: -0.01em; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { padding: 100px 0 60px; }
  .hero-inner { padding: 0 24px; }
  .hero h1 { font-size: 40px; }
  .sep h2 { font-size: 32px; }
  .solution-cards, .benefit-cards, .track-cards, .ba-grid,
  .stakes-grid, .audit-grid, .cert-grid, .contact-grid,
  .team-grid, .enroll-cards, .program-cards { grid-template-columns: 1fr; }
  .pricing-tiles { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--stroke); }
  .step { grid-template-columns: 1fr; }
  .section-cta { padding: 80px 24px; }
  .section-cta h2 { font-size: 36px; }
  footer { padding: 24px; }
  .letter-card { padding: 40px 24px; }
  .about-mission { padding: 40px 24px; }
}
