/* ============================================================
   Milestone Web Design — Custom Stylesheet
   Stack: Bootstrap 5 + Playfair Display + DM Sans
   ============================================================ */

:root {
  --purple:      #6e63ff;
  --purple-dark: #5a52d5;
  --purple-soft: rgba(110,99,255,.08);
  --charcoal:      #2d3748;
  --charcoal-dark: #1a202c;
  --charcoal-soft: rgba(45,55,72,.1);
  --navy:        #1a1a2e;
  --slate:       #2d2d44;
  --text:        #1e1e2e;
  --muted:       #6b7280;
  --border:      #e8e8f0;
  --white:       #ffffff;
  --cream:       #fcfcfa;
  --gray-soft:   #f7f7f9;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --gold:        #c56a00;
}

html { background: var(--gray-soft); }
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--sans);
  color: var(--slate);
  background: var(--gray-soft);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--serif);
  color: var(--text);
  font-weight: 400;
  letter-spacing: -.02em;
}

a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--purple-dark); text-decoration: none; }

/* ── Nav (AfterPlan-style) ───────────────────────────────── */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 90px;
  gap: 1rem;
}
.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}
.nav-logo-mark {
  height: 65px;
  width: auto;
  animation: logo-mark-spin 1.25s linear 0.3s;
  transition: transform 0.3s ease;
  filter: drop-shadow(0px 2.5px 3.5px rgba(44,36,160,.32));
}
.nav-logo-wordmark { height: 65px; width: auto; }
.nav-logo-link:hover .nav-logo-mark { transform: scale(1.07); }
@keyframes logo-mark-spin {
  from { transform: perspective(200px) rotateX(0deg); }
  to   { transform: perspective(200px) rotateX(360deg); }
}
/* left/top: drifts right then down, stays well within bounds */
@keyframes hero-logo-drift-1 {
  0%   { transform: translate(  0px,   0px) rotate(  0deg); }
  25%  { transform: translate( 55px,  40px) rotate( 90deg); }
  50%  { transform: translate( 60px, -20px) rotate(180deg); }
  75%  { transform: translate( 25px, -55px) rotate(270deg); }
  100% { transform: translate(  0px,   0px) rotate(360deg); }
}
/* 33%/bottom: drifts left then up — opposite vertical to group 1 */
@keyframes hero-logo-drift-2 {
  0%   { transform: translate(  0px,   0px) rotate(  0deg); }
  25%  { transform: translate(-50px, -45px) rotate( 90deg); }
  50%  { transform: translate(-55px,  20px) rotate(180deg); }
  75%  { transform: translate(-20px,  55px) rotate(270deg); }
  100% { transform: translate(  0px,   0px) rotate(360deg); }
}
/* 66%/top: drifts right then up — opposite vertical to group 4 */
@keyframes hero-logo-drift-3 {
  0%   { transform: translate(  0px,   0px) rotate(  0deg); }
  25%  { transform: translate( 50px, -45px) rotate( 90deg); }
  50%  { transform: translate( 55px,  20px) rotate(180deg); }
  75%  { transform: translate( 20px,  55px) rotate(270deg); }
  100% { transform: translate(  0px,   0px) rotate(360deg); }
}
/* right/bottom: drifts left then down — opposite vertical to group 3 */
@keyframes hero-logo-drift-4 {
  0%   { transform: translate(  0px,   0px) rotate(  0deg); }
  25%  { transform: translate(-50px,  45px) rotate( 90deg); }
  50%  { transform: translate(-55px, -20px) rotate(180deg); }
  75%  { transform: translate(-20px, -55px) rotate(270deg); }
  100% { transform: translate(  0px,   0px) rotate(360deg); }
}
.nav-links {
  flex: 1;
  justify-content: center;
  gap: 2rem;
}
.nav-link-item {
  font-size: 1rem;
  color: var(--muted);
  padding: .45rem .6rem;
  border-radius: 6px;
  text-decoration: none;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-link-item:hover,
.nav-link-item.active { color: var(--text); background: var(--cream); }
.nav-right {
  gap: 1.1rem;
  flex-shrink: 0;
}
.nav-phone {
  font-size: .875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--text); }
.nav-login-link {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
  white-space: nowrap;
}
.nav-login-link:hover { color: var(--purple); }
.nav-cta-btn {
  background: var(--purple);
  color: #fff;
  border-radius: 50px;
  padding: .45rem 1.1rem;
  font-size: .875rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(110,99,255,.28);
  transition: background .18s, transform .15s, box-shadow .18s;
}
.nav-cta-btn:hover {
  background: var(--purple-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(110,99,255,.38);
}
.nav-mobile-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .4rem .65rem;
  font-size: 1.25rem;
  color: var(--text);
  cursor: pointer;
  margin-left: auto;
  line-height: 1;
}
.nav-mobile-menu {
  border-top: 1px solid var(--border);
  padding: .75rem 0 1rem;
}
.nav-mobile-menu a {
  display: block;
  padding: .55rem 0;
  font-size: 1rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.nav-mobile-menu a:hover { color: var(--text); }
.nav-mobile-menu .nav-cta-btn {
  display: block;
  text-align: center;
  margin-top: .5rem;
  color: #fff;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-purple {
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .6rem 1.6rem;
  font-size: .875rem;
  box-shadow: 0 4px 16px rgba(110,99,255,.28);
  transition: background .18s, transform .15s, box-shadow .18s;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn-purple:hover {
  background: var(--purple-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(110,99,255,.38);
}
.btn-charcoal {
  background: var(--charcoal);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .6rem 1.6rem;
  font-size: .875rem;
  transition: background .18s, transform .15s;
  display: inline-block;
  text-decoration: none;
}
.btn-charcoal:hover {
  background: var(--charcoal-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-graphite {
  background: #3d3d52;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .6rem 1.6rem;
  font-size: .875rem;
  transition: background .18s, transform .15s;
  display: inline-block;
  text-decoration: none;
}
.btn-graphite:hover {
  background: #2e2e42;
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-light-charcoal {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 50px;
  padding: .55rem 1.5rem;
  font-size: .875rem;
  transition: background .18s, color .18s, border-color .18s;
  display: inline-block;
  text-decoration: none;
}
.btn-outline-light-charcoal:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.7);
}

/* ── Section Utilities ───────────────────────────────────── */
.section-eyebrow {
  font-size: .75rem;
  font-weight: 400;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .5rem;
}
.section-eyebrow.charcoal { color: var(--charcoal); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}
.charcoal-rule {
  width: 44px;
  height: 3px;
  background: var(--charcoal);
  border: none;
  margin: .9rem 0 1.5rem;
  border-radius: 2px;
  display: block;
}

/* ── Hero (full-page) ────────────────────────────────────── */
.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(26,26,46,.84) 0%, rgba(26,26,46,.52) 100%);
}
.hero-inner { position: relative; z-index: 1; color: #fff; }
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 400;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero .hero-lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,.82);
  line-height: 1.85;
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 2rem;
}

/* ── Page Hero (sub-pages) ───────────────────────────────── */
.page-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 40px 0 50px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(26,26,46,.8) 0%, rgba(26,26,46,.5) 100%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.25rem;
}
.page-hero .page-hero-lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,.78);
  max-width: 620px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}

/* ── Scroll to top ───────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  box-shadow: 0 4px 16px rgba(110,99,255,.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  z-index: 999;
}
#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#scrollTop:hover { background: #5850dc; }

/* ── Feature bars (pricing intro) ───────────────────────── */
.fbar-section { padding: 2.5rem 0; background: var(--cream); }
.fbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--charcoal);
  box-shadow: 0 2px 16px rgba(110,99,255,.06);
  transition: box-shadow .2s;
}
.fbar:hover { box-shadow: 0 6px 28px rgba(110,99,255,.11); }
.fbar:last-child { margin-bottom: 0; }
.fbar-purple { border-left-color: var(--purple); }
.fbar-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  background: rgba(45,55,72,.1);
  color: var(--charcoal);
}
.fbar-purple-icon { background: rgba(110,99,255,.1); color: var(--purple); }
.fbar-body { flex: 1; }
.fbar-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .35rem;
}
.fbar-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.fbar-cta {
  flex-shrink: 0;
  width: 100%;
  text-align: center;
  background: var(--charcoal);
  color: #fff;
  border-radius: 50px;
  padding: .55rem 1.25rem;
  font-size: .875rem;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s, transform .15s;
}
.fbar-cta:hover { background: var(--charcoal-dark); color: #fff; transform: translateY(-1px); }
.fbar-cta-purple { background: var(--purple); }
.fbar-cta-purple:hover { background: var(--purple-dark); }
@media (min-width: 768px) {
  .fbar { flex-wrap: nowrap; }
  .fbar-cta { width: auto; text-align: left; }
}

/* ── Page Hero light variant ─────────────────────────────── */
.page-hero-light {
  background: linear-gradient(160deg, #fafaf8 0%, #e2ddff 50%, #fafaf8 100%);
  overflow: hidden;
}
.page-hero-light::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110,99,255,.09) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-light::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,55,72,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-light h1 { color: var(--slate); }
.page-hero-light .page-hero-lead { color: var(--muted); }
.page-hero-about { min-height: 638px; justify-content: flex-start; }
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.privacy-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.privacy-hero-graphic { display: none; justify-content: center; align-items: center; max-height: 420px; overflow: hidden; }
.privacy-hero-graphic img { width: 100%; max-height: 420px; object-fit: contain; }
.about-hero-skills {
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(110,99,255,.22);
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(110,99,255,.1), 0 1px 0 rgba(255,255,255,.8) inset;
  position: relative;
}
.ahs-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  color: #C4BEFF;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
  padding: .55rem 1.4rem;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  white-space: nowrap;
}
.ahs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1.5rem;
  margin-top: 5px;
}
.ahs-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--slate);
}
.ahs-item i {
  color: var(--purple);
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}
.about-bio-portrait {
  float: left;
  width: 190px;
  margin: 2.5px 1rem .75rem 0;
  transform: scaleX(-1);
  display: block;
  border: 1px solid rgba(45,55,72,.35);
  outline: 1px solid rgba(45,55,72,.35);
  outline-offset: 3px;
}
.pricing-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pricing-hero-copy { display: flex; flex-direction: column; gap: .25rem; align-items: flex-start; }
/* Pricing hero visual — stacked cards */
.phv {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  padding-top: 1.5rem;
}
.phv-stack {
  position: relative;
  width: 380px;
  height: 300px;
  isolation: isolate;
  margin-top: -20px;
  transform: scale(.76);
  transform-origin: center top;
}
.phv-card {
  position: absolute;
  width: 340px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  box-shadow: 0 10px 36px rgba(110,99,255,.13);
}
.phv-card-back {
  background: rgba(255,255,255,.55);
  border-color: rgba(255,255,255,.7);
  z-index: 1;
  animation: phv-float-back 4s ease-in-out infinite;
}
.phv-card-mid {
  background: rgba(45,55,72,.05);
  border-color: rgba(45,55,72,.2);
  z-index: 2;
  animation: phv-float-mid 4s ease-in-out infinite;
}
.phv-card-front {
  transform: rotate(-1deg) translate(0, 0);
  z-index: 3;
  animation: phv-float 4s ease-in-out infinite;
  border-color: transparent;
  width: 370px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: .75rem;
}
.phv-card-front .phv-card-icon {
  margin-bottom: 0;
  align-self: center;
}
.phv-card-front .phv-card-label {
  white-space: nowrap;
  align-self: center;
}
.phv-card-front .phv-card-sub,
.phv-card-front .phv-chips {
  grid-column: 1 / -1;
}
.phv-card-front::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  padding: 2px;
  background: conic-gradient(from var(--phv-angle), transparent 60%, var(--purple) 80%, #a599ff 90%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: phv-border-spin 5s linear infinite;
  pointer-events: none;
}
@property --phv-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes phv-border-spin {
  to { --phv-angle: 360deg; }
}
@keyframes phv-float {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  50%       { transform: rotate(-1deg) translateY(-9px); }
}
@keyframes phv-float-back {
  0%, 100% { transform: rotate(-7deg) translate(-55px, 56px); }
  50%       { transform: rotate(-7deg) translate(-55px, 61px); }
}
@keyframes phv-float-mid {
  0%, 100% { transform: rotate(11deg) translate(58px, 9px); }
  50%       { transform: rotate(11deg) translate(63px, 9px); }
}
.phv-card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(110,99,255,.1);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.phv-card-icon-charcoal { background: rgba(45,55,72,.1); color: var(--charcoal); }
.phv-card-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: .3rem;
}
.phv-card-sub {
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.phv-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.phv-chip {
  font-size: .75rem;
  font-weight: 400;
  color: var(--purple);
  background: rgba(110,99,255,.08);
  border: 1px solid rgba(110,99,255,.18);
  border-radius: 50px;
  padding: .2rem .65rem;
}
.phv-chip-charcoal {
  color: var(--charcoal);
  background: rgba(45,55,72,.08);
  border-color: rgba(45,55,72,.2);
}
.phv-card-front { left: 6px; }
.phv-card-back  { left: 10px; }
.phv-card-mid   { left: 20px; }
@media (min-width: 768px) {
  .pricing-hero-grid { grid-template-columns: 55% 45%; gap: 3.5rem; }
  .phv { overflow-x: initial; padding-top: 0; }
  .phv-stack { transform: none; transform-origin: initial; }
  .phv-card-front { left: 0; }
  .phv-card-back  { left: 0; }
  .phv-card-mid   { left: 0; }
}

/* ── Feature Cards ───────────────────────────────────────── */
.feature-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow .2s, transform .2s;
  height: 100%;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--purple-soft);
  border: 1px solid rgba(110,99,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--purple);
}
.feature-card h5 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .45rem;
}
.feature-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Service Cards ───────────────────────────────────────── */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: box-shadow .22s, transform .2s;
  border-top: 3px solid var(--charcoal);
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.09);
  transform: translateY(-3px);
}
.service-card-icon {
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: .9rem;
  display: block;
}
.service-card h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .75rem;
}
.service-card p {
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.78;
  margin: 0;
}

/* ── Testimonial Carousel (AfterPlan 3D perspective) ─────── */
.ap-rev-scene {
  perspective: 1400px; perspective-origin: 50% 40%;
  position: relative; max-width: 1100px; margin: 0 auto;
  isolation: isolate;
  transition: height .55s cubic-bezier(.25,.46,.45,.94);
}
.ap-rev-card {
  position: absolute; width: min(92vw, 340px); left: 50%; top: 0;
  background: #fcfcfc; border: 1px solid var(--border);
  border-radius: 14px; padding: 1.62rem 1.82rem 1.42rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  transition: transform .55s cubic-bezier(.25,.46,.45,.94),
              opacity .55s cubic-bezier(.25,.46,.45,.94),
              box-shadow .55s ease;
  display: flex; flex-direction: column;
  transform: translateX(calc(-50% + 700px)) rotateY(-55deg) scale(0.6);
  opacity: 0; z-index: 0; pointer-events: none;
}
.ap-rev-card:not(.pos-center) .ap-rev-quote {
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.ap-rev-card.pos-center .ap-rev-quote { display: block; overflow: visible; }
.ap-rev-card.pos-center {
  transform: translateX(-50%) rotateY(0deg) scale(1); opacity: 1; z-index: 4;
  box-shadow: 0 20px 60px rgba(110,99,255,.18), 0 4px 20px rgba(0,0,0,.1);
  pointer-events: auto; cursor: default;
}
.ap-rev-card.pos-left-1 {
  transform: translateX(calc(-50% - 315px)) rotateY(42deg) scale(0.82);
  opacity: 0; z-index: 3; pointer-events: none; cursor: pointer;
}
.ap-rev-card.pos-right-1 {
  transform: translateX(calc(-50% + 315px)) rotateY(-42deg) scale(0.82);
  opacity: 0; z-index: 3; pointer-events: none; cursor: pointer;
}
.ap-rev-card.pos-left-2 {
  transform: translateX(calc(-50% - 510px)) rotateY(52deg) scale(0.65);
  opacity: 0; z-index: 2; pointer-events: none;
}
.ap-rev-card.pos-right-2 {
  transform: translateX(calc(-50% + 510px)) rotateY(-52deg) scale(0.65);
  opacity: 0; z-index: 2; pointer-events: none;
}
.ap-rev-card.pos-hidden { transform: translateX(calc(-50% - 680px)) rotateY(60deg) scale(0.5); opacity: 0; visibility: hidden; z-index: 1; pointer-events: none; }
.ap-rev-stars { text-align: center; margin-bottom: .4rem; }
.ap-rev-stars img { height: 28px; width: auto; }
.ap-rev-quote { font-size: .96rem; color: var(--muted); line-height: 1.8; flex: 1; }
.ap-rev-attr  { border-top: 1px solid var(--border); padding-top: .72rem; margin-top: .88rem; }
.ap-rev-name  { font-size: .96rem; color: var(--text); font-weight: 400; }
.ap-rev-role  { font-size: .6rem; color: var(--muted); margin-top: .18rem; }
.ap-rev-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.85rem; }
.ap-rev-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, border-color .2s, color .2s, transform .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.ap-rev-btn:hover:not(:disabled) { background: var(--purple); border-color: var(--purple); color: #fff; transform: scale(1.08); }
.ap-rev-btn:disabled { opacity: .28; cursor: default; pointer-events: none; }
.ap-rev-dots { display: flex; gap: .5rem; align-items: center; }
.ap-rev-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); transition: background .3s, transform .3s; cursor: pointer; border: none; padding: 0; }
.ap-rev-dot.is-active { background: var(--purple); transform: scale(1.4); }
@media (min-width: 768px) {
  .ap-rev-card { width: 340px; }
  .ap-rev-card.pos-left-1  { opacity: 0.7;  pointer-events: auto; }
  .ap-rev-card.pos-right-1 { opacity: 0.7;  pointer-events: auto; }
  .ap-rev-card.pos-left-2  { opacity: 0.22; }
  .ap-rev-card.pos-right-2 { opacity: 0.22; }
}

/* ── Process Steps ───────────────────────────────────────── */
.process-step { text-align: center; padding: 1.25rem .75rem; }
.process-number {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid var(--charcoal);
}
.process-timeframe {
  display: block;
  font-size: .75rem;
  color: var(--charcoal);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.process-step h5 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .4rem;
}
.process-step p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Pricing Cards ───────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  border-top: 4px solid var(--charcoal);
  padding: 2.25rem 1.75rem;
  text-align: center;
  height: 100%;
  transition: box-shadow .22s, transform .2s;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--border);
  border-top-color: var(--purple);
  border-top-width: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}
.pricing-featured-col {
  position: relative;
}
.pricing-featured-col::before,
.pricing-featured-col::after {
  content: '';
  position: absolute;
  z-index: 0;
  bottom: 10px;
  width: 38%;
  height: 22px;
  box-shadow: 0 16px 14px rgba(0,0,0,.32);
  transform-origin: center bottom;
  transition: transform .2s;
}
.card-lift { position: relative; }
.card-lift::before,
.card-lift::after {
  content: '';
  position: absolute;
  z-index: 0;
  bottom: 10px;
  width: 40%;
  height: 20px;
  background: rgba(0,0,0,.5);
  filter: blur(6px);
  transform-origin: center bottom;
  transition: transform .2s;
}
.card-lift::before { left: 20px; transform: rotate(-6deg); }
.card-lift::after  { right: 20px; transform: rotate(6deg); }
.pricing-featured-col::before {
  left: 20px;
  transform: rotate(-6deg);
}
.pricing-featured-col::after {
  right: 20px;
  transform: rotate(6deg);
}
.pricing-featured-col:hover::before {
  transform: translateY(-6px) rotate(-6deg);
}
.pricing-featured-col:hover::after {
  transform: translateY(-6px) rotate(6deg);
}
.pricing-featured-col .pricing-card {
  position: relative;
  z-index: 1;
}
.pricing-featured-col .testimonial-card {
  position: relative;
  z-index: 2;
}

.pricing-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.pricing-card-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .15rem;
}
.pricing-card-subtitle {
  display: inline-block;
  font-size: .75rem;
  color: #fff;
  background: var(--purple);
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .25rem 1rem;
  border-radius: 50px;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  margin-bottom: 0;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.pricing-price-was {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: line-through;
  margin: 0;
  line-height: 1;
}
.pricing-price-was sup {
  font-size: .7rem;
  font-family: var(--sans);
  vertical-align: super;
}
.pricing-price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0;
}
.pricing-price sup {
  font-size: 1rem;
  font-family: var(--sans);
  vertical-align: super;
}
.pricing-price-note {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: .25rem;
  margin-top: .25rem;
}
.pricing-features li span {
  display: block;
  font-size: .85rem;
  color: var(--muted) !important;
  font-weight: 300;
  margin-top: .2rem;
  line-height: 1.4;
}
.pricing-content-note {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .75rem;
  margin-bottom: 0;
}
.pricing-save-note {
  font-size: .78rem;
  color: var(--charcoal);
  font-weight: 400;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  text-align: left;
}
.pricing-features li {
  font-size: 1rem;
  color: var(--slate);
  padding: .35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '+';
  color: var(--charcoal);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── À La Carte Cards ────────────────────────────────────── */
.alacarte-card {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 1.5rem 1.4rem 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.alacarte-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,.09); }
.alacarte-card .alacarte-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: .5rem;
}
.alacarte-card h5 {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .5rem;
  font-family: var(--sans);
}
.alacarte-body {
  max-height: 78px;
  overflow: hidden;
  position: relative;
  transition: max-height .35s ease;
  flex: 1;
}
.alacarte-body.expanded { max-height: 1200px; }
.alacarte-body:not(.expanded)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--white));
  pointer-events: none;
}
.alacarte-body.no-overflow { max-height: none; }
.alacarte-body.no-overflow::after { display: none; }
.alacarte-card p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.alacarte-card ul {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.65;
  margin: .4rem 0 0;
  padding-left: 1.1rem;
}
.alacarte-toggle {
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  width: 100%;
  padding: .35rem 0 0;
  margin-top: .6rem;
  color: var(--purple);
  cursor: pointer;
  font-size: .8rem;
  text-align: center;
  flex-shrink: 0;
  transition: color .15s;
}
.alacarte-toggle:hover { color: var(--purple-dark); }

/* ── Contact Hero ────────────────────────────────────────── */
.contact-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-hero-eyebrow  { justify-content: center; margin-bottom: 2rem; }
.contact-hero-h1 {
  color: var(--text);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-top: 0;
  margin-bottom: 1.25rem;
}
.contact-hero-lead {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto calc(2rem + 10px);
}
.contact-hero-chips {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.contact-hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  background: #fff;
  border: 1px solid rgba(110,99,255,.2);
  border-radius: 50px;
  padding: .4rem 1.25rem;
  font-size: .85rem;
  color: var(--charcoal);
}
.contact-hero-chip { min-width: 232px; }
.contact-hero-chip i { color: var(--purple); }
.contact-hero-cta { display: inline-flex; align-items: center; }
#send-message { scroll-margin-top: 75px; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--purple-soft);
  border: 1px solid rgba(110,99,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  color: var(--purple);
}
.contact-info-text strong {
  display: block;
  font-size: .875rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .1rem;
}
.contact-info-text span,
.contact-info-text a {
  font-size: .875rem;
  color: var(--muted);
  text-decoration: none;
}

/* ── Form ────────────────────────────────────────────────── */
.form-label {
  font-size: .875rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .35rem;
}
.form-control, .form-select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .7rem 1rem;
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(110,99,255,.1);
  outline: none;
}
.form-control::placeholder, .form-select::placeholder {
  color: #b0b7c3;
  opacity: 1;
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── Blog ────────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .22s, transform .2s;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.09);
  transform: translateY(-3px);
}
.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card-body { padding: 1.75rem; }
.blog-card-meta { font-size: .75rem; color: var(--muted); margin-bottom: .5rem; }
.blog-tag {
  display: inline-block;
  font-size: .75rem;
  color: var(--purple);
  background: var(--purple-soft);
  border-radius: 50px;
  padding: .18rem .7rem;
  font-weight: 400;
  letter-spacing: .04em;
  margin-right: .35rem;
  margin-bottom: .6rem;
}
.blog-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .65rem;
  line-height: 1.3;
}
.blog-card p { font-size: .875rem; color: var(--slate); line-height: 1.75; margin: 0; }

/* ── Blog List (blog.html) ───────────────────────────────── */
.blog-list-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: opacity .15s;
}
.blog-list-card:hover { opacity: .8; }
.blog-list-card:last-child { border-bottom: none; }
.blog-list-img {
  flex: none;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.blog-list-img img { width: 100%; height: 160px; object-fit: cover; display: block; }
.blog-list-body { flex: 1; }
.blog-list-tags { margin-bottom: .5rem; }
.blog-list-body h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin: .4rem 0 .5rem;
  line-height: 1.3;
}
.blog-list-body p { font-size: .875rem; color: var(--slate); line-height: 1.7; margin: 0 0 .75rem; }
.blog-list-meta { font-size: .78rem; color: var(--muted); display: flex; gap: 1.25rem; }
@media (min-width: 601px) {
  .blog-list-card { flex-direction: row; }
  .blog-list-img { flex: 0 0 180px; width: 180px; }
  .blog-list-img img { height: 120px; }
}

/* ── Article ─────────────────────────────────────────────── */
.article-meta { font-size: .875rem; color: var(--muted); margin-bottom: 2rem; }
.article-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text);
  margin: 2.5rem 0 .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.article-body h3 {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  color: var(--text);
  margin: 1.75rem 0 .5rem;
}
.article-body p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.87;
  margin-bottom: 1.25rem;
}
.article-body ul,
.article-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.article-body li {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: .4rem;
}
.article-body em { color: var(--text); font-style: italic; }
.article-body strong { color: var(--text); }

/* ── Privacy ─────────────────────────────────────────────── */
.privacy-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.privacy-item:last-child { border-bottom: none; }
.privacy-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--charcoal);
  flex-shrink: 0;
  margin-top: .45rem;
}
.privacy-item p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
  margin: 0;
}

/* ── Site Footer (blog + sub-pages) ─────────────────────── */
.site-footer {
  background: #1a1830;
  color: rgba(255,255,255,.55);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-brand .nav-logo-mark { height: 40px; width: auto; }
.footer-tagline {
  font-size: .875rem;
  line-height: 1.78;
  color: rgba(255,255,255,.55);
  margin-top: 1rem;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.1rem;
}
.footer-col a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .875rem;
  display: block;
  padding: .18rem 0;
  transition: color .18s;
}
.footer-col a:hover { color: rgba(255,255,255,.88); }
.footer-cta-btn {
  display: inline-block !important;
  margin-top: .75rem;
  background: var(--purple);
  color: #fff !important;
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
.footer-brand { grid-column: 1 / -1; }
footer .col-6 { width: 100%; }
#scrollTop { display: none; }
body { overflow-x: hidden; }
.contact-hero-chips { flex-direction: column; align-items: center; gap: .75rem; }
.price-match-bridge { white-space: normal; text-align: center; padding: .5rem 1.5rem; font-size: .8rem; }
.price-match-bridge-wrap { top: -20px; }
.price-match-box { margin: 0 12px; }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: auto; }
  footer .col-6 { width: auto; }
  #scrollTop { display: flex; }
  body { overflow-x: initial; }
  .contact-hero-chips { flex-direction: row; align-items: flex-start; gap: 2rem; }
  .price-match-bridge { white-space: nowrap; text-align: left; padding: .3rem .9rem; font-size: .9rem; }
  .price-match-bridge-wrap { top: -18px; }
  .price-match-box { margin: 0; }
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: #1a1830;
  color: rgba(255,255,255,.55);
  padding: 5rem 0 0;
}
footer .row { --bs-gutter-x: 5rem; --bs-gutter-y: 3rem; }
footer h5 {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.1rem;
}
footer p { font-size: .875rem; line-height: 1.78; }
footer a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .875rem;
  display: block;
  padding: .18rem 0;
  transition: color .18s;
}
footer a:hover { color: rgba(255,255,255,.88); }
.footer-phone-row {
  font-size: .875rem;
  margin-top: .75rem;
  color: rgba(255,255,255,.55);
}
.footer-phone-row a {
  color: rgba(255,255,255,.55);
  display: inline;
  font-weight: 400;
}
.footer-phone-row a:hover { color: rgba(255,255,255,.88); }
.footer-phone-row i { color: rgba(255,255,255,.55); }
footer a[href^="mailto"] { word-break: break-all; }
.site-footer a[href^="mailto"] { word-break: break-all; }
.footer-charcoal-bar {
  width: 36px;
  height: 2px;
  background: var(--purple);
  border-radius: 1px;
  margin-bottom: 1rem;
}
hr.footer-hr {
  border-color: rgba(255,255,255,.1);
  margin: 2.5rem 0 0;
}
.footer-bottom {
  padding: 1rem 0;
  font-size: .75rem;
  color: rgba(255,255,255,.38);
  text-align: center;
}
.footer-bottom .footer-copy { white-space: normal; }

/* ── Utilities ───────────────────────────────────────────── */
.bg-cream { background: var(--cream) !important; }
.bg-navy  { background: var(--navy) !important; }
.text-charcoal { color: var(--charcoal) !important; }
.text-purple { color: var(--purple) !important; }

@keyframes price-match-sway {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(2deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}
.price-match-box {
  animation: price-match-sway 4s linear 2;
}
.section-stripe {
  height: 1px;
  background: linear-gradient(to right, rgba(110,99,255,.65), rgba(196,190,255,.65));
  transform: scaleY(.5);
  position: relative;
  z-index: 2;
}.price-match-section { position: relative; z-index: 5; }
.price-match-bridge-wrap {
  position: absolute;
  top: -18px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  z-index: 100;
  pointer-events: none;
}
.price-match-bridge-wrap .price-match-bridge {
  pointer-events: auto;
}
.price-match-bridge {
  background: var(--navy);
  color: #C4BEFF;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.price-match-box {
  transform-origin: center bottom;
  background: var(--navy);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.price-match-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(196,190,255,.08);
  pointer-events: none;
}
.price-match-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(196,190,255,.05);
  pointer-events: none;
}
.price-match-eyebrow {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #C4BEFF;
  margin-bottom: .75rem;
}
.price-match-box h3 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.price-match-box h3 em {
  color: #C4BEFF;
  font-style: normal;
}
.price-match-box p {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  margin: 0 0 .75rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  position: relative;
  z-index: 2;
  border: none;
  border-left: 6px solid var(--purple);
  box-shadow: 0 32px 64px rgba(0,0,0,.35), 0 8px 24px rgba(0,0,0,.22), -8px 0 24px rgba(0,0,0,.12);
  transform: translateY(-6px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-card .stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--slate);
  margin: 0 0 1.25rem;
  font-style: italic;
  border: none;
  padding: 0;
}
.testimonial-author {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}

.navbar-collapse { border-top: 1px solid var(--border); margin-top: .5rem; padding-top: .5rem; }
.nav-cta { margin: .5rem 0 .75rem; display: inline-block; }
.hero { min-height: 520px; padding: 5rem 0; }
.pricing-card.featured { margin-top: 0; }
@media (min-width: 768px) {
  .hero { min-height: 620px; padding: 90px 0; }
  .pricing-card.featured { margin-top: -1rem; }
}
@media (min-width: 992px) {
  .navbar-collapse { border-top: none; margin-top: 0; padding-top: 0; }
  .about-hero-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
  .privacy-hero-grid { grid-template-columns: 1fr 1fr; }
  .privacy-hero-graphic { display: flex; }
}

/* ══════════════════════════════════════════════════════════════
   HOME PAGE — AfterPlan-style design system
   ══════════════════════════════════════════════════════════════ */

/* ── Light Hero ─────────────────────────────────────────────── */
.hero-light-container {
  margin-left: auto;
}
@media (min-width: 992px) {
  .hero-light-container { margin-left: 13%; }
}

.hero-code-photo {
  display: none;
}
@media (min-width: 992px) {
.hero-code-photo {
  display: block;
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  height: 100%;
  width: 55%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  z-index: 0;
  opacity: .75;
  transform: translateZ(0);
  will-change: opacity;
  -webkit-mask-image:
    linear-gradient(135deg, transparent 0%, black 40%),
    linear-gradient(to right,  transparent 0%, black 55%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(135deg, transparent 0%, black 40%),
    linear-gradient(to right,  transparent 0%, black 55%);
  mask-composite: intersect;
}
}

.above-fold {
  display: flex;
  flex-direction: column;
}
.hero-light {
  background: linear-gradient(160deg, #fafaf8 0%, #e2ddff 50%, #ebe8f8 100%);
  padding: 40px 0 50px;
  min-height: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-light::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110,99,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-light::after {
  content: '';
  position: absolute;
  bottom: 0; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,55,72,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-light-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.hero-light-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(110,99,255,.08);
  color: var(--purple);
  font-size: .75rem;
  font-weight: 400;
  padding: .35rem .9rem;
  border-radius: 50px;
  letter-spacing: .06em;
  margin-bottom: 1.5rem;
}
.hero-light-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}
.hero-light h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
h1 em, h2 em, h3 em, .section-title em {
  font-style: normal;
  color: var(--purple);
}
.hero-light-lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.82;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .875rem;
  font-weight: 400;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid rgba(110,99,255,.2);
  border-radius: 50px;
  padding: .35rem 1rem;
}
.trust-badge-icon { color: var(--purple); font-size: .875rem; }

/* Ghost button (light backgrounds) */
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(0,0,0,.25);
  border-radius: 50px;
  padding: .6rem 1.6rem;
  font-size: .875rem;
  transition: background .18s, color .18s, border-color .18s;
  display: inline-block;
  text-decoration: none;
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--text);
  border-color: rgba(0,0,0,.15);
}

/* White button (dark backgrounds) */
.btn-white {
  background: #fff;
  color: var(--purple);
  border: none;
  border-radius: 50px;
  padding: .65rem 1.75rem;
  font-size: .875rem;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover {
  background: #f5f5ff;
  color: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}

/* ── Hero Card (right column) ─────────────────────────────── */
.hero-card-wrap {
  position: relative;
  padding: 20px 10px 20px;
  display: none;
  flex-direction: column;
  isolation: isolate;
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 24px 60px rgba(110,99,255,.12), 0 6px 16px rgba(0,0,0,.06);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hero-card-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
/* Hero browser mockup */
.hero-browser {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hbr-chrome {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .75rem;
  background: #edeef0;
  border-bottom: 1px solid var(--border);
}
.hbr-dots { display: flex; gap: .3rem; }
.hbr-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hbr-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: .625rem;
  color: var(--muted);
  padding: .2rem .6rem;
  font-family: var(--sans);
}
.hbr-nav {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .75rem;
  background: #5b6475;
}
.hbr-nav-logo { width: 56px; height: 9px; background: rgba(255,255,255,.65); border-radius: 4px; flex-shrink: 0; }
.hbr-nav-links { display: flex; gap: .35rem; flex: 1; }
.hbr-nav-link { width: 28px; height: 7px; background: rgba(255,255,255,.3); border-radius: 3px; }
.hbr-nav-btn { width: 44px; height: 18px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.4); border-radius: 7px; flex-shrink: 0; }
.hbr-hero {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem .75rem;
  background: linear-gradient(120deg, #f4f5f7 50%, #e9ecf0 100%);
  flex: 1;
}
.hbr-hero-copy { flex: 1; display: flex; flex-direction: column; gap: .32rem; }
.hbr-hero-line { height: 8px; border-radius: 999px; background: #b0b9c6; }
.hbr-hero-line.long { width: 82%; background: #8c97a8; }
.hbr-hero-line.med { width: 52%; background: #d0d6de; }
.hbr-hero-cta { margin-top: .45rem; width: 58px; height: 17px; background: #5b6475; border-radius: 8px; opacity: .8; }
.hbr-hero-img {
  width: 80px; height: 72px;
  background: linear-gradient(135deg, #dce1e9, #c8d0da);
  border-radius: 10px;
  border: 1px solid #c0c8d4;
  flex-shrink: 0;
}
.hbr-cards {
  display: flex;
  gap: .5rem;
  padding: .65rem .75rem;
  background: #fff;
  border-top: 1px solid var(--border);
}
.hbr-scard {
  flex: 1;
  background: #f7f8fa;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: .55rem .55rem;
  display: flex;
  align-items: flex-start;
  gap: .38rem;
}
.hbr-scard-icon { width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0; }
.hbr-scard.purple .hbr-scard-icon { background: #d0d5df; }
.hbr-scard.charcoal  .hbr-scard-icon { background: #cdd4de; }
.hbr-scard.blue    .hbr-scard-icon { background: #c8d1dd; }
.hbr-scard-lines { flex: 1; display: flex; flex-direction: column; gap: .25rem; padding-top: .18rem; }
.hbr-scard-line { height: 5px; background: #dde1e8; border-radius: 999px; }
.hbr-scard-line.long { width: 100%; }
.hbr-scard-line.med  { width: 62%; }
/* Stats strip */
.hbr-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: .6rem .75rem .7rem;
  background: #f7f8fa;
  border-top: 1px solid var(--border);
}
.hbr-stat { display: flex; flex-direction: column; align-items: center; gap: .08rem; }
.hbr-stat-num { font-size: 1rem; font-weight: 600; color: #3d4654; font-family: var(--sans); line-height: 1; }
.hbr-stat-label { font-size: .625rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.hbr-stat-div { width: 1px; height: 22px; background: var(--border); }

/* Floating badges */
.hero-float-1, .hero-float-2 {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .45rem 1rem;
  font-size: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}
.hero-float-1 { top: -20px; right: -10px; animation: float 3s ease-in-out infinite; }
.hero-float-2 { bottom: -20px; left: -10px; animation: float-down 3s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── Section wrappers ─────────────────────────────────────── */
.section-light  { background: var(--gray-soft); padding: 60px 0; position: relative; z-index: 0; }
.section-cream  { background: var(--cream); padding: 60px 0; position: relative; z-index: 0; }
.section-header {
  text-align: center;
  margin-bottom: 2.25rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.78;
  font-weight: 300;
  margin: .75rem 0 0;
}

/* ── AfterPlan-style feature cards (left-border) ────────── */
/* FULL SERVICE STRIP */
.fullservice-strip {
  background: #E8E7FD;
  padding: 2rem 0 2.25rem;
  margin-top: 0;
  margin-bottom: -2px;
}
.fs-headline {
  text-align: center;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 2rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.fs-pillars {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: .5rem;
  width: 260px;
  margin: 0 auto;
}
.fs-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  background: #fff;
  border: 1px solid rgba(255,255,255,.90);
  box-shadow: 0 1px 0 rgba(255,255,255,.55) inset, 0 4px 20px rgba(60,40,160,.22);
  border-radius: 14px;
  padding: 1.1rem 1.5rem;
  min-width: 0;
  width: 100%;
}
.fs-pillar::before,
.fs-pillar::after,
.fs-pillar .fs-corner-tr,
.fs-pillar .fs-corner-bl {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
}
.fs-pillar::before {
  top: 7px;
  left: 7px;
  border-top: 2px solid #5a52d5;
  border-left: 2px solid #5a52d5;
  border-radius: 2px 0 0 0;
}
.fs-pillar::after {
  bottom: 7px;
  right: 7px;
  border-bottom: 2px solid #5a52d5;
  border-right: 2px solid #5a52d5;
  border-radius: 0 0 2px 0;
}
.fs-pillar .fs-corner-tr {
  top: 7px;
  right: 7px;
  border-top: 2px solid #5a52d5;
  border-right: 2px solid #5a52d5;
  border-radius: 0 2px 0 0;
}
.fs-pillar .fs-corner-bl {
  bottom: 7px;
  left: 7px;
  border-bottom: 2px solid #5a52d5;
  border-left: 2px solid #5a52d5;
  border-radius: 0 0 0 2px;
}
.fs-pillar-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(110,99,255,.10);
  border-radius: 50%;
  font-size: 1.25rem;
  color: #6e63ff;
}
.fs-pillar-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #7b74c4;
  text-align: center;
  white-space: nowrap;
}
.fs-arrow {
  color: var(--charcoal);
  font-size: 1.25rem;
  display: none;
}
@media (min-width: 577px) {
  .fs-arrow { display: block; }
  .fs-pillars { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: .75rem; width: fit-content; }
  .fs-pillar { width: auto; }
}

.fc-card {
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
  transition: transform .2s, box-shadow .2s;
}
.fc-card:hover { transform: translateY(-4px); }
.fc-charcoal:hover { box-shadow: 0 4px 16px rgba(45,55,72,.14); }
.fc-purple:hover   { box-shadow: 0 4px 16px rgba(110,99,255,.18); }
.fc-blue:hover     { box-shadow: 0 4px 16px rgba(90,141,238,.18); }
.fc-green:hover    { box-shadow: 0 4px 16px rgba(40,199,111,.18); }
.fc-teal:hover     { box-shadow: 0 4px 16px rgba(20,184,166,.18); }
.fc-orange:hover   { box-shadow: 0 4px 16px rgba(255,159,67,.20); }
.fc-pink:hover     { box-shadow: 0 4px 16px rgba(236,72,153,.18); }
.fc-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.fc-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
}
.fc-card-title {
  font-weight: 400;
  color: var(--text);
  font-size: 1rem;
  font-family: var(--sans);
  margin: 0;
}
.fc-card-text {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
/* Color variants — tinted border + icon box with matching border */
.fc-charcoal { border-color: rgba(45,55,72,.45); }
.fc-charcoal .fc-card-icon { background: rgba(45,55,72,.1);  border: 1px solid rgba(45,55,72,.22);  color: var(--charcoal); }
.fc-purple { border-color: rgba(110,99,255,.5); }
.fc-purple .fc-card-icon { background: rgba(110,99,255,.12); border: 1px solid rgba(110,99,255,.24); color: var(--purple); }
.fc-blue   { border-color: rgba(90,141,238,.5); }
.fc-blue   .fc-card-icon { background: rgba(90,141,238,.12); border: 1px solid rgba(90,141,238,.24); color: #2b64c9; }
.fc-green  { border-color: rgba(40,199,111,.5); }
.fc-green  .fc-card-icon { background: rgba(40,199,111,.12); border: 1px solid rgba(40,199,111,.24); color: #18854c; }
.fc-teal   { border-color: rgba(20,184,166,.5); }
.fc-teal   .fc-card-icon { background: rgba(20,184,166,.12); border: 1px solid rgba(20,184,166,.24); color: #0f766e; }
.fc-orange { border-color: rgba(255,159,67,.6); }
.fc-orange .fc-card-icon { background: rgba(255,159,67,.15); border: 1px solid rgba(255,159,67,.30); color: #c56a00; }
.fc-red    { border-color: rgba(239,68,68,.5); }
.fc-red:hover    { box-shadow: 0 4px 16px rgba(239,68,68,.18); }
.fc-pink   { border-color: rgba(236,72,153,.5); }
.fc-pink   .fc-card-icon { background: rgba(236,72,153,.12); border: 1px solid rgba(236,72,153,.24); color: #be185d; }
.fc-pink:hover   { box-shadow: 0 4px 16px rgba(236,72,153,.18); }
.fc-indigo { border-color: rgba(99,102,241,.5); }
.fc-indigo:hover { box-shadow: 0 4px 16px rgba(99,102,241,.18); }
.fc-amber  { border-color: rgba(245,158,11,.6); }
.fc-amber:hover  { box-shadow: 0 4px 16px rgba(245,158,11,.20); }
.fc-rose   { border-color: rgba(244,63,94,.5); }
.fc-rose:hover   { box-shadow: 0 4px 16px rgba(244,63,94,.18); }
.fc-sky    { border-color: rgba(14,165,233,.5); }
.fc-sky:hover    { box-shadow: 0 4px 16px rgba(14,165,233,.18); }

/* ── Horizontal Process Timeline ─────────────────────────── */
.timeline-date {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--purple);
  background: rgba(110,99,255,.08);
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: .85rem;
}
.timeline-date-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}
.timeline-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 .6rem;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.timeline-body {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.78;
  margin: 0;
  font-weight: 300;
}
.h-timeline { position: relative; overflow: hidden; }
.h-timeline-track {
  position: absolute;
  top: calc(var(--card-h, 200px) + 7px);
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 2px;
  background: linear-gradient(to right, transparent, var(--purple) 8%, var(--purple) 92%, transparent);
}
.h-timeline-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.h-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.h-item.visible { opacity: 1; transform: translateY(0); }
.h-item:nth-child(2) { transition-delay: .1s; }
.h-item:nth-child(3) { transition-delay: .2s; }
.h-item:nth-child(4) { transition-delay: .3s; }
.h-item-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.4rem 1.25rem;
  box-shadow: 0 8px 32px rgba(110,99,255,.08), 0 2px 8px rgba(0,0,0,.04);
  width: 100%;
  margin-bottom: 1.25rem;
}
.h-item-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--purple);
  box-shadow: 0 0 0 4px rgba(110,99,255,.12);
  flex-shrink: 0;
  margin-bottom: .9rem;
  position: relative;
  z-index: 1;
}
.h-item-label {
  font-size: .7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
@media (min-width: 481px) {
  .h-timeline-items { grid-template-columns: 1fr 1fr; }
  .h-timeline-track { display: none; }
}
@media (min-width: 768px) {
  .h-timeline-items { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .h-timeline-track { display: block; }
}

/* ── About / Why grid ─────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.why-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.why-stat-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--purple);
  line-height: 1;
  margin-bottom: .5rem;
}
.why-stat-label {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
}
.why-quote {
  background: linear-gradient(135deg, var(--purple) 0%, #8b7fff 100%);
  border-radius: 16px;
  padding: 1.75rem;
  color: rgba(255,255,255,.92);
}
.why-quote-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: .75rem;
}
.why-quote-attr {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.why-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.why-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.55;
}
.why-check-icon {
  width: 1.5rem; height: 1.5rem;
  border-radius: 6px;
  background: var(--purple-soft);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .75rem;
  margin-top: .05rem;
}

/* ── Process cards (dark section) ────────────────────────── */
.urgency-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--slate) 100%);
  padding: 60px 0;
}
.process-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  transition: background .22s, border-color .22s;
}
.process-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(110,99,255,.35);
}
.process-card-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(45,55,72,.14);
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.process-card-time {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.process-card h5 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: .5rem;
}
.process-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.72;
  margin: 0;
}

/* ── Fade-up scroll animation ────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Home-page responsive ────────────────────────────────── */
@media (min-width: 768px) {
  .hero-light { padding: 60px 0 70px; }
  .page-hero { padding: 60px 0 70px; min-height: 420px; }
  .section-light, .section-cream, .urgency-section { padding: 90px 0; }
  .section-header { margin-bottom: 3.5rem; }
}
@media (min-width: 992px) {
  .hero-light-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-card-wrap { display: flex; }
  .hero-light { padding: 80px 0 109px; min-height: 638px; }
  .page-hero { padding: 80px 0 109px; min-height: 638px; }
  .why-grid { grid-template-columns: 3fr 2fr; gap: 4rem; }
}

/* ── Callout Strip (Financing + Price Match) ─────────────────── */
.callout-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.callout-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
}
.callout-divider { background: var(--border); height: 1px; }
.callout-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.75rem 2rem;
}
.callout-item:first-of-type,
.callout-item:last-of-type { padding: 2rem 0; }
.callout-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(110,99,255,.1);
  border: 1.5px solid rgba(110,99,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--purple);
}
.callout-eyebrow {
  font-size: .75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--purple);
  margin-bottom: .3rem;
}
.callout-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .35rem;
}
.callout-desc {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: .65rem;
}
.callout-link {
  font-size: 1rem;
  color: var(--purple);
  font-weight: 400;
  text-decoration: none;
  transition: color .15s;
}
.callout-link:hover { color: var(--purple-dark); }

@media (min-width: 768px) {
  .callout-strip-inner { grid-template-columns: 1fr 1px 1fr; }
  .callout-divider { height: auto; }
  .callout-item:first-of-type { padding: 2.75rem 2rem 2.75rem 0; }
  .callout-item:last-of-type  { padding: 2.75rem 0 2.75rem 2rem; }
}

/* ── Utility ─────────────────────────────────────────────── */
.content-narrow { max-width: 960px; margin: 0 auto; }
.section-white { background: #ffffff; }
.section-testimonials { background: linear-gradient(160deg, #fafaf8 0%, #f0effe 50%, #fafaf8 100%); }

/* ── H1 accent (italic gold "Expertly") ─────────────────── */
.hero-h1-accent { font-style: italic; color: var(--gold); }

/* ── Why / About body paragraph ─────────────────────────── */
.why-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  margin: 1.25rem 0 1.5rem;
}

/* ── Browser mockup dot colors ───────────────────────────── */
.hbr-dot-red    { background: #ff5f57; }
.hbr-dot-yellow { background: #febc2e; }
.hbr-dot-green  { background: #28c840; }

/* ── Browser mockup secondary hero line ──────────────────── */
.hbr-hero-line-sub { width: 62%; opacity: .6; }

/* ── Hero floating badge icon/text colors ────────────────── */
.hero-float-1 i    { color: var(--purple); }
.hero-float-1 span { font-weight: 400; color: var(--text); }
.hero-float-2 i    { color: var(--charcoal); }
.hero-float-2 span { color: var(--muted); }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--purple) 0%, #8b7fff 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section .container { position: relative; }
.cta-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-glow-tr { top: -120px; right: -120px; }
.cta-glow-bl { bottom: -120px; left: -120px; }
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta-section .section-eyebrow { color: rgba(255,255,255,.65); }
.cta-section .section-title {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}
.cta-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  line-height: 1.82;
  font-weight: 300;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-footnote {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.cta-footnote a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  display: inline;
}

/* ── Footer extras ───────────────────────────────────────── */
.footer-email { display: inline; }

/* ── Skip navigation ─────────────────────────────────────── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--purple);
  color: #fff;
  padding: .5rem 1rem;
  z-index: 9999;
  text-decoration: none;
  font-size: .875rem;
  border-radius: 0 0 6px 0;
}
.skip-nav:focus { top: 0; color: #fff; }

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .fade-up, .h-item { opacity: 1; transform: none; }
}
