/* ============================================================
   myprezns — Main Stylesheet
   Version 1.0 | April 2026
   ============================================================ */

/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #0B1A2E;
  --navy-mid:   #152843;
  --navy-light: #1E3554;
  --blue:       #1A52C8;
  --blue-lt:    #2E6BE6;
  --blue-bg:    #EBF1FC;
  --white:      #FFFFFF;
  --off:        #F7F6F2;
  --text:       #0B1A2E;
  --muted:      #5A6B82;
  --border:     #D6DDE8;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --nav-h:      68px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}


/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: var(--nav-h);
    transform: translateZ(0);       
  will-change: transform;          
}

.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 65px;
  width: auto;
  display: block;
  margin-bottom: 7px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__links > li > a {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(0,0,0,0.72);
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

.nav__links > li > a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--blue);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.6;
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 228px;
  box-shadow: 0 12px 32px rgba(11,26,46,0.16);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  display: block;
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.5625rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.15s;
}

.nav__dropdown-menu a:hover {
  background: var(--off);
}

/* CTA Button in nav */
.nav__cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 7px !important;
  transition: background 0.2s !important;
  margin-left: 0.5rem;
}

.nav__cta:hover {
  background: var(--blue-lt) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(0,0,0,0.8);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav panel */
.nav__mobile-panel {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 190;
}

.nav__mobile-panel .mobile-parent {
  color: rgba(255,255,255,0.90);
  font-weight: 500;
}

.nav__mobile-panel .mobile-child {
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  border-left: 2px solid rgba(255,255,255,0.10);
  margin-left: 0.5rem;
}

.nav__mobile-panel .mobile-child:hover {
  color: rgba(255,255,255,0.85);
  border-left-color: var(--blue);
}

.nav__mobile-panel.is-open {
  display: block;
}

.nav__mobile-panel a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s;
}

.nav__mobile-panel a:last-child {
  border-bottom: none;
}

.nav__mobile-panel a:hover {
  color: var(--white);
}

.nav__mobile-panel .mobile-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  border-bottom: none !important;
  padding: 0 !important;
}

.nav__mobile-cta {
  display: block;
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 500;
  text-align: center;
  padding: 0.75rem 1rem !important;
  border-radius: 7px;
  margin-top: 1rem;
  border-bottom: none !important;
}

/* ── SUB-NAV (Services pages only) ───────────────────────── */
.subnav {
	position: sticky;
	Top: 68px;
	z-index: 999;
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transform: translateZ(0);
  will-change: transform;
}

.subnav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.subnav__inner::-webkit-scrollbar {
  display: none;
}

.subnav__link {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
  padding: 0.75rem 0.875rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}

.subnav__link:hover {
  color: rgba(255,255,255,0.9);
}

.subnav__link.is-active {
  color: var(--white);
  border-bottom-color: var(--blue);
  font-weight: 500;
}

/* ── PAGE HEADER ──────────────────────────────────────────── */
.page-header {
  background: var(--navy);
  padding: 4rem 2rem 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.page-header__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}

.page-header__sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.75;
}

/* ── SERVICE BLOCKS ───────────────────────────────────────── */
.svc-block {
  padding: 5.5rem 2rem;
  background: var(--white);
}

.svc-block--alt {
  background: var(--off);
}

.svc-block__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.svc-block__layout--reverse {
  direction: rtl;
}

.svc-block__layout--reverse > * {
  direction: ltr;
}

.svc-block__title {
  font-family: var(--serif);
  font-size: clamp(1.875rem, 2.8vw, 2.5rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0.5rem 0 1.25rem;
}

.svc-block__body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.svc-block__list {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.svc-block__list li {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  padding-left: 1.125rem;
  position: relative;
}

.svc-block__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue);
}

.svc-block__cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.svc-mini-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.625rem 1.75rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.svc-mini-card:hover {
  border-color: var(--blue);
  transform: translateX(4px);
}

.svc-mini-card__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.375rem;
}

.svc-mini-card__title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.svc-mini-card__body {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.875rem;
}

.svc-mini-card__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue);
}

/* ── FLAGSHIP SECTION ─────────────────────────────────────── */
.svc-flagship {
  background: var(--navy);
  padding: 5.5rem 2rem;
}

.svc-flagship__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.svc-flagship__title {
  font-family: var(--serif);
  font-size: clamp(1.875rem, 2.8vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0.5rem 0 1.25rem;
}

.svc-flagship__body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.svc-flagship__list {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.svc-flagship__list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding-left: 1.125rem;
  position: relative;
}

.svc-flagship__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue-lt);
}

.savings-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 2rem;
}

.savings-card__head {
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.5rem;
}

.savings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.savings-row:last-of-type {
  border-bottom: none;
}

.savings-row__tier {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
}

.savings-row__save {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
}

.savings-card__link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color 0.18s;
}

.savings-card__link:hover {
  color: var(--white);
}

/* ── CALLOUT STRIP ────────────────────────────────────────── */
.callout-strip {
  background: var(--blue-bg);
  padding: 2.25rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.callout-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.callout-strip__text {
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
}

/* ── BOTTOM CTA ───────────────────────────────────────────── */
.cta-bottom {
  background: var(--off);
  padding: 5rem 2rem;
}

.cta-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-bottom__title {
  font-family: var(--serif);
  font-size: clamp(1.625rem, 2.5vw, 2.125rem);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
}

.cta-bottom__sub {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.72;
  max-width: 520px;
}

.cta-bottom__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}


/* ── REUSABLE LAYOUT ──────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.875rem;
}

.section-label--light {
  color: rgba(255,255,255,0.5);
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--navy);
}

.section-heading--light {
  color: var(--white);
}

.section-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 0.875rem;
  line-height: 1.75;
  max-width: 580px;
}

.section-sub--light {
  color: rgba(255,255,255,0.65);
}


/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 7px;
  padding: 0.8125rem 1.625rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--blue-lt);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.22);
}

.btn--ghost:hover {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn--outline:hover {
  background: var(--blue-bg);
}


/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 6.5rem 2rem 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 72% 50%, rgba(26,82,200,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 45% 75% at 15% 80%, rgba(26,82,200,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  max-width: 900px;
  position: relative;
}

.hero__label {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.hero__sub {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255,255,255,0.68);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.09);
  flex-wrap: wrap;
}

.hero__stat-val {
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  display: block;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin-top: 0.125rem;
}


/* ── SERVICES SECTION ─────────────────────────────────────── */
.services {
  background: var(--off);
  padding: 5.5rem 2rem;
}

.services__head {
  margin-bottom: 3rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.125rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.22s;
}

.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.service-card__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.service-card__title {
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.service-card__items {
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 400;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.service-card__body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 1.75rem;
}

.service-card__links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.service-card__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.18s;
}

.service-card__links a:hover {
  gap: 0.55rem;
}

/* Flagship variant */
.service-card--flagship {
  background: var(--navy);
  border-color: var(--navy);
}

.service-card--flagship:hover {
  border-color: var(--blue-lt);
}

.service-card--flagship .service-card__label {
  color: rgba(255,255,255,0.42);
}

.service-card--flagship .service-card__title {
  color: var(--white);
}

.service-card--flagship .service-card__items {
  color: rgba(255,255,255,0.45);
}

.service-card--flagship .service-card__body {
  color: rgba(255,255,255,0.62);
}

.service-card--flagship .service-card__links a {
  color: rgba(255,255,255,0.82);
}

.service-card--flagship .service-card__links a:hover {
  color: var(--white);
}


/* ── WHY SECTION ──────────────────────────────────────────── */
.why {
  background: var(--white);
  padding: 5.5rem 2rem;
}

.why__layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}

.why__sticky {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.why__pull {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 500;
  line-height: 1.38;
  color: var(--navy);
  letter-spacing: -0.012em;
  margin-top: 1.25rem;
  padding-top: 1.5rem;
  border-top: 2.5px solid var(--navy);
}

.why__pull em {
  font-style: italic;
  color: var(--blue);
}

.why__points {
  display: flex;
  flex-direction: column;
}

.why__point {
  display: flex;
  gap: 1.375rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.why__point:first-child {
  border-top: 1px solid var(--border);
}

.why__num {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--blue);
  min-width: 30px;
  padding-top: 2px;
  flex-shrink: 0;
}

.why__point-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.why__point-body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.72;
}


/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how {
  background: var(--off);
  padding: 5.5rem 2rem;
}

.how__head {
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.step {
  background: var(--white);
  padding: 2.375rem 2.125rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.step:last-child {
  border-right: none;
}

.step:hover {
  background: var(--blue-bg);
}

.step__num {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--blue-bg);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}

.step:hover .step__num {
  color: rgba(26,82,200,0.25);
}

.step__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.step__body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.72;
}


/* ── PITCH STRIP ──────────────────────────────────────────── */
.pitch {
  background: var(--navy);
  padding: 5.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pitch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(26,82,200,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pitch__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.pitch blockquote {
  font-family: var(--serif);
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.pitch blockquote em {
  font-style: normal;
  color: rgba(255,255,255,0.55);
}


/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 3.5rem 2rem 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 2.25fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  font-weight: 300;
  line-height: 1.7;
  max-width: 300px;
}

.footer__col-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 1.125rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  font-weight: 300;
  transition: color 0.18s;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.28);
  font-weight: 300;
}

.footer__bottom-link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.18s;
}

.footer__bottom-link:hover {
  color: rgba(255,255,255,0.7);
}


/* ── ENTRANCE ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__inner > * {
  animation: fadeUp 0.7s ease both;
}

.hero__inner > *:nth-child(1) { animation-delay: 0.05s; }
.hero__inner > *:nth-child(2) { animation-delay: 0.15s; }
.hero__inner > *:nth-child(3) { animation-delay: 0.25s; }
.hero__inner > *:nth-child(4) { animation-delay: 0.36s; }
.hero__inner > *:nth-child(5) { animation-delay: 0.48s; }

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }


/* ── RESPONSIVE — TABLET (≤ 1024px) ──────────────────────── */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card--flagship {
    grid-column: 1 / -1;
  }

  .why__layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

.sections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
.pricing-cards-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .addons-pricing-grid {
    grid-template-columns: 1fr;
  }  


/* ── RESPONSIVE — MOBILE (≤ 768px) ───────────────────────── */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

.svc-block__layout,
  .svc-flagship__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .svc-block__layout--reverse {
    direction: ltr;
  }

  .cta-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .callout-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    position: sticky;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__logo img {
    height: 36px;
  }

  /* Sections */
  .hero {
    padding: 4rem 1.25rem 3.5rem;
  }

  .services,
  .why,
  .how,
  .pitch,
  .footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card--flagship {
    grid-column: auto;
  }

  /* Why */
  .why__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why__sticky {
    position: static;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .step:last-child {
    border-bottom: none;
  }

  /* Hero stats */
  .hero__stats {
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }

  .hero__stat-val {
    font-size: 1.5rem;
  }

  /* Pitch */
  .pitch {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Buttons */
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

.content-two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .includes-card {
    position: static;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .form-row--two {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 1.75rem 1.25rem;
  }

  .agreement-callout__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .addons-grid {
    grid-template-columns: 1fr;
  }

.pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .renewal-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .addons-grid--three {
    grid-template-columns: 1fr;
  }
  
  .sections-grid {
    grid-template-columns: 1fr;
  }
  
  .bundle-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bundle-breakdown {
    grid-template-columns: 1fr;
  }

  .bundle-hero__actions {
    flex-direction: column;
  }

  .bundle-renewal-note__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .pricing-cards-grid--three {
    grid-template-columns: 1fr;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section__label-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .agreement-doc {
    padding: 1.75rem 1.25rem;
    border-radius: 0 0 12px 12px;
  }

  .agreements-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-card {
    position: static;
    padding: 1.75rem 1.25rem;
  }

  .contact-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  .bundle-section__breakdown {
    grid-template-columns: 1fr;
  }

/* ── RESPONSIVE — SMALL MOBILE (≤ 480px) ─────────────────── */
@media (max-width: 480px) {
  .hero__title {
    font-size: 2.4rem;
  }

  .section-heading {
    font-size: 1.875rem;
  }

  .service-card,
  .step {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .why__point {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ── CONTENT TWO-COL ──────────────────────────────────────── */
.content-section {
  padding: 5.5rem 2rem;
  background: var(--white);
}

.content-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: start;
}

.content-heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.6vw, 2.375rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0.5rem 0 1.25rem;
}

.content-body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 1rem;
}

.includes-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 5rem);
}

.includes-card__title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.includes-list li {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  padding-left: 1.375rem;
  position: relative;
  line-height: 1.55;
}

.includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 500;
}

.includes-card__tat {
  border-top: 1px solid var(--border);
  padding-top: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

.tat-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
}

/* ── PROCESS SECTION ──────────────────────────────────────── */
.process-section {
  background: var(--off);
  padding: 5.5rem 2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0 2rem;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.125rem;
}

.process-card__num {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.625rem;
}

.process-card__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.875rem;
  line-height: 1.25;
}

.process-card__body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

.process-note {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  border-left: 3px solid var(--blue);
  padding-left: 1.125rem;
}

.process-note strong {
  color: var(--navy);
  font-weight: 500;
}

/* ── PRICING TABLE ────────────────────────────────────────── */
.pricing-section {
  background: var(--white);
  padding: 5.5rem 2rem;
}

.pricing-table-wrap {
  overflow-x: auto;
  margin: 2.5rem 0 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 560px;
}

.pricing-table thead tr {
  background: var(--navy);
}

.pricing-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: var(--blue-bg);
}

.pricing-table tbody td {
  padding: 1.125rem 1.25rem;
  color: var(--text);
  font-weight: 300;
}

.price-cell {
  font-weight: 500 !important;
  color: var(--navy) !important;
}

.muted-price {
  color: var(--muted) !important;
  font-weight: 300 !important;
}

.tier-badge {
  display: inline-block;
  font-size: 0.775rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.tier-badge--fresher {
  background: #EAF3DE;
  color: #3B6D11;
}

.tier-badge--mid {
  background: var(--blue-bg);
  color: var(--blue);
}

.tier-badge--senior {
  background: #FAEEDA;
  color: #854F0B;
}

.tier-badge--exec {
  background: #FBEAF0;
  color: #993556;
}

.pricing-notes {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.pricing-notes p {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}

.pricing-notes p::before {
  content: '* ';
}

/* ── AGREEMENT CALLOUT ────────────────────────────────────── */
.agreement-callout {
  background: var(--blue-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 2rem;
}

.agreement-callout__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.agreement-callout__inner p {
  font-size: 0.9375rem;
  color: var(--navy);
  font-weight: 300;
  line-height: 1.65;
}

.agreement-callout__inner strong {
  font-weight: 500;
}

/* ── ENQUIRY FORM ─────────────────────────────────────────── */
.form-section {
  background: var(--off);
  padding: 5.5rem 2rem;
}

.form-section__head {
  margin-bottom: 2.5rem;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  max-width: 860px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}

.required {
  color: var(--blue);
}

.form-input {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,82,200,0.10);
}

/* Error state — overrides focus blue, persists until corrected */
.form-input.is-error {
  border-color: #d93025;
}

.form-input.is-error:focus {
  border-color: #d93025;
  box-shadow: 0 0 0 3px rgba(217,48,37,0.12);
}

/* Valid state — green outline on blur when entry is correct */
.form-input.is-valid {
  border-color: #1e7e3e;
}

.form-input.is-valid:focus {
  border-color: #1e7e3e;
  box-shadow: 0 0 0 3px rgba(30,126,62,0.12);
}

/* Inline error message */
.form-error {
  display: none;
  font-size: 0.8rem;
  color: #d93025;
  font-weight: 400;
  margin-top: 0.3rem;
}

.form-error:not(:empty) {
    display: block;
}

/* Optional label tag */
.form-label--optional {
  font-size: 0.775rem;
  font-weight: 300;
  color: var(--muted);
  margin-left: 0.25rem;
}

/* Checkbox group for add-ons */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.form-input::placeholder {
  color: #A8B5C4;
  font-weight: 300;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6B82' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.65;
}

.form-file {
  padding: 0.625rem 1rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}

.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.form-checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
}

.form-checkbox-label a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 0.9375rem;
  font-size: 1rem;
}

.form-footer-note {
  font-size: 0.8375rem;
  color: var(--muted);
  font-weight: 300;
  text-align: center;
  line-height: 1.6;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 4rem 2rem;
}

.form-success__icon {
  width: 56px;
  height: 56px;
  background: var(--blue-bg);
  color: var(--blue);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success__title {
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.form-success__body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

/* ── ADD-ONS SECTION ──────────────────────────────────────── */
.addons-section {
  background: var(--off);
  padding: 5.5rem 2rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.addon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}

.addon-card:hover {
  border-color: var(--blue);
}

.addon-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.addon-card__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
}

.addon-card__price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
}

.addon-card__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}

.addon-card__time {
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── PRICING CARDS ────────────────────────────────────────── */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0 1.75rem;
  max-width: 780px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.125rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.pricing-card--featured {
  border: 2px solid var(--blue);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.725rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__label {
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.pricing-card__price {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-card__freq {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.pricing-card__renewal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--off);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.renewal-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}

.renewal-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.pricing-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
  margin-bottom: 1.75rem;
}

.pricing-card__list li {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}

.pricing-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.775rem;
  font-weight: 500;
}

/* ── RENEWAL SECTION ──────────────────────────────────────── */
.renewal-section {
  background: var(--off);
  padding: 5.5rem 2rem;
}

.renewal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.renewal-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.6vw, 2.375rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0.5rem 0 1.25rem;
}

.renewal-body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.renewal-body strong {
  color: var(--navy);
  font-weight: 500;
}

.renewal-reminder-stack {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.reminder-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
}

.reminder-item--far {
  border-color: var(--border);
  opacity: 0.7;
}

.reminder-item--close {
  border-color: var(--blue);
  background: var(--blue-bg);
}

.reminder-item__days {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
}

.reminder-item__label {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 300;
}

.addons-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

/* ── SECTIONS BREAKDOWN GRID ──────────────────────────────── */
.sections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.section-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}

.section-item:hover {
  border-color: var(--blue);
}

.section-item--addon {
  background: var(--navy);
  border-color: var(--navy);
}

.section-item--addon:hover {
  border-color: var(--blue-lt);
}

.section-item__num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 0.625rem;
  line-height: 1;
}

.section-item--addon .section-item__num {
  color: rgba(255,255,255,0.4);
}

.section-item__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.section-item--addon .section-item__title {
  color: var(--white);
}

.section-item__body {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.section-item--addon .section-item__body {
  color: rgba(255,255,255,0.58);
}

/* ── FORM DIVIDER ─────────────────────────────────────────── */
.form-divider {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  margin-top: 0.5rem;
}

.form-divider__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Checkbox group (multiple checkboxes stacked) */
.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

/* ── BUNDLE HERO ──────────────────────────────────────────── */
.bundle-hero {
  background: var(--navy);
  padding: 5rem 2rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.bundle-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(26,82,200,0.16) 0%, transparent 65%);
  pointer-events: none;
}

.bundle-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.bundle-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 3.875rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.375rem;
}

.bundle-hero__title em {
  font-style: italic;
  color: rgba(255,255,255,0.65);
}

.bundle-hero__sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.78;
  max-width: 520px;
  margin-bottom: 2.25rem;
}

.bundle-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.bundle-service-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 1rem 1.375rem;
  margin-bottom: 0.75rem;
  transition: background 0.2s, border-color 0.2s;
}

.bundle-service-pill:last-child {
  margin-bottom: 0;
}

.bundle-service-pill:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}

.bundle-service-pill__icon {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  color: var(--blue-lt);
  min-width: 28px;
}

.bundle-service-pill__name {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
}

/* ── BUNDLE BREAKDOWN ─────────────────────────────────────── */
.bundle-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.bundle-item {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.2s;
}

.bundle-item:hover {
  border-color: var(--blue);
}

.bundle-item__header {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.bundle-item__num {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
  flex-shrink: 0;
}

.bundle-item__title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  flex: 1;
}

.bundle-item__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--blue);
  white-space: nowrap;
  transition: opacity 0.18s;
  margin-left: auto;
}

.bundle-item__link:hover {
  opacity: 0.7;
}

/* ── BUNDLE RENEWAL NOTE ──────────────────────────────────── */
.bundle-renewal-note {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.375rem 1.75rem;
  margin-top: 1.5rem;
}

.bundle-renewal-note__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

.bundle-renewal-note__inner strong {
  color: var(--navy);
  font-weight: 500;
}

/* ── SAVING BADGE ─────────────────────────────────────────── */
.saving-badge {
  display: inline-block;
  background: #EAF3DE;
  color: #3B6D11;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

/* ── PRICING ANCHORS ──────────────────────────────────────── */
.pricing-anchors {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
}

.pricing-anchors__inner {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0;
}

.pricing-anchors__inner::-webkit-scrollbar {
  display: none;
}

.pricing-anchor__link {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--muted);
  padding: 0.875rem 1rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}

.pricing-anchor__link:hover {
  color: var(--navy);
  border-bottom-color: var(--blue);
}

/* ── PRICING SECTION VARIANTS ─────────────────────────────── */
.pricing-section--first {
  background: var(--white);
}

.pricing-section--alt {
  background: var(--off);
}

.pricing-section__head {
  margin-bottom: 2.5rem;
}

.pricing-section__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.875rem;
}

.pricing-section__links {
  display: flex;
  gap: 1.5rem;
}

.pricing-section__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue);
  transition: opacity 0.18s;
}

.pricing-section__links a:hover {
  opacity: 0.7;
}

/* ── PRICING CARDS — THREE COL ────────────────────────────── */
.pricing-cards-grid--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
}

/* ── ADD-ONS PRICING GRID ─────────────────────────────────── */
.addons-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.addons-pricing-group__title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.addons-pricing-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.addons-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  transition: background 0.15s;
}

.addons-pricing-row:last-child {
  border-bottom: none;
}

.addons-pricing-row:hover {
  background: var(--blue-bg);
}

.addons-pricing-row__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.addons-pricing-row__name {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
}

.addons-pricing-row__applies {
  font-size: 0.775rem;
  color: var(--muted);
  font-weight: 300;
}

.addons-pricing-row__price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}

.addons-pricing-row__price--free {
  color: #3B6D11;
}

/* ── POLICY CARDS ─────────────────────────────────────────── */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.policy-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.875rem;
}

.policy-card__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.policy-card__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ── AGREEMENTS ───────────────────────────────────────────── */
.agreements-section {
  padding: 3.5rem 2rem 5.5rem;
  background: var(--off);
}

.agreement-tabs {
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
}

.agreement-tabs::-webkit-scrollbar {
  display: none;
}

.agreement-tab {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.875rem 1.125rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s, border-color 0.18s;
  margin-bottom: -1px;
}

.agreement-tab:hover {
  color: var(--navy);
}

.agreement-tab.is-active {
  color: var(--navy);
  font-weight: 500;
  border-bottom-color: var(--blue);
}

.agreement-panel {
  display: none;
}

.agreement-panel.is-active {
  display: block;
}

/* ── AGREEMENT DOCUMENT ───────────────────────────────────── */
.agreement-doc {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 3rem;
  max-width: 820px;
}

.agreement-doc__header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.agreement-doc__title {
  font-family: var(--serif);
  font-size: clamp(1.625rem, 2.5vw, 2.25rem);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.012em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.agreement-doc__meta {
  font-size: 0.825rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.agreement-doc__intro {
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  font-style: italic;
  border-left: 3px solid var(--blue);
  padding-left: 1.125rem;
}

.agreement-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.agreement-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.agreement-section__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.875rem;
  line-height: 1.4;
}

.agreement-section p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.875rem;
}

.agreement-section p:last-child {
  margin-bottom: 0;
}

.agreement-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0.875rem 0;
}

.agreement-list li {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}

.agreement-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 400;
}

.agreement-list li strong {
  font-weight: 500;
  color: var(--navy);
}

.agreement-section--closing {
  background: var(--off);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  border-bottom: none;
  margin-top: 2rem;
}

.agreement-section--closing p {
  font-size: 0.9375rem;
  color: var(--muted);
}

.agreement-sign {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--navy) !important;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ── CONTACT SECTION ──────────────────────────────────────── */
.contact-section {
  background: var(--off);
  padding: 5rem 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ── CONTACT CARDS ────────────────────────────────────────── */
.contact-details__title,
.contact-directory__title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
  transition: border-color 0.18s, transform 0.18s;
}

.contact-card:last-child {
  margin-bottom: 0;
}

a.contact-card:hover {
  border-color: var(--blue);
  transform: translateX(3px);
}

.contact-card--static {
  cursor: default;
  opacity: 0.75;
}

.contact-card__icon {
  width: 40px;
  height: 40px;
  background: var(--blue-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.contact-card__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card__value {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--navy);
}

.contact-card__arrow {
  font-size: 1rem;
  color: var(--blue);
  opacity: 0;
  transition: opacity 0.18s;
}

a.contact-card:hover .contact-card__arrow {
  opacity: 1;
}

/* ── CONTACT DIRECTORY ────────────────────────────────────── */
.contact-directory__sub {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.contact-directory__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.directory-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.875rem 1.125rem;
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}

.directory-link:hover {
  border-color: var(--blue);
  background: var(--blue-bg);
}

.directory-link--featured {
  border-color: var(--navy);
  background: var(--navy);
}

.directory-link--featured:hover {
  border-color: var(--blue-lt);
  background: var(--navy-mid);
}

.directory-link__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.directory-link--featured .directory-link__name {
  color: var(--white);
}

.directory-link__url {
  font-size: 0.775rem;
  color: var(--muted);
  font-weight: 300;
}

.directory-link--featured .directory-link__url {
  color: rgba(255,255,255,0.50);
}

/* ── CONTACT FORM CARD ────────────────────────────────────── */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.contact-form-card__title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.contact-form-card__sub {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── CONTACT FOOTER NOTE ──────────────────────────────────── */
.contact-footer-note {
  background: var(--navy-mid);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-footer-note p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 680px;
}

/* ── BUNDLE SECTION ───────────────────────────────────────── */
.bundle-section {
  background: var(--white);
  padding: 5.5rem 2rem;
}

.bundle-section--alt {
  background: var(--off);
}

.bundle-section__head {
  margin-bottom: 3rem;
}

.bundle-section__breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.bundle-breakdown-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.2s;
}

.bundle-section--alt .bundle-breakdown-card {
  background: var(--white);
}

.bundle-breakdown-card:hover {
  border-color: var(--blue);
}

.bundle-breakdown-card__num {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.bundle-breakdown-card__title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.125rem;
  line-height: 1.25;
}

.bundle-breakdown-card__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue);
  transition: opacity 0.18s;
}

.bundle-breakdown-card__link:hover {
  opacity: 0.7;
}

.bundle-section__pricing {
  margin-bottom: 3.5rem;
}

.bundle-section__pricing-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.bundle-section__form {
  scroll-margin-top: calc(var(--nav-h) + 4rem);
}

.bundle-section__form-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.bundle-section__form-sub {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}