/* =========================================================
   Strategy Found — Design System
   Palette: navy / slate gray / soft gray-blue / white
   ========================================================= */

:root {
  --navy-900: #14223a;
  --navy-800: #1f3a5f;
  --navy-700: #2c4a73;
  --slate-600: #5b6b82;
  --slate-400: #8b97a8;
  --gray-100: #f4f6f9;
  --gray-50: #fafbfc;
  --white: #ffffff;
  --accent: #2f8fb5;
  --border: #e3e8ef;

  --sky-500: #3a86c8;
  --sky-400: #5aa9e6;
  --teal-600: #1f7a8c;
  --teal-400: #3fb6c4;
  --gold-400: #d9a648;
  --gold-300: #e8c077;

  --grad-navy: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--teal-600) 100%);
  --grad-blue: linear-gradient(135deg, var(--navy-800) 0%, var(--sky-500) 100%);
  --grad-accent: linear-gradient(135deg, var(--teal-400) 0%, var(--sky-500) 100%);

  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --max-width: 1140px;
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(20, 34, 58, 0.06);
  --shadow-md: 0 8px 28px rgba(20, 34, 58, 0.10);
  --shadow-glow: 0 8px 32px rgba(58, 134, 200, 0.22);
  --transition: 0.25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--slate-600); }

a { color: var(--navy-800); text-decoration: none; }

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

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75em;
  display: inline-block;
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 56px 0; }
.section--navy {
  background: var(--grad-navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--navy::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 182, 196, 0.35) 0%, transparent 70%);
  pointer-events: none;
}
.section--navy::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 169, 230, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.section--navy .container { position: relative; z-index: 1; }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #c3cfe0; }
.section--gray { background: linear-gradient(180deg, var(--gray-100) 0%, #eef2f7 100%); }

.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--grad-blue);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { box-shadow: 0 12px 36px rgba(58, 134, 200, 0.35); filter: brightness(1.06); }

.btn--outline {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.btn--outline:hover { background: var(--grad-blue); border-color: transparent; color: var(--white); }

.section--navy .btn--outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.section--navy .btn--outline:hover { background: var(--white); color: var(--navy-800); }

.section--navy .btn--primary {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 100%);
  color: var(--navy-900);
  box-shadow: 0 8px 28px rgba(217, 166, 72, 0.35);
}
.section--navy .btn--primary:hover { filter: brightness(1.05); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn--lg { padding: 19px 44px; font-size: 1.12rem; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 100%);
  color: var(--navy-900);
  box-shadow: 0 10px 30px rgba(217, 166, 72, 0.4);
  border-color: transparent;
}
.btn--gold:hover {
  filter: brightness(1.05);
  box-shadow: 0 14px 38px rgba(217, 166, 72, 0.5);
}

/* Navbar */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--gray-50);
  background-image: url('../img/header-coastline.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.nav.is-scrolled {
  box-shadow: 0 4px 20px rgba(20, 34, 58, 0.1);
  border-bottom-color: transparent;
  background-image:
    url('../img/header-coastline.svg'),
    linear-gradient(90deg, var(--sky-500), var(--teal-400), var(--gold-400));
  background-size: cover, 100% 3px;
  background-position: center, 0 100%;
  background-repeat: no-repeat, no-repeat;
}
.nav__brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-900);
}
.nav__logo-banner {
  height: 190px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  transition: transform 0.5s ease;
}
.nav__brand:hover .nav__logo-banner { transform: scale(1.04); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
.nav__inner nav {
  flex: 0 0 auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links li {
  flex-shrink: 0;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-900);
  position: relative;
  padding: 4px 0;
}
.nav__links a.is-active { color: var(--navy-800); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }

.nav__cta {
  margin-left: 80px;
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 100%);
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(217, 166, 72, 0.4);
  padding: 20px 120px;
  font-size: 1rem;
  flex-shrink: 0;
}
.nav__cta:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 28px rgba(217, 166, 72, 0.5);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Footer */
.footer {
  background: var(--navy-900);
  color: #b9c4d6;
  padding: 56px 0 28px;
  font-size: 0.92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.footer__brand img { height: 46px; }
.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer a { color: #b9c4d6; }
.footer a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #8090a8;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, #eef3fa 0%, var(--gray-100) 45%, var(--white) 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px; left: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 134, 200, 0.16) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: 50%; right: -140px;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  background: url("../img/logo.png") no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--sky-500);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.stat-card:nth-child(2) { border-top-color: var(--teal-400); }
.stat-card:nth-child(3) { border-top-color: var(--gold-400); }
.stat-card:nth-child(4) { border-top-color: var(--navy-700); }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-card .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  display: block;
}
.stat-card .label {
  font-size: 0.82rem;
  color: var(--slate-600);
}

/* Stat band */
.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 20px;
}
.stat-band .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  display: block;
  color: var(--white);
}
.stat-band .label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #b9c4d6;
}

/* Cards / grid */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.checklist { list-style: none; padding: 0; margin: 0 0 28px; }
.checklist li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--navy-900);
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  color: var(--teal-600);
  font-weight: 700;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Pricing */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.pricing-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sky-400), var(--teal-400));
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0.7;
  z-index: 0;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
  border-color: transparent;
  box-shadow: var(--shadow-glow);
  background: linear-gradient(180deg, #ffffff 0%, #f6fafd 100%);
}
.pricing-card--featured::after {
  background: var(--grad-blue);
  height: 6px;
  opacity: 1;
  z-index: 0;
}
.pricing-card--featured::before {
  content: "Most Popular";
  position: absolute;
  z-index: 2;
  top: -12px; left: 28px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(217, 166, 72, 0.4);
}
.pricing-card h3 { margin-bottom: 2px; }
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--navy-800);
  font-weight: 700;
  margin: 6px 0 4px;
}
.pricing-card .price span { font-size: 0.95rem; color: var(--slate-600); font-family: var(--font-body); font-weight: 500; }
.pricing-card .price-cta {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--teal-600);
  font-weight: 700;
  margin: 8px 0 4px;
}
.pricing-card .tagline { font-size: 0.88rem; color: var(--slate-600); margin-bottom: 18px; }
.pricing-card ul {
  list-style: none; padding: 0; margin: 0 0 22px; flex-grow: 1;
}
.pricing-card li {
  display: flex; gap: 9px; margin-bottom: 11px; font-size: 0.92rem; color: var(--navy-900);
}
.pricing-card li::before { content: "—"; color: var(--accent); flex-shrink: 0; }
.pricing-card .best-for {
  font-size: 0.82rem;
  color: var(--slate-600);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-bottom: 18px;
}

/* Custom scope banner */
.custom-scope-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, #fbf6ea 0%, var(--white) 65%);
  border: 1.5px dashed var(--gold-400);
  border-radius: var(--radius);
  padding: 32px 36px;
}
.custom-scope-card__text { flex: 1; }
.custom-scope-card h3 { margin-bottom: 8px; }
.custom-scope-card p { margin-bottom: 0; }
.custom-scope-card .btn { flex-shrink: 0; }

/* FAQ accordion */
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
}
.accordion-trigger .plus {
  font-size: 1.3rem;
  color: var(--teal-600);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.accordion-item.is-open .accordion-trigger .plus { transform: rotate(45deg); color: var(--gold-400); }
.accordion-trigger:hover { color: var(--navy-700); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-panel p { padding: 0 4px 18px; margin: 0; }

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--navy-900); }
.form-field input, .form-field textarea, .form-field select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--gray-50);
  transition: border-color var(--transition), background var(--transition);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--slate-400); margin-top: 10px; }

.form-success {
  display: none;
  background: #e9f3ec;
  border: 1px solid #b9dcc4;
  color: #2c5e3c;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}
.form-success.is-visible { display: block; }

/* Contact info cards */
.contact-info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-card:last-child { border-bottom: none; }
.contact-info-card .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(58, 134, 200, 0.3);
}
.contact-info-card .label { font-size: 0.8rem; color: var(--slate-400); margin-bottom: 2px; }
.contact-info-card .value { font-weight: 600; color: var(--navy-900); }

/* Scheduler */
.schedule-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.schedule-placeholder {
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  background: var(--gray-100);
  color: var(--slate-600);
  text-align: center;
  padding: 40px;
}
.schedule-placeholder code {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.expect-list { list-style: none; padding: 0; margin: 0; }
.expect-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}
.expect-list .step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(58, 134, 200, 0.3);
}
.expect-list li:nth-child(2) .step-num { background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); box-shadow: 0 4px 12px rgba(31, 122, 140, 0.3); }
.expect-list li:nth-child(3) .step-num { background: linear-gradient(135deg, var(--gold-300), var(--gold-400)); box-shadow: 0 4px 12px rgba(217, 166, 72, 0.35); }

/* Page header (for non-home pages) */
.page-header {
  background: linear-gradient(160deg, #eef3fa 0%, var(--gray-100) 60%, #e9eff7 100%);
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 520px; height: 520px;
  background: url("../img/logo.png") no-repeat center / contain;
  opacity: 0.05;
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header p { max-width: 620px; margin: 0 auto; }

/* Scroll-reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Divider motif */
.divider {
  width: 56px;
  height: 4px;
  background: var(--grad-accent);
  border-radius: 4px;
  margin: 0 auto 18px;
}

/* Responsive */
@media (max-width: 880px) {
  .hero__grid, .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-band { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__toggle {
    display: flex;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav__cta { margin-left: 0; }
  .nav__logo-banner { height: 112px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .custom-scope-card { flex-direction: column; align-items: flex-start; }
}
