*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --navy: #2a4776;
  --navy-d: #1a2e4e;
  --navy-xl: #0f1d33;
  --navy-l: #3d5f96;
  --navy-15: rgba(42, 71, 118, 0.15);
  --gold: #ebb450;
  --gold-d: #c9952e;
  --gold-l: #f5cc78;
  --gold-pale: #fdf6e8;
  --cream: #f7f3ec;
  --ink: #141414;
  --ink-mid: #454545;
  --ink-soft: #888;
  --white: #fff;
  --border: rgba(42, 71, 118, 0.1);
  --fd: "Fraunces", Georgia, serif;
  --fb: "Plus Jakarta Sans", sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 2px;
}

.nav {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 200;
  /* height: 75px; */
  height: auto;
  padding: 0 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0);
  transition: background 0.4s var(--ease), height 0.3s var(--ease),
    box-shadow 0.4s;
}

.nav.solid {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 var(--border);
  /* height: 75px; */
  height: auto;
  top: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.logo-white {
  width: auto;
  height: 95px;
  margin: 13px 0;
}
.logo-blue {
  display: none;
  width: auto;
  height: 60px;
}
.w-full {
  width: 100%;
}
.h-100 {
  height: 100%;
}

.nav.solid .logo-white {
  display: none;
}

.nav.solid .logo-blue {
  display: block;
  width: auto;
  height: 75px;
  margin: 6px 0;
}

.logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-l));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(42, 71, 118, 0.35);
  flex-shrink: 0;
}

.logo-badge span {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
}

.logo-text {
  font-family: var(--fd);
  font-size: 15.5px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  transition: color 0.3s;
}

.logo-text small {
  display: block;
  font-family: var(--fb);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1px;
  transition: color 0.3s;
}

.nav.solid .logo-text {
  color: var(--navy);
}

.nav.solid .logo-text small {
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--gold);
}

.nav.solid .nav-link {
  color: var(--ink-mid);
}

.nav.solid .nav-link:hover {
  color: var(--navy);
}

.nav-btn {
  background: var(--gold);
  color: var(--navy-d);
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 12px rgba(235, 180, 80, 0.4);
}

.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(235, 180, 80, 0.5);
  background: var(--gold-l);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 52% 48%;
  padding-top: 68px;
}

/* Layered bg */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
      ellipse 70% 80% at 70% 40%,
      rgba(42, 71, 118, 0.8) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 60% at 10% 90%,
      rgba(235, 180, 80, 0.08) 0%,
      transparent 55%
    ),
    linear-gradient(160deg, #0f1d33 0%, #1a2e4e 40%, #2a4776 100%);
}

/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(235, 180, 80, 0.12) 0%,
    transparent 65%
  );
  top: -10%;
  right: -5%;
  animation: orb1 12s ease-in-out infinite alternate;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(61, 95, 150, 0.25) 0%,
    transparent 65%
  );
  bottom: 10%;
  left: 5%;
  animation: orb2 9s ease-in-out infinite alternate;
}

@keyframes orb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-40px, 30px) scale(1.1);
  }
}

@keyframes orb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -40px) scale(1.08);
  }
}

/* Grid lines overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 70% 50%,
    black 0%,
    transparent 70%
  );
}

.hero-left {
  position: relative;
  z-index: 2;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 3.2rem 0 1.2rem 0;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  background: rgba(235, 180, 80, 0.1);
  border: 1px solid rgba(235, 180, 80, 0.2);
  border-radius: 100px;
  width: fit-content;
  animation-delay: 0.15s;
}

.blink-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: blink 2.5s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.eyebrow-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(2rem, 5.2vw, 5rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 1.6rem;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  max-width: 430px;
  margin-bottom: 2.5rem;
}

.hero-sub b {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* desk padding */
.s,
.ib-s,
.life-s,
.aud-s,
.testi-s,
.adm-s {
  padding: 6rem 3rem;
}
/* desk padding */

/* Inline proof strip */
.hero-proof {
  display: flex;
  gap: 1.8rem;
  margin-bottom: 2.8rem;
  padding: 1.1rem 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  width: fit-content;
}

.proof-item {
  text-align: center;
}

.proof-num {
  font-family: var(--fd);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.proof-num sup {
  font-size: 0.8rem;
}

.proof-label {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.2rem;
  white-space: nowrap;
}

.proof-div {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
}

/* Hero form */
.hero-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.8rem 1.8rem 1.5rem;
  max-width: 430px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.form-title {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.form-urgency {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.fg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.fg.one {
  grid-template-columns: 1fr;
}

.fi {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.72rem 1rem;
  font-family: var(--fb);
  font-size: 12.5px;
  color: var(--white);
  outline: none;
  transition: border 0.2s, background 0.2s;
}

.fi::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.fi:focus {
  border-color: rgba(235, 180, 80, 0.6);
  background: rgba(255, 255, 255, 0.11);
}

.fs {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.72rem 1rem;
  font-family: var(--fb);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border 0.2s;
}

.fs option {
  background: var(--navy-d);
  color: var(--white);
}

.fs:focus {
  border-color: rgba(235, 180, 80, 0.6);
}

.fsub {
  width: 100%;
  margin-top: 0.3rem;
  background: var(--gold);
  color: var(--navy-d);
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.9rem;
  border-radius: 10px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(235, 180, 80, 0.35);
  position: relative;
  overflow: hidden;
}

.fsub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
}

.fsub:hover {
  background: var(--gold-l);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(235, 180, 80, 0.5);
}

.fnote {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
  margin-top: 0.65rem;
  letter-spacing: 0.04em;
}

/* Hero right */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* padding-bottom: 3rem; */
  overflow: hidden;
}

/* Big floating number */
.hero-bignum {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-44%, -50%);
  font-family: var(--fd);
  font-size: clamp(14rem, 22vw, 22rem);
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.022);
  letter-spacing: -0.06em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Floating stat cards */
.stat-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
}

.sf-1 {
  top: 22%;
  right: 8%;
  animation: float1 6s ease-in-out infinite;
}

.sf-2 {
  top: 52%;
  right: 12%;
  animation: float2 7s ease-in-out infinite;
}

.sf-3 {
  top: 74%;
  right: 5%;
  animation: float1 8s ease-in-out infinite 0.5s;
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.sf-num {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.sf-num em {
  font-style: italic;
  color: var(--gold);
  font-size: 1.4rem;
}

.sf-lbl {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.3rem;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: sline 1.8s ease-in-out infinite;
}

@keyframes sline {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

.scroll-txt {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ── TICKER BAND ── */
.band {
  background: var(--gold);
  padding: 0.8rem 0;
  overflow: hidden;
  position: relative;
}

.band-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

.band-track:hover {
  animation-play-state: paused;
}

.band-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy-d);
  padding: 0 2rem;
  text-transform: uppercase;
}

.band-star {
  color: var(--navy);
  opacity: 0.4;
  font-size: 9px;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.s-alt {
  background: var(--cream);
}

.s-dark {
  background: var(--navy-xl);
}

.lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lbl::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}

.lbl.inv {
  color: var(--gold);
}

.h2 {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.022em;
  margin-bottom: 1.1rem;
}

.h2 em {
  font-style: italic;
  color: var(--gold-d);
}

.h2.inv {
  color: var(--white);
}

.h2.inv em {
  color: var(--gold);
}

.lead {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.9;
  max-width: 550px;
}

.lead b {
  font-weight: 500;
  color: var(--ink);
}

.lead.inv {
  color: rgba(255, 255, 255, 0.6);
}

.lead.inv b {
  color: var(--white);
}

/* ── WHY SECTION ── */
.why-wrap {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 1.5rem;
  align-items: start;
  margin: 0;
  /* margin-top: 5rem; */
}

.why-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.feat {
  background: var(--white);
  border: 1px solid rgb(42 71 118 / 47%);
  border-radius: 14px;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s;
  cursor: default;
}

.feat::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(42, 71, 118, 0),
    rgba(42, 71, 118, 0.04)
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(42, 71, 118, 0.12);
  border-color: rgba(42, 71, 118, 0.25);
}

.feat:hover::after {
  opacity: 1;
}

.feat.tall {
  /* grid-row: span 2; */
  background: var(--navy);
  border-color: transparent;
}

.feat.tall .feat-icon {
  color: var(--gold);
}

.feat.tall .feat-name {
  color: var(--white);
}

.feat.tall .feat-desc {
  color: rgba(255, 255, 255, 0.55);
}

.feat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.feat-name {
  font-family: var(--fd);
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.feat-desc {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
}

.feat-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.feat:hover .feat-accent {
  transform: scaleX(1);
}

/* ── IB SECTION ── */
.ib-s {
  position: relative;
  background: var(--navy-xl);
  overflow: hidden;
}

.ib-s::before {
  content: "IB";
  position: absolute;
  right: -1rem;
  bottom: -4rem;
  font-family: var(--fd);
  font-size: 32rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.08em;
}

.ib-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Compare toggle style */
.compare {
  margin-top: 2.5rem;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.compare-row:last-child {
  border-bottom: none;
}

.cside {
  padding: 0.9rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.cside.pos {
  color: rgba(255, 255, 255, 0.85);
}

.cside.neg {
  color: rgba(255, 255, 255, 0.28);
}

.cmark {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.72rem;
}

.cside.pos .cmark {
  color: var(--gold);
}

.compare-heads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 0.5rem;
}

.ch {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
}

.ch.ib {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.ch.old {
  color: rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Traits grid */
.traits-wrap {
  padding-top: 1rem;
}

.traits-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}

.traits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.trait {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 0.9rem 0.7rem;
  text-align: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  cursor: default;
}

.trait:hover {
  background: rgba(235, 180, 80, 0.1);
  border-color: rgba(235, 180, 80, 0.25);
  transform: translateY(-2px);
}

.trait-i {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
  display: block;
}

.trait-n {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
}

/* Founding family callout */
.founder-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(235, 180, 80, 0.1),
    rgba(235, 180, 80, 0.05)
  );
  border: 1px solid rgba(235, 180, 80, 0.22);
  border-radius: 12px;
}

.founder-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.founder-text {
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

/* ── LIFE SECTION ── */
.life-s {
  background: var(--cream);
}

@media (max-width: 1100px) {
  .life-s {
    padding: 5rem 3rem;
  }
}

.life-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
}

.life-header-note {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 240px;
  text-align: right;
  line-height: 1.7;
}

.life-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 1.2rem;
}

.lc {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  cursor: default;
  transition: transform 0.35s var(--ease);
}

.lc:hover {
  transform: scale(1.02);
}

.lc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(15, 29, 51, 0.92) 0%,
    rgba(15, 29, 51, 0.2) 55%,
    transparent 100%
  );
}

.lc.span-r {
  grid-row: span 2;
}

.lc.light {
  background: var(--white);
  border: 1px solid var(--border);
}

.lc.light .lc-overlay {
  display: none;
}

.lc-float-icon {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 2;
  font-size: 2rem;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}

.lc:hover .lc-float-icon {
  opacity: 0.9;
  transform: scale(1.1);
}

.lc-content {
  position: relative;
  z-index: 2;
}

.lc-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.lc.light .lc-tag {
  color: var(--navy);
}

.lc-title {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.3;
}

.lc.light .lc-title {
  color: var(--navy);
}

.lc-body {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  display: none;
}

.lc.light .lc-body {
  color: var(--ink-soft);
}

/* Colour fills for life cards */
.lc-bg-1 {
  background: linear-gradient(145deg, #1a3a6e, #2a5096);
}

.lc-bg-2 {
  background: linear-gradient(145deg, #1e3d2a, #2e6640);
}

.lc-bg-3 {
  background: linear-gradient(145deg, #3d2a1e, #6b4526);
}

.premium-footer {
  position: relative;
  background: radial-gradient(
      circle at top,
      rgba(212, 175, 55, 0.12),
      transparent 35%
    ),
    linear-gradient(180deg, #071526 0%, #040d18 100%);
  overflow: hidden;
  padding: 3rem 0;
}

.premium-footer::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 220px;
  height: 2px;

  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.premium-footer::after {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  right: -180px;
  top: -120px;

  border-radius: 50%;

  border: 1px solid rgba(212, 175, 55, 0.05);
}

.footer-inner {
  max-width: 1200px;

  margin: auto;

  text-align: center;

  position: relative;

  z-index: 2;
}

.footer-emblem img {
  width: auto;
  height: 120px;
  margin-bottom: 1rem;
}

.footer-label {
  display: inline-block;

  color: #d4af37;

  text-transform: uppercase;

  letter-spacing: 4px;

  font-size: 0.75rem;

  margin-bottom: 1rem;
}

.footer-brand h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.5vw, 4.5rem);
  color: #fff;

  font-weight: 500;

  margin: 0;
}

.footer-tagline {
  max-width: 700px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.65);

  line-height: 2;

  font-size: 1rem;
}

.footer-details {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.detail {
  display: flex;

  flex-direction: column;
}

.detail .title {
  color: rgba(212, 175, 55, 0.9);

  text-transform: uppercase;

  letter-spacing: 2px;

  font-size: 0.75rem;

  margin-bottom: 0.7rem;
}

.detail .value {
  color: rgba(255, 255, 255, 0.85);

  font-size: 1rem;
}

.footer-nav {
  margin-top: 2rem;
  display: flex;

  justify-content: center;

  gap: 3rem;

  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);

  text-decoration: none;

  letter-spacing: 1px;

  font-size: 0.95rem;

  position: relative;

  transition: 0.3s ease;
}

.footer-nav a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -8px;

  transform: translateX(-50%);

  width: 0;

  height: 1px;

  background: #d4af37;

  transition: 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-nav a:hover::after {
  width: 100%;
}
.bb-brand {
  text-decoration: none;
  color: var(--gold);
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);

  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 1rem;

  color: rgb(255 255 255 / 62%);

  font-size: 0.8rem;
}

.lc-bg-4 {
  background: linear-gradient(145deg, #2a1e3d, #4a2e6b);
}

.lc-bg-5 {
  background: var(--navy);
}

.aud-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.aud-head .h2 {
  text-align: center;
}

.aud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ac {
  border-radius: 16px;
  padding: 2.4rem 2rem;
  border: 1px solid rgb(42 71 118 / 47%);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  cursor: default;
}

.ac:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(42, 71, 118, 0.1);
}

.ac-num {
  font-family: var(--fd);
  font-size: 4.5rem;
  font-weight: 200;
  font-style: italic;
  color: var(--navy);
  opacity: 1;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.ac-title {
  font-family: var(--fd);
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.ac-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.ac-voice {
  padding: 0.8rem 1rem;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.83rem;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.6;
}

.ac-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(235, 180, 80, 0.08),
    transparent 65%
  );
  pointer-events: none;
  transition: transform 0.4s;
}

.ac:hover .ac-glow {
  transform: scale(1.5);
}

.testi-s {
  background: var(--cream);
}

.testi-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* Feature testimonial layout */
.testi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.4rem;
}

.tc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}

.tc:hover {
  border-color: rgba(42, 71, 118, 0.25);
  box-shadow: 0 12px 40px rgba(42, 71, 118, 0.08);
}

.tc.featured {
  background: var(--navy);
  border-color: transparent;
  /* grid-row: span 2; */
}

.tc.featured .tc-text {
  color: rgba(255, 255, 255, 0.8);
}

.tc.featured .tc-name {
  color: var(--white);
}

.tc.featured .tc-role {
  color: rgba(255, 255, 255, 0.45);
}

.tc.featured .tc-stars {
  color: var(--gold);
}

.tc-quote-mark {
  position: absolute;
  top: 0.8rem;
  right: 1.5rem;
  font-family: var(--fd);
  font-size: 5.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  opacity: 0.055;
  line-height: 1;
  pointer-events: none;
}

.tc.featured .tc-quote-mark {
  color: var(--gold);
  opacity: 0.12;
}

.tc-stars {
  font-size: 12px;
  color: var(--gold-d);
  margin-bottom: 1.1rem;
  letter-spacing: 0.1em;
}

.tc-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.tc-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
}

.tc-av-navy {
  background: var(--navy);
  color: var(--gold);
}

.tc-av-gold {
  background: var(--gold);
  color: var(--navy-d);
}

.tc.featured .tc-av-navy {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold);
}

.tc-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.tc-role {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}

/* ── ADMISSIONS ── */
.adm-s {
  background: var(--navy-xl);
  position: relative;
  overflow: hidden;
}

.adm-s::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: -200px;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(235, 180, 80, 0.06),
    transparent 65%
  );
  pointer-events: none;
}

.adm-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 10rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.adm-steps {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.adm-step {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.7;
  transition: opacity 0.3s;
  cursor: default;
}

.adm-step:last-child {
  border-bottom: none;
}

.adm-step:hover {
  opacity: 1;
}

.step-n {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 200;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  min-width: 44px;
  opacity: 0.55;
}

.step-t {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.step-b {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.7;
}

/* Right form card */
.adm-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 88px;
  text-align: center;
}

.adm-card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(235, 180, 80, 0.1);
  border: 1px solid rgba(235, 180, 80, 0.25);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.2rem;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-d);
}

.adm-card-h {
  font-family: var(--fd);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.2;
  text-align: center;
}

.adm-card-sub {
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
  line-height: 1.6;
  text-align: center;
}

.ai {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.82rem 1.1rem;
  margin-bottom: 0.7rem;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.ai:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42, 71, 118, 0.08);
}

.ai::placeholder {
  color: var(--ink-soft);
}

.asel {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.82rem 1.1rem;
  margin-bottom: 0.7rem;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.asel:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(42, 71, 118, 0.08);
}

.asub {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 0.4rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(42, 71, 118, 0.3);
}

.asub:hover {
  background: var(--navy-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(42, 71, 118, 0.4);
}

.a-note {
  font-size: 10.5px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 0.7rem;
}

.a-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.at-item {
  text-align: center;
  padding: 0.2rem 0;
}

.at-num {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--navy);
}

.at-lbl {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.15rem;
  line-height: 1.4;
}

.at-div {
  width: 1px;
  background: var(--border);
  margin: 0.5rem 0;
  display: none;
}

/* ── FINAL CTA ── */
.cta-s {
  padding: 4rem 0;
  background: var(--navy-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-s::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 70% at 50% 60%,
    rgb(235 180 80 / 24%),
    #00000012 60%
  );
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-h {
  font-family: var(--fd);
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}

.cta-h strong {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}

.cta-p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  margin-bottom: 2.8rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-g {
  background: var(--gold);
  color: var(--navy-d);
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(235, 180, 80, 0.4);
  text-decoration: none;
  display: inline-block;
}

.btn-g:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(235, 180, 80, 0.5);
}

.btn-o {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  font-family: var(--fb);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-o:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2.2rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.fl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.fl strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.fr {
  display: flex;
  gap: 1.5rem;
}

.fr a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.fr a:hover {
  color: var(--gold);
}

/* ── STICKY WA ── */
.wa-float {
  position: fixed;
  bottom: 2.5rem;
  right: 0.5rem;
  z-index: 300;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wapulse 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes wapulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7);
  }
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.urgency {
  background: var(--navy-d);
  padding: 0.6rem 2rem;
  text-align: center;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.urgency span {
  color: var(--gold);
  font-weight: 700;
}

/* ── REVEAL SYSTEM ── */
.r {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.r.in {
  opacity: 1;
  transform: translateY(0);
}

.r.d1 {
  transition-delay: 0.1s;
}

.r.d2 {
  transition-delay: 0.2s;
}

.r.d3 {
  transition-delay: 0.3s;
}

.r.d4 {
  transition-delay: 0.4s;
}

.r-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.r-left.in {
  opacity: 1;
  transform: translateX(0);
}

/* ── HERO ENTRANCE ── */
.hero-eyebrow,
.hero-h1,
.hero-sub,
.hero-proof,
.hero-form {
  opacity: 0;
  transform: translateY(22px);
  animation: hin 0.85s var(--ease) forwards;
}

.hero-h1 {
  animation-delay: 0.3s;
}

.hero-sub {
  animation-delay: 0.45s;
}

.hero-proof {
  animation-delay: 0.6s;
}

.hero-form {
  animation-delay: 0.75s;
}

@keyframes hin {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sf-1,
.sf-2,
.sf-3 {
  opacity: 0;
  animation: sfin 0.6s var(--ease) forwards;
}

.sf-1 {
  animation-delay: 0.9s;
}

.sf-2 {
  animation-delay: 1.1s;
}

.sf-3 {
  animation-delay: 1.3s;
}

@keyframes sfin {
  to {
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .adm-s {
    padding: 5rem 3rem;
  }
  .lc.span-r {
    grid-row: auto;
  }
  .life-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .h-100 {
    object-fit: cover;
  }
  .lc {
    aspect-ratio: 7/5;
  }
  .ib-s {
    padding: 5rem 3rem;
  }
  .s {
    padding: 5rem 3rem;
  }

  .ib-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .hero {
    grid-template-columns: 1fr;
  }

  .cta-s {
    padding: 6rem 3rem;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    padding: 4rem 2.5rem 5rem;
  }

  .why-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .feat.tall {
    grid-row: auto;
  }

  .testi-layout {
    grid-template-columns: 1fr;
  }

  .tc.featured {
    grid-row: auto;
  }

  .aud-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .aud-s {
    padding: 5rem 3rem;
  }

  .testi-s {
    padding: 5rem 3rem;
  }
}

@media (max-width: 1000px) {
  .adm-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 900px) {
  .testi-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .premium-footer {
    padding: 5rem 1.5rem 2rem;
  }

  .footer-details {
    gap: 2rem;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    margin-top: 1.5rem;
  }

  .footer-nav {
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  footer {
    padding: 2rem 3rem;
  }
  .aud-grid {
    grid-template-columns: 1fr;
  }
  .life-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 640px) {
  .fg {
    grid-template-columns: 1fr;
  }
  .detail .value {
    font-size: 0.8rem;
  }
  .hero-eyebrow {
    margin: 0 0 1.2rem 0;
  }
  .logo-white {
    width: auto;
    height: 60px;
    margin: 7px 0;
  }
  .nav.solid .logo-blue {
    height: 60px;
  }
  .footer-tagline {
    font-size: 0.8rem;
  }
  .footer-nav a {
    font-size: 0.7rem;
  }
  .cta-p {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .btn-g,
  .btn-o {
    width: 100%;
  }
  .footer-emblem img {
    height: 75px;
  }
  /* mob padding */
  .s,
  .ib-s,
  .life-s,
  .aud-s,
  .testi-s,
  .adm-s {
    padding: 3rem 2rem;
  }
  .cta-s {
    padding: 3rem 2rem;
  }
  /* mob padding */
  .tc-text {
    line-height: 1.5;
    font-size: 0.8rem;
  }
  .adm-card {
    padding: 1.2rem;
  }
  .adm-card-h {
    font-size: 1.2rem;
  }
  .hero-sub {
    font-size: 0.8rem;
    margin-bottom: 2rem;
  }
  .lead {
    font-size: 0.8rem;
  }
  .why-wrap {
    margin: 0;
  }
  .life-header {
    flex-direction: column;
    margin-bottom: 2.5rem;
  }
  .nav-links {
    display: none;
  }
  .life-header-note {
    display: none;
  }
  .ac {
    padding: 1rem;
  }
  .ac-num {
    font-size: 2.5rem;
  }
  .tc.featured {
    padding: 1.5rem;
  }
  .nav {
    padding: 0 1rem;
  }
  .hero-left {
    padding: 3rem 2rem;
  }
  .a-trust {
    padding-top: 1rem;
  }
  .at-div {
    display: none;
  }

  .why-mosaic {
    display: flex;
    flex-direction: column;
  }

  .life-grid {
    grid-template-columns: 1fr;
  }

  .lc.span-r {
    grid-row: auto;
  }

  .aud-grid {
    grid-template-columns: 1fr;
  }

  .traits {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding: 1rem 0;
    row-gap: 2rem;
    column-gap: 1rem;
  }
  .proof-div,
  .scroll-hint {
    display: none;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
