:root {
  --navy: #081a2c;
  --navy-soft: #0d2238;
  --gold: #d18a1a;
  --gold-bright: #eca338;
  --gold-soft: #f5e0bb;
  --cream: #fbf8f4;
  --border: #ebdfd1;
  --text: #111827;
  --muted: #5c6470;
  --shadow: 0 18px 48px rgba(10, 24, 42, 0.08);
  --page-content-width: 90%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(234, 197, 141, 0.16), transparent 32%),
    #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1180px;
}

.site-header .container,
.site-footer .container {
  width: var(--page-content-width);
  max-width: none;
}

.hero-section .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.about-section .container,
.tiers-section .container,
.expertise-section .container,
.results-section .container,
.faq-cta-section .container {
  width: var(--page-content-width);
  max-width: none;
}

.section-space {
  padding: 3rem 0 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(209, 138, 26, 0.12);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin-right: 1.25rem;
}

.navbar-brand img {
  width: auto;
  height: 92px;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.75rem 0.9rem;
  font-size: 0.96rem;
  font-weight: 700;
  color: #252d37;
  white-space: nowrap;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.3rem;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #0f1723;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #272f38;
  font-weight: 700;
  white-space: nowrap;
}

.header-phone i {
  color: var(--gold);
  font-size: 1.05rem;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.25rem;
  color: #202833;
  background: #fff;
  border: 1px solid rgba(32, 40, 51, 0.28);
  border-radius: 0.55rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(14, 23, 38, 0.06);
}

.login-btn i {
  font-size: 1.1rem;
  color: var(--gold);
}

.hero-section {
  position: relative;
  padding: 0;
  overflow: visible;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  /* min-height: 46rem; */
  padding: 5rem 0 4.5rem;
  background-color: #081a2c;
  background-image: url("../images/banner-hero.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}


.hero-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
}

.hero-curve__svg {
  display: block;
  width: 100%;
  height: clamp(3.5rem, 7vw, 6rem);
  vertical-align: bottom;
}

.hero-section + .about-section {
  margin-top: -3px;
}

.about-section {
  position: relative;
  z-index: 4;
  background: #fff;
}

.hero-inner {
  width: var(--page-content-width);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 50%;
  max-width: 50%;
  padding-right: 1rem;
}

.hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.3rem, 6vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-copy h1 span {
  display: block;
  font-size: 0.72em;
}

.hero-copy h1 em {
  display: block;
  margin-top: 0.15rem;
  color: var(--gold-bright);
  font-family: "Allura", cursive;
  font-size: 0.9em;
  font-style: normal;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 29rem;
  margin: 1.6rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 0.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  color: #fff;
  background: linear-gradient(180deg, #eda32f, #d98d1e);
  border: 0;
  box-shadow: 0 14px 24px rgba(209, 138, 26, 0.28);
}

.btn-gold:hover {
  color: #fff;
  box-shadow: 0 18px 28px rgba(209, 138, 26, 0.36);
}

.btn-outline-light {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline-light:hover {
  color: var(--navy);
  background: #fff;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1 1 10rem;
  min-width: 0;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.55rem;
  height: 3.55rem;
  border: 1px solid rgba(237, 163, 47, 0.55);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 1.5rem;
}

.hero-stat strong {
  display: block;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  line-height: 1;
}

.hero-stat p {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.35;
}

.section-intro {
  max-width: 49rem;
  margin: 0 auto 2rem;
}

.section-intro.compact {
  margin-bottom: 1.5rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-intro h2 {
  margin: 0;
  color: #101723;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.section-intro h2 span {
  color: var(--gold);
}

.section-intro h2 .italic {
  color: inherit;
  font-style: italic;
}

.info-card {
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.94));
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.founder-card {
  display: grid;
  grid-template-columns: 15rem 1fr;
  align-items: center;
  gap: 1.75rem;
  padding: 1.3rem;
}

.founder-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 5px solid #fff;
  border-radius: 50%;
}

.founder-copy h3,
.split-panel h3,
.tier-card h3,
.results-heading h2,
.cta-copy h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

.founder-copy h3 {
  margin: 0;
  font-size: 2.65rem;
}

.founder-copy .role {
  display: inline-block;
  margin-top: 0.2rem;
  color: var(--gold);
  font-weight: 800;
}

.founder-copy p {
  margin: 1rem 0 0;
  color: #404957;
  font-size: 0.98rem;
  line-height: 1.7;
}

.signature {
  margin-top: 0.9rem;
  color: #2e3440;
  font-family: "Allura", cursive;
  font-size: 2.5rem;
  line-height: 1;
}

.split-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.split-panel {
  padding: 2.35rem 2rem;
  text-align: center;
}

.split-panel + .split-panel {
  border-left: 1px solid var(--border);
}

.split-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 1.15rem;
  background: rgba(209, 138, 26, 0.12);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.8rem;
}

.split-panel h3 {
  margin: 0;
  font-size: 2.25rem;
}

.split-panel p {
  max-width: 14rem;
  margin: 1rem auto 0;
  color: #3d4552;
  line-height: 1.75;
}

.tiers-section {
  padding-bottom: 0.75rem;
}

.tier-card {
  position: relative;
  height: 100%;
  padding: 3.8rem 1.55rem 0;
  background: #fff;
  border: 1px solid rgba(209, 138, 26, 0.28);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  overflow: visible;
}

.tier-icon {
  position: absolute;
  top: -1.9rem;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.65rem;
  box-shadow: 0 12px 24px rgba(10, 24, 42, 0.16);
}

.tier-card-one .tier-icon {
  background: #0d2b5a;
}

.tier-card-two .tier-icon {
  background: #819152;
}

.tier-card-three .tier-icon {
  background: #f2a12e;
}

.tier-card-four .tier-icon {
  background: linear-gradient(180deg, #b47916, #d59c31);
}

.tier-label {
  display: block;
  color: #3a4250;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tier-card h3 {
  margin: 0.45rem 0 0;
  font-size: 2.4rem;
  line-height: 0.95;
}

.tier-card h4 {
  margin: 0.35rem 0 1rem;
  color: var(--gold-bright);
  font-size: 1.65rem;
  font-weight: 800;
}

.tier-card p {
  margin: 0;
  color: #2e3441;
  line-height: 1.65;
}

.tier-fit {
  margin: 1.4rem -1.55rem 0;
  padding: 1.05rem 1.4rem 1.15rem;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.tier-fit strong {
  display: block;
  margin-bottom: 0.25rem;
}

.tier-card-one .tier-fit {
  background: #eef0fa;
}

.tier-card-two .tier-fit {
  background: #edf1df;
}

.tier-card-three .tier-fit {
  background: #fff0d9;
}

.tier-card-four {
  color: #fff;
  background: linear-gradient(180deg, #09192b, #081623);
  border: 2px solid rgba(209, 138, 26, 0.46);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.12),
    0 18px 42px rgba(10, 24, 42, 0.18);
}

.tier-card-four .tier-label,
.tier-card-four h3,
.tier-card-four p,
.tier-card-four .tier-fit strong,
.tier-card-four .tier-fit span {
  color: #fff;
}

.tier-card-four .tier-fit {
  background: rgba(13, 43, 90, 0.92);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.expertise-section {
  padding: 1rem 0 2rem;
}

.expertise-section .section-intro h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.expertise-grid {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.expertise-item {
  height: 100%;
  padding: 1.65rem 1.2rem 1.5rem;
  text-align: center;
}

.expertise-grid > div + div .expertise-item {
  border-left: 1px solid rgba(17, 24, 39, 0.08);
}

.expertise-item i {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 2.7rem;
}

.expertise-item h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.expertise-item p {
  margin: 0.8rem auto 0;
  max-width: 13rem;
  color: #4a5260;
  line-height: 1.65;
}

.results-section {
  padding-top: 1rem;
  background:
    linear-gradient(90deg, rgba(8, 26, 44, 1) 0%, rgba(8, 26, 44, 0.98) 75%, rgba(8, 26, 44, 0.9) 100%),
    var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.results-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr) 1.25fr;
  background: transparent;
  overflow: hidden;
}

.results-shell::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12rem;
  height: 100%;
  background:
    linear-gradient(270deg, rgba(8, 26, 44, 0.05), rgba(8, 26, 44, 0.65)),
    url("../images/lighthouse-scene.png") right bottom / contain no-repeat;
  opacity: 0.95;
  pointer-events: none;
}

.results-heading,
.result-metric,
.results-quote {
  position: relative;
  z-index: 1;
  padding: 1.7rem 1.55rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.results-heading {
  border-left: 0;
}

.results-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 3rem;
  line-height: 0.95;
}

.result-metric {
  text-align: center;
}

.result-metric i {
  display: block;
  color: var(--gold-bright);
  font-size: 2rem;
}

.result-metric strong {
  display: block;
  margin: 0.45rem 0 0.35rem;
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.result-metric span,
.results-quote p,
.results-quote footer {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.results-quote {
  padding-right: 4.5rem;
}

.rating {
  color: var(--gold-bright);
  letter-spacing: 0.25em;
}

.results-quote p {
  margin: 0.75rem 0 1rem;
  max-width: 14rem;
  font-size: 0.96rem;
  font-weight: 600;
}

.results-quote footer {
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-cta-section {
  padding-bottom: 18px;
  --faq-split-point: calc(
    ((100% - var(--page-content-width)) / 2) + (var(--page-content-width) * 0.4166667)
  );
  background: linear-gradient(
    90deg,
    #fff 0,
    #fff var(--faq-split-point),
    var(--navy) var(--faq-split-point),
    var(--navy) 100%
  );
}

.faq-cta-shell {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.faq-panel {
  height: 100%;
  padding: 2rem 1.5rem 1rem 0;
}

.faq-accordion .accordion-item {
  border: 1px solid rgba(209, 138, 26, 0.2);
  border-radius: 0;
  margin-bottom: 0.55rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  padding: 0.95rem 1rem;
  font-weight: 700;
  color: #17202c;
  background: #fff;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--navy);
  background: rgba(245, 224, 187, 0.24);
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  margin-left: auto;
  color: var(--gold);
  font-size: 1.45rem;
  transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
}

.faq-accordion .accordion-body {
  padding-top: 0;
  color: #4a5260;
  line-height: 1.7;
}

.cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: 2.2rem 3rem;
  background:
    linear-gradient(90deg, rgba(8, 26, 44, 0.98) 0%, rgba(8, 26, 44, 0.95) 58%, rgba(8, 26, 44, 0.72) 100%),
    url("../images/lighthouse-scene.png") right center / 40% auto no-repeat,
    var(--navy);
  overflow: hidden;
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 33rem;
}

.cta-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 0.96;
}

.cta-copy p {
  max-width: 28rem;
  margin: 1rem 0 1.45rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.75;
}

.site-footer {
  background: linear-gradient(180deg, #071624, #06111c);
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  padding: 1.3rem 0 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid > div + div {
  position: relative;
}

.footer-grid > div + div::before {
  content: "";
  position: absolute;
  left: calc(var(--bs-gutter-x) * 0.5);
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  width: auto;
  height: 118px;
  padding: 0.75rem 0.95rem;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 0.85rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.footer-brand p,
.newsletter p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--gold-bright);
  font-size: 1.7rem;
}

.footer-links h3 {
  margin: 0 0 0.85rem;
  color: var(--gold-bright);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) .footer-links,
.footer-grid > div:not(:first-child) .footer-brand {
  padding-left: 1.5rem;
}

.footer-links a,
.footer-links span {
  display: block;
  margin-bottom: 0.42rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  line-height: 1.6;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  gap: 0.7rem;
}

.footer-contact i {
  color: var(--gold-bright);
  font-size: 1.05rem;
  line-height: 1.6;
}

.newsletter-form {
  display: grid;
  gap: 0.55rem;
}

.newsletter-form input {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.75rem 0.9rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(236, 163, 56, 0.3);
  border-radius: 0.25rem;
}

.newsletter .btn {
  width: 100%;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-meta {
  display: flex;
  gap: 1.2rem;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.86);
}

.page-section .container,
.subpage-cta-section .container {
  width: var(--page-content-width);
  max-width: none;
}

.subpage-hero .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.page-section {
  position: relative;
  z-index: 4;
  padding: 3.5rem 0 50px;
  background: #fff;
}

.subpage-hero {
  position: relative;
  padding: 0;
  overflow: visible;
}

.subpage-shell {
  position: relative;
  overflow: hidden;
  min-height: 24rem;
  padding: 4.5rem 0 7.5rem;
  background-color: #081a2c;
  background-image:
    linear-gradient(90deg, rgba(8, 26, 44, 0.95) 0%, rgba(8, 26, 44, 0.88) 38%, rgba(8, 26, 44, 0.55) 65%, rgba(8, 26, 44, 0.25) 100%),
    url("../images/banner-hero.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.subpage-hero + .page-section,
.subpage-hero + .subpage-cta-section {
  margin-top: -3px;
}

.subpage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 50%);
  pointer-events: none;
}

.subpage-inner {
  position: relative;
  z-index: 1;
  width: var(--page-content-width);
  margin: 0 auto;
}

.subpage-copy {
  max-width: 42rem;
  color: #fff;
}

.subpage-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subpage-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.subpage-copy p {
  max-width: 34rem;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.06rem;
  line-height: 1.7;
}

.breadcrumb-nav {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.page-grid {
  display: grid;
  gap: 1.6rem;
}

.page-grid.two-col {
  grid-template-columns: 1.2fr 1fr;
}

.page-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-grid.four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card {
  height: 100%;
  padding: 1.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.96));
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.content-card.dark {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(8, 26, 44, 0.98), rgba(8, 26, 44, 0.94)),
    var(--navy);
  border-color: rgba(236, 163, 56, 0.22);
}

.content-card h2,
.content-card h3,
.content-card h4,
.section-heading h2,
.cta-banner-copy h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

.content-card h2,
.section-heading h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.content-card h3 {
  margin: 0 0 0.85rem;
  font-size: 2rem;
  line-height: 1;
}

.content-card h4 {
  margin: 0 0 0.65rem;
  font-size: 1.55rem;
}

.content-card p,
.content-card li {
  color: #4a5260;
  line-height: 1.75;
}

.content-card.dark p,
.content-card.dark li,
.content-card.dark .meta-line {
  color: rgba(255, 255, 255, 0.86);
}

.content-card .highlight {
  color: var(--gold);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.65rem;
  height: 3.65rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(209, 138, 26, 0.12);
  color: var(--gold);
  font-size: 1.5rem;
}

.content-card.dark .icon-badge {
  background: rgba(236, 163, 56, 0.14);
  color: var(--gold-bright);
}

.list-check,
.bullet-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.1rem 0 0;
  list-style: none;
}

.list-check li,
.bullet-list li {
  position: relative;
  padding-left: 1.8rem;
}

.list-check li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #eda32f, #d98d1e);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mini-metric {
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(209, 138, 26, 0.2);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.mini-metric strong {
  display: block;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.mini-metric span {
  display: block;
  margin-top: 0.45rem;
  color: #4c5360;
  line-height: 1.55;
}

.section-heading {
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading p {
  margin: 0;
  color: #55606c;
  line-height: 1.75;
}

.service-panel,
.insight-card,
.contact-panel,
.process-step,
.pricing-detail {
  height: 100%;
  padding: 1.8rem;
  background: #fff;
  border: 1px solid rgba(209, 138, 26, 0.2);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.service-panel h3,
.insight-card h3,
.contact-panel h3,
.process-step h3,
.pricing-detail h3 {
  margin: 0.8rem 0 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.service-panel p,
.insight-card p,
.contact-panel p,
.process-step p,
.pricing-detail p {
  margin: 0;
  color: #4a5260;
  line-height: 1.7;
}

.service-panel .meta-line,
.insight-card .meta-line,
.contact-panel .meta-line {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.quote-panel {
  position: relative;
  padding: 2rem;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 26, 44, 0.98), rgba(8, 26, 44, 0.92)),
    url("../images/lighthouse-scene.png") right bottom / 12rem auto no-repeat,
    var(--navy);
  border: 1px solid rgba(236, 163, 56, 0.2);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin: 0.7rem 0 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
}

.quote-panel footer {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.cta-banner {
  overflow: hidden;
  border-radius: 1rem;
  background:
    linear-gradient(90deg, rgba(8, 26, 44, 0.98) 0%, rgba(8, 26, 44, 0.92) 58%, rgba(8, 26, 44, 0.72) 100%),
    url("../images/lighthouse-scene.png") right center / 18rem auto no-repeat,
    var(--navy);
  box-shadow: var(--shadow);
}

.cta-banner-copy {
  max-width: 36rem;
  padding: 2.4rem;
}

.cta-banner-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.cta-banner-copy p {
  margin: 0.9rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
}

.insight-card img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 1.2rem;
}

.insight-card .meta-line {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
}

.form-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid rgba(209, 138, 26, 0.2);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.form-card label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: #27303b;
}

.form-card .form-control,
.form-card .form-select {
  min-height: 3.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 0.75rem;
  box-shadow: none;
}

.form-card textarea.form-control {
  min-height: 10rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  background: rgba(209, 138, 26, 0.08);
  border: 1px solid rgba(209, 138, 26, 0.18);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
}

.simple-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(209, 138, 26, 0.18);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.simple-table thead th {
  padding: 1rem 1.1rem;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
}

.simple-table tbody td {
  padding: 1rem 1.1rem;
  color: #34404d;
  background: #fff;
  border-top: 1px solid rgba(209, 138, 26, 0.12);
}

.simple-table tbody tr:nth-child(even) td {
  background: #fcfaf6;
}

@media (max-width: 1399.98px) {
  .results-shell {
    grid-template-columns: 1.15fr repeat(4, 1fr) 1.2fr;
  }

  .results-heading h2 {
    font-size: 3rem;
  }

  .page-grid.four-col,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1199.98px) {
  .navbar-nav {
    gap: 0.25rem !important;
  }

  .navbar-nav .nav-link {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  :root {
    --page-content-width: 92%;
  }

  .hero-section .container {
    width: 100%;
  }

  .navbar-collapse {
    padding-top: 1rem;
  }

  .header-actions {
    flex-wrap: wrap;
    padding-top: 1rem;
  }

  .hero-shell {
    padding: 3rem 0 3.3rem;
  }

  .hero-copy {
    width: 55%;
    max-width: 55%;
    padding-right: 0;
  }

  .results-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-grid.two-col,
  .page-grid.three-col,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-heading,
  .result-metric,
  .results-quote {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .results-heading {
    border-top: 0;
  }

  .results-shell::after {
    width: 10rem;
    opacity: 0.55;
  }

  .footer-grid > div + div::before {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .faq-cta-section {
    background: #fff;
  }

  .hero-shell {
    min-height: 40rem;
    padding-bottom: 5.5rem;
  }

  .hero-curve__svg {
    height: clamp(3.5rem, 8vw, 5.5rem);
  }

  .hero-section + .about-section {
    margin-top: -2px;
  }

  .hero-copy {
    width: 65%;
    max-width: 65%;
  }

  .founder-card,
  .split-card {
    grid-template-columns: 1fr;
  }

  .founder-card {
    text-align: center;
  }

  .founder-copy p {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }

  .split-panel + .split-panel {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .expertise-grid > div:nth-child(odd) .expertise-item {
    border-left: 0;
  }

  .faq-panel {
    padding-right: 0;
  }

  .cta-panel {
    min-height: 24rem;
    padding: 2rem;
    background-size: 32% auto;
  }

  .subpage-shell {
    min-height: 20rem;
    padding: 3.5rem 0 6rem;
  }

  .subpage-hero + .page-section,
  .subpage-hero + .subpage-cta-section {
    margin-top: -2px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  :root {
    --page-content-width: 100%;
  }

  .navbar-brand img {
    height: 70px;
  }

  .hero-shell {
    padding: 2.25rem 0 2.2rem;
    min-height: 34rem;
  }

  .hero-copy h1 {
    font-size: 3.05rem;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .login-btn,
  .header-phone {
    justify-content: center;
  }

  .hero-stats {
    gap: 1.1rem;
  }

  .hero-stat {
    width: 100%;
  }

  .section-space {
    padding-top: 2.4rem;
  }

  .page-section {
    padding-top: 2.6rem;
  }

  .section-intro h2,
  .cta-copy h2 {
    font-size: 2.45rem;
  }

  .subpage-copy h1,
  .cta-banner-copy h2,
  .content-card h2,
  .section-heading h2 {
    font-size: 2.45rem;
  }

  .metric-strip,
  .blog-grid,
  .process-grid,
  .page-grid.four-col {
    grid-template-columns: 1fr;
  }

  .founder-card {
    padding: 1.2rem;
  }

  .founder-image {
    max-width: 14rem;
    margin: 0 auto;
  }

  .results-shell {
    grid-template-columns: 1fr;
  }

  .result-metric,
  .results-quote {
    border-left: 0;
  }

  .results-shell::after {
    width: 100%;
    background-position: right bottom;
    background-size: 12rem auto;
  }

  .cta-panel {
    background-size: 14rem auto;
    background-position: right bottom;
  }

  .footer-meta {
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
  }
}

/* Auth (login, password reset) */
.auth-page {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
}

.auth-page__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(8, 26, 44, 0.97) 0%, rgba(13, 34, 56, 0.92) 45%, rgba(8, 26, 44, 0.88) 100%),
    radial-gradient(circle at 12% 18%, rgba(236, 163, 56, 0.22), transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(209, 138, 26, 0.14), transparent 42%);
}

.auth-page__inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.auth-card {
  width: 100%;
  max-width: 28rem;
  padding: 2.25rem 2rem 1.75rem;
  background: #fff;
  border: 1px solid rgba(209, 138, 26, 0.22);
  border-radius: 1rem;
  box-shadow: 0 28px 64px rgba(8, 26, 44, 0.35);
}

.auth-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.auth-brand img {
  max-height: 3.4rem;
  width: auto;
}

.auth-kicker {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.auth-card__title {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  text-align: center;
}

.auth-card__lead {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.auth-form .form-label {
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: #27303b;
}

.auth-form .form-control {
  min-height: 3.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 0.75rem;
  box-shadow: none;
}

.auth-form .form-control:focus {
  border-color: rgba(209, 138, 26, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(209, 138, 26, 0.18);
}

.auth-form .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.auth-form .form-check-input:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 0.2rem rgba(209, 138, 26, 0.2);
}

.auth-form .form-check-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.auth-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}

.auth-link:hover {
  color: var(--gold-bright);
}

.auth-submit {
  width: 100%;
  min-height: 3.25rem;
  margin-top: 0.25rem;
}

.auth-actions .auth-submit {
  width: auto;
  flex-shrink: 0;
}

.auth-back {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
}

.auth-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--muted);
}

.auth-back a:hover {
  color: var(--navy);
}

.auth-alert {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  font-size: 0.9rem;
}

.auth-alert--success {
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #badbcc;
}

.auth-alert--error {
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f5c2c7;
}

.auth-field-error {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #b42318;
}
