/* ============================================================
   Valley Family Dental — Landing Page
   Navy + Orange · Archivo (display) / Source Sans 3 (body)
   ============================================================ */

:root {
  --navy:        #16315C;   /* headlines, text accents */
  --navy-deep:   #112748;   /* dark banners, card headers */
  --navy-soft:   #2A4A7F;
  --orange:      #D7641C;   /* primary accent */
  --orange-2:    #E0701E;
  --orange-hover:#bd540f;
  --ink:         #2C3645;   /* body text */
  --ink-soft:    #5A6473;
  --line:        #E2E4E8;
  --line-soft:   #ECEEF1;
  --hair-strong: rgba(22,49,92,0.25);
  --paper:       #FFFFFF;
  --bg-cool:     #EEF0F3;   /* two-paths section */
  --bg-warm:     #F4F0EA;   /* symptoms section */
  --hero-top:    #F3F4F6;
  --hero-bot:    #E9EBEF;

  --maxw: 1180px;
  --radius: 6px;
  --shadow-card: 0 24px 60px -28px rgba(17,39,72,0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: 'Archivo', sans-serif;
  color: var(--navy);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.accent { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(215,100,28,0.7);
}
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-navy {
  background: var(--navy-deep);
  color: #fff;
  width: 100%;
}
.btn-navy:hover { background: #0b1d39; }
.btn .ar { width: 16px; height: 16px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo { display: flex; align-items: center; gap: 15px; }
.logo img { height: 60px; width: auto; display: block; }
.logo .lk-div { width: 1px; height: 38px; background: var(--line); }
.logo .lk-tag {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1.35;
}
.logo .lk-tag span {
  display: block;
  color: var(--navy-soft);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.13em;
}
@media (max-width: 600px){ .logo .lk-div, .logo .lk-tag { display:none; } .logo img { height: 50px; } }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .15s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links .caret { width: 14px; height: 14px; opacity: .7; }
.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--hero-top), var(--hero-bot));
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
}
.hero-left {
  padding: 64px 48px 56px 0;
  display: flex;
  flex-direction: column;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(40px, 5vw, 62px);
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.hero-divider {
  display: flex;
  align-items: center;
  margin: 26px 0 24px;
}
.hero-divider .bar { height: 3px; width: 150px; background: var(--orange); border-radius: 2px; }
.hero-divider .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--orange); margin-left: -3px; }
.hero-sub {
  font-size: 18px;
  color: var(--ink);
  max-width: 430px;
  line-height: 1.5;
  text-wrap: pretty;
}

/* feature row */
.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 48px;
  border-top: 1px solid rgba(22,49,92,0.12);
  padding-top: 0;
}
.feature {
  text-align: center;
  padding: 26px 8px 4px;
  position: relative;
}
.feature + .feature::before {
  content: "";
  position: absolute;
  left: 0; top: 28px; bottom: 6px;
  width: 1px;
  background: rgba(22,49,92,0.12);
}
.feature .ic {
  width: 40px; height: 40px;
  color: var(--navy);
  stroke-width: 1.4;
  margin-bottom: 14px;
}
.feature .ic.orange { color: var(--orange); }
.feature .ft {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
}
.feature .fs {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 4px;
}

/* hero right: photo + form */
.hero-right {
  position: relative;
  min-height: 560px;
}
.hero-photo {
  position: absolute;
  inset: 0 -120px 0 0;   /* bleed to the right edge of viewport */
  width: calc(100% + 120px);
  height: 100%;
}
.hero-photo image-slot,
.hero-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-form {
  position: absolute;
  right: 0;
  bottom: 26px;
  width: 330px;
  background: var(--navy-deep);
  color: #fff;
  border-radius: 10px;
  padding: 26px 26px 28px;
  box-shadow: 0 30px 70px -25px rgba(8,20,40,0.7);
  z-index: 3;
}
.hero-form h3 {
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 7px;
}
.hero-form .sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
}
.hero-form .field {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 5px;
  padding: 11px 13px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  margin-bottom: 11px;
  outline: none;
}
.hero-form .field::placeholder { color: #9aa1ab; }
select.field { appearance: none; color: #9aa1ab;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239aa1ab' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
}
.hero-form .btn { margin-top: 4px; }
.hero-form .secure {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; color: rgba(255,255,255,0.6);
  margin-top: 14px;
}
.hero-form .secure svg { width: 13px; height: 13px; }

/* ============================================================
   SECTION HEADINGS (centered editorial)
   ============================================================ */
.section { padding: 72px 0; }
.sec-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 12px;
}
.sec-head .line { height: 1px; width: 130px; background: var(--line); }
.sec-title {
  text-align: center;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.sec-title.with-rule {
  display: inline-flex;
}
.sec-sub {
  text-align: center;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 14px auto 0;
}

/* ============================================================
   PATIENT JOURNEY
   ============================================================ */
.journey { padding: 64px 0 70px; }
.journey .sec-head { margin-bottom: 44px; }
.steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: start;
}
.step {
  position: relative;
  text-align: center;
  padding: 0 6px;
}
.step .ring {
  position: relative;
  width: 92px; height: 92px;
  margin: 0 auto 16px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
}
.step .ring .ic { width: 40px; height: 40px; color: var(--navy); stroke-width: 1.3; }
.step .num {
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 26px;
  background: var(--navy-deep);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 13px;
}
.step .st {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 6px;
  text-wrap: balance;
}
.step .sd {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.35;
  text-wrap: pretty;
}
.step .arrow {
  position: absolute;
  top: 38px;
  right: -10px;
  width: 20px; height: 20px;
  color: var(--orange);
  z-index: 2;
}

/* ============================================================
   TWO PATHS
   ============================================================ */
.paths { background: var(--bg-cool); }
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
  align-items: start;
}
.pcard {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pcard-head {
  background: var(--navy-deep);
  color: #fff;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pcard-head .ttl {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.14;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 6px;
}
.pcard-head .desc {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  line-height: 1.3;
}
.price-wrap { text-align: right; flex-shrink: 0; }
.pcard-head .price {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 21px;
  padding: 8px 16px;
  border-radius: 5px;
  white-space: nowrap;
}
.price-fin {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  margin-top: 7px;
  white-space: nowrap;
}
.price-fin b { color: #fff; font-weight: 700; }
.pcard-foot {
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.pcard-foot b { color: var(--navy); font-weight: 700; }

/* ---- value / savings hook ---- */
.price-retail { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 3px; }
.price-retail s { color: rgba(255,255,255,0.85); }
.value-strip {
  display: flex; align-items: stretch; gap: 0;
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  margin: 2px 0 22px;
}
.value-strip .vs-item {
  flex: 1; padding: 13px 16px; display: flex; flex-direction: column; gap: 3px;
}
.value-strip .vs-item + .vs-item { border-left: 1px solid var(--line); }
.vs-l { font-size: 10.5px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.vs-strike { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 19px; color: var(--ink-soft); text-decoration: line-through; text-decoration-color: var(--orange); }
.vs-now .vs-amt { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 19px; color: var(--navy); }
.value-strip .vs-save {
  flex: 0 0 auto; background: var(--navy-deep); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  padding: 13px 20px; text-align: center;
}
.vs-save .vs-save-l { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); font-weight: 700; }
.vs-save .vs-save-amt { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 22px; color: var(--orange); line-height: 1.05; }
@media (max-width: 560px){
  .value-strip { flex-direction: column; }
  .value-strip .vs-item + .vs-item { border-left: none; border-top: 1px solid var(--line); }
  .value-strip .vs-save { border-top: 1px solid var(--line); }
}

/* ---- expandable program details ---- */
.details-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px; cursor: pointer; margin-bottom: 14px;
  transition: background .15s, border-color .15s;
}
.details-toggle:hover { background: var(--line-soft); border-color: var(--hair-strong); }
.details-toggle .chev { width: 15px; height: 15px; color: var(--orange); transition: transform .3s ease; }
.pcard.open .details-toggle .chev { transform: rotate(180deg); }
.details-toggle .lbl-open { display: none; }
.pcard.open .details-toggle .lbl-closed { display: none; }
.pcard.open .details-toggle .lbl-open { display: inline; }

.details-wrap { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.pcard.open .details-wrap { max-height: 2400px; }
.details-inner { min-height: 0; }
.details { padding-bottom: 6px; }

.dp-section { margin-bottom: 20px; }
.dp-section:last-child { margin-bottom: 8px; }
.dp-h {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.dp-h::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.phase { margin-bottom: 14px; }
.phase:last-child { margin-bottom: 0; }
.phase-t { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 7px; }
.dp-list { list-style: none; margin: 0; padding: 0; }
.dp-list > li {
  position: relative; padding-left: 16px; font-size: 12.5px; color: var(--ink);
  line-height: 1.5; margin-bottom: 4px;
}
.dp-list > li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.dp-list ul { list-style: none; margin: 4px 0 6px; padding-left: 16px; }
.dp-list ul li { position: relative; padding-left: 14px; font-size: 12px; color: var(--ink-soft); line-height: 1.45; margin-bottom: 2px; }
.dp-list ul li::before { content: ""; position: absolute; left: 0; top: 7px; width: 4px; height: 4px; border-radius: 50%; background: var(--ink-soft); }

.dp-note { font-size: 12.5px; color: var(--ink-soft); font-style: italic; margin: 0 0 11px; }
.dp-receive > li { padding-left: 23px; margin-bottom: 7px; }
.dp-receive > li::before {
  content: "\2713"; left: 0; top: 0; width: auto; height: auto;
  background: none; border-radius: 0;
  font-size: 13px; font-weight: 700; color: var(--orange); line-height: 1.5;
}

.dp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dp-stat { border: 1px solid var(--line); border-radius: 8px; padding: 14px 10px; text-align: center; }
.dp-stat .ic { width: 22px; height: 22px; color: var(--orange); stroke-width: 1.5; margin-bottom: 8px; }
.dp-stat .v { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 14px; color: var(--navy); line-height: 1.15; }
.dp-stat .l { font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-top: 5px; }

.appts { display: grid; gap: 10px; }
.appt { border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; }
.appt-h { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.appt-n {
  width: 22px; height: 22px; border-radius: 50%; background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12px;
}
.appt-t { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; color: var(--navy); white-space: nowrap; }

.bestfor { background: #FBF4EC; border-radius: 8px; padding: 15px 16px; }
.bestfor .bf-h {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 11px;
}
.bf-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px; }
.bf-item { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--navy); font-weight: 600; line-height: 1.35; }
.bf-item svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; margin-top: 1px; }
@media (max-width: 560px){ .dp-stats { grid-template-columns: 1fr; } .bf-list { grid-template-columns: 1fr; } }
.pcard-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.pcard-intro { font-size: 15px; color: var(--ink); margin-bottom: 22px; line-height: 1.5; }

/* foundations 3-col */
.tri {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 22px;
}
.tri .cell { padding: 0 16px; position: relative; text-align: left; }
.tri .cell + .cell::before {
  content:""; position:absolute; left:0; top:4px; bottom:4px; width:1px; background: var(--line);
}
.tri .ic { width: 34px; height: 34px; color: var(--navy); stroke-width: 1.3; margin-bottom: 12px; }
.tri .lbl {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px;
}
.tri .cell:first-child .lbl { color: var(--orange); }
.tri .cell:not(:first-child) .lbl { color: var(--navy); }
.tri .txt { font-size: 13px; color: var(--ink-soft); line-height: 1.4; }

/* transformation feature grid */
.feat6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 16px;
  margin-bottom: 22px;
}
.feat6 .item { text-align: left; }
.feat6 .ic { width: 28px; height: 28px; color: var(--orange); stroke-width: 1.4; margin-bottom: 9px; }
.feat6 .it { font-size: 13px; color: var(--ink); line-height: 1.35; font-weight: 600; }

/* ============================================================
   SYMPTOMS CONNECTED
   ============================================================ */
.symptoms { background: var(--bg-warm); }
.sym-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.sym-left .kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.sym-left h2 {
  font-weight: 800; font-size: clamp(28px, 3.2vw, 38px);
  text-transform: uppercase; line-height: 1.02;
}
.sym-left p {
  font-size: 16px; color: var(--ink); margin: 18px 0 26px; max-width: 360px; line-height: 1.55;
}
.sym-left p .why { color: var(--orange); font-style: italic; font-weight: 600; }
.sym-prompt { font-size: 14px; font-weight: 600; color: var(--navy); margin: -6px 0 22px !important; }
.sym-right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 18px;
  border-left: 1px solid rgba(22,49,92,0.14);
  padding-left: 48px;
}
.sym {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.sym .ring {
  width: 74px; height: 74px; border-radius: 50%;
  border: 1.5px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; background: rgba(255,255,255,0.4);
}
.sym .ring .ic { width: 34px; height: 34px; color: var(--navy); stroke-width: 1.3; }
.sym .nm {
  font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.25; text-wrap: balance;
}

/* ============================================================
   WHY VALLEY
   ============================================================ */
.why { padding: 70px 0; }
.why .sec-head { margin-bottom: 46px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.why-col {
  text-align: center;
  padding: 0 22px;
  position: relative;
}
.why-col + .why-col::before {
  content:""; position:absolute; left:0; top:10px; bottom:10px; width:1px; background: var(--line);
}
.why-col .ic { width: 52px; height: 52px; color: var(--orange); stroke-width: 1.2; margin-bottom: 18px; }
.why-col .wt {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 15px;
  text-transform: uppercase; color: var(--navy); letter-spacing: 0.03em; margin-bottom: 10px;
  text-wrap: balance;
}
.why-col .wd { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; text-wrap: pretty; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section { padding: 0 0 64px; }
.cta-banner {
  background: var(--navy-deep);
  border-radius: 12px;
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content:""; position:absolute; right:-60px; top:-60px;
  width: 260px; height: 260px; border: 1.5px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner h2 {
  color: #fff; font-weight: 800; font-size: clamp(28px, 3.2vw, 38px);
  text-transform: uppercase; line-height: 1.04;
}
.cta-banner h2 .accent { color: var(--orange); }
.cta-banner p {
  color: rgba(255,255,255,0.78); font-size: 16px; margin: 16px 0 24px; max-width: 440px;
}
.cta-contact {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 22px 26px 8px;
}
.cta-contact .lbl {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px;
}
.cta-phone {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cta-phone:last-child { border-bottom: none; }
.cta-phone .pic { width: 24px; height: 24px; color: var(--orange); stroke-width: 1.6; flex-shrink: 0; }
.cta-phone .loc { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }
.cta-phone .num { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 19px; color: #fff; margin-top: 1px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 28px;
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.9fr;
  gap: 40px;
}
.f-brand img { height: 66px; width: auto; display: block; }
.f-brand p { font-size: 13px; color: var(--ink-soft); margin: 16px 0 0; max-width: 250px; line-height: 1.55; }
.f-loc h4 {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin: 0 0 12px;
}
.f-loc .addr { font-size: 13.5px; color: var(--ink); line-height: 1.55; }
.f-loc .ph {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 10px;
  font-family: 'Archivo', sans-serif; font-weight: 700; color: var(--orange); font-size: 16px;
}
.f-loc .ph svg { width: 16px; height: 16px; }
.f-loc .hrs { font-size: 12.5px; color: var(--ink-soft); margin-top: 9px; }
.f-links { list-style: none; margin: 0; padding: 0; }
.f-links ul { list-style: none; margin: 0; padding: 0; }
.f-links h4 {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin: 0 0 12px;
}
.f-links li { margin-bottom: 11px; }
.f-links a { font-size: 13.5px; color: var(--ink); font-weight: 600; }
.f-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 34px; padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: var(--ink-soft);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 0 40px; }
  .hero-right { min-height: 0; margin: 0 -28px; }
  .hero-photo { position: relative; inset: auto; width: 100%; height: 360px; }
  .hero-form { position: relative; z-index: 3; width: auto; margin: -56px 16px 8px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 12px; }
  .step .arrow { display: none; }
  .paths-grid { grid-template-columns: 1fr; }
  .sym-grid { grid-template-columns: 1fr; gap: 32px; }
  .sym-right { border-left: none; padding-left: 0; grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .why-col + .why-col::before { display: none; }
  .cta-banner { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .subhero-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: 8px 0; }
  .feature:nth-child(odd)::before { display: none; }
  .sym-right { grid-template-columns: repeat(2, 1fr); }
  .feat6, .tri { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pcard-head { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .price-wrap { text-align: left; }
  .incl-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   SUBPAGES (program detail + thank you)
   ============================================================ */
.subhero {
  background: linear-gradient(160deg, var(--hero-top), var(--hero-bot));
  padding: 54px 0 56px;
}
.breadcrumb { font-size: 12.5px; letter-spacing: 0.03em; color: var(--ink-soft); margin-bottom: 20px; }
.breadcrumb a { color: var(--orange); font-weight: 600; }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
.subhero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.tier-eyebrow {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.subhero h1 { font-weight: 800; font-size: clamp(34px, 4.4vw, 52px); text-transform: uppercase; line-height: 1.0; }
.subhero .lead { font-size: 18px; color: var(--ink); max-width: 560px; margin-top: 18px; line-height: 1.5; }
.price-card {
  background: var(--navy-deep); color: #fff; border-radius: 12px;
  padding: 30px 32px; box-shadow: var(--shadow-card);
}
.price-card .pc-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.price-card .pc-amt { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 52px; color: #fff; line-height: 1; margin: 8px 0 4px; }
.price-card .pc-fin {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: rgba(215,100,28,0.16); border: 1px solid rgba(215,100,28,0.5);
  border-radius: 6px; padding: 9px 13px; margin-top: 14px;
}
.price-card .pc-fin .mo { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 20px; color: var(--orange); }
.price-card .pc-fin .mo-l { font-size: 12.5px; color: rgba(255,255,255,0.8); }
.price-card .pc-note { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 14px; line-height: 1.45; }
.price-card .btn { width: 100%; margin-top: 20px; }

.section-pad { padding: 64px 0; }
.sub-h2 { font-weight: 800; font-size: clamp(24px, 2.8vw, 32px); text-transform: uppercase; margin-bottom: 8px; }
.sub-intro { font-size: 16.5px; color: var(--ink-soft); max-width: 640px; margin-bottom: 36px; line-height: 1.5; }
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; }
.incl {
  display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line);
}
.incl .ic-wrap {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%;
  border: 1.5px solid var(--orange); display: flex; align-items: center; justify-content: center;
}
.incl .ic-wrap svg { width: 24px; height: 24px; color: var(--navy); stroke-width: 1.4; }
.incl .h { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 5px; }
.incl .d { font-size: 14px; color: var(--ink-soft); line-height: 1.45; }

.fin-band { background: var(--bg-warm); }
.fin-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 26px; margin-top: 36px; }
.fin-card { background: #fff; border-radius: 10px; padding: 26px; border: 1px solid var(--line); }
.fin-card .ic { width: 36px; height: 36px; color: var(--orange); stroke-width: 1.4; margin-bottom: 14px; }
.fin-card h3 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 17px; text-transform: none; margin-bottom: 8px; }
.fin-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

.compare-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 26px 32px; margin-top: 36px; }
.compare-strip .txt { font-size: 16px; color: var(--ink); }
.compare-strip .txt b { color: var(--navy); font-family: 'Archivo'; }

/* thank you */
.ty { text-align: center; max-width: 680px; margin: 0 auto; padding: 80px 0 72px; }
.ty .check {
  width: 84px; height: 84px; border-radius: 50%; background: rgba(215,100,28,0.12);
  border: 1.5px solid var(--orange); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px;
}
.ty .check svg { width: 40px; height: 40px; color: var(--orange); stroke-width: 2; }
.ty h1 { font-weight: 800; font-size: clamp(34px, 4.5vw, 50px); text-transform: uppercase; }
.ty .lead { font-size: 18px; color: var(--ink); margin: 18px auto 0; max-width: 540px; line-height: 1.55; }
.ty-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 44px 0 40px; text-align: left; }
.ty-step { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.ty-step .n { font-family: 'Archivo'; font-weight: 800; font-size: 14px; color: #fff; background: var(--navy-deep); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ty-step h3 { font-family: 'Archivo'; font-weight: 700; font-size: 16px; text-transform: none; margin-bottom: 6px; }
.ty-step p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }
.ty-contact { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 760px){ .ty-steps { grid-template-columns: 1fr; } .fin-grid { grid-template-columns: 1fr; } }
