:root {
  --navy: #11100d;
  --navy-2: #1f1a13;
  --charcoal: #25221d;
  --muted: #6e675c;
  --line: #e6ded2;
  --blue: #f5efe6;
  --blue-2: #e6d1af;
  --gold: #c9954a;
  --green: #766851;
  --white: #ffffff;
  --off-white: #fbf8f2;
  --shadow: 0 20px 50px rgba(17, 16, 13, 0.13);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--white);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(230, 222, 210, 0.85);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(17, 16, 13, 0.08);
}

.nav {
  position: relative;
  width: min(100% - 2rem, var(--container));
  min-height: 0;
  margin-inline: auto;
  padding: 6px 0 6px clamp(0px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
  margin-right: 50px;
  color: var(--navy);
}

.brand-logo {
  display: block;
  width: 80px;
  height: 80px;
  max-width: 80px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(17, 16, 13, 0.12);
}

.brand-logo,
.footer-logo-card img,
.contact-logo-card img {
  user-select: none;
}

.nav-links {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.nav-cta {
  flex: 0 0 auto;
  min-height: 42px;
  padding-inline: 1rem;
}

.nav-links a:not(.button):hover {
  color: var(--green);
}

.nav-links a.is-active:not(.button) {
  color: var(--green);
}

.nav-phone {
  color: var(--green);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.38rem;
  border: 1px solid var(--navy);
  border-radius: 13px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 12px 24px rgba(17, 16, 13, 0.2);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.nav-links .nav-cta {
  min-height: 50px;
  padding: 0.82rem 1.18rem;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--navy-2);
  box-shadow: 0 16px 30px rgba(17, 16, 13, 0.26);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}

.button-secondary.light {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button-small {
  min-height: 42px;
  padding: 0.7rem 0.82rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  overflow: hidden;
  padding-top: 1.9rem;
  background:
    radial-gradient(circle at 82% 16%, rgba(201, 149, 74, 0.15), transparent 28rem),
    radial-gradient(circle at 12% 24%, rgba(118, 104, 81, 0.1), transparent 24rem),
    linear-gradient(180deg, #fbf8f2 0%, #ffffff 76%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.08fr);
  gap: 3.25rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  margin-bottom: 1.25rem;
  max-width: 760px;
  font-size: 3.75rem;
}

.hero-copy h1 {
  margin-bottom: 2rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.75rem;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.18rem;
}

.hero-text {
  max-width: 620px;
  color: #314155;
  font-size: 1.18rem;
}

.hero-fit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
  max-width: 720px;
}

.hero-fit span {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--blue-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.5rem 0 0.7rem;
}

.microcopy {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 700px;
}

.trust-points span {
  padding-left: 1.45rem;
  position: relative;
  color: var(--navy);
  font-weight: 750;
}

.trust-points span::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-media {
  position: relative;
  border-radius: 28px 8px 28px 8px;
}

.image-panel img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow);
}

.hero-media .hero-photo {
  object-position: 50% 50%;
}

.tpi-photo,
.provider-photo-card .provider-photo,
.image-panel img {
  filter: saturate(0.88) contrast(1.04) sepia(0.08) brightness(0.99);
}

.trustbar {
  padding: 1.1rem 0;
  background: var(--navy);
  color: var(--white);
}

.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  font-size: 0.9rem;
}

.trustbar-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.trustbar-grid strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.split,
.authority-grid,
.conditions-grid,
.cta-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.rich-copy p,
.section-heading p,
.conditions-grid p,
.authority-grid p,
.mission-panel p,
.insurance p,
.final-cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

.concerns {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.concerns span,
.info-list div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--navy);
  font-weight: 750;
}

.difference,
.process,
.testimonials {
  background: var(--off-white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.4rem;
}

.section-heading.wide {
  max-width: 900px;
}

.card-grid,
.service-grid,
.steps {
  display: grid;
  gap: 1rem;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

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

.card,
.service-grid article,
.steps article,
.testimonial-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(13, 42, 77, 0.06);
}

.card p,
.service-grid p,
.steps p,
.testimonial-card span {
  color: var(--muted);
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--blue-2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(13, 42, 77, 0.06);
}

.inline-cta strong,
.inline-cta span {
  display: block;
}

.inline-cta strong {
  color: var(--navy);
}

.inline-cta span {
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--navy);
  font-weight: 900;
}

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

.service-grid article {
  border-top: 4px solid var(--green);
}

.service-link {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--green);
  font-weight: 900;
}

.service-link:hover {
  color: var(--navy);
}

.tpi-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.tpi-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.98fr) minmax(0, 1.02fr);
  gap: 3rem;
  align-items: center;
}

.tpi-photo-wrap {
  position: relative;
  max-width: 580px;
  border-radius: 28px 8px 28px 8px;
  overflow: hidden;
}

.tpi-photo {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 46%;
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow);
}

.tpi-logo-card {
  position: absolute;
  left: 1.75rem;
  bottom: 1.75rem;
  width: clamp(150px, 30%, 178px);
  display: block;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 16px 34px rgba(17, 16, 13, 0.3);
}

.tpi-logo-image {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.tpi-logo-fallback strong,
.tpi-logo-fallback small {
  display: block;
}

.tpi-logo-fallback strong {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 1;
}

.tpi-logo-fallback small {
  margin-top: 0.25rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tpi-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.tpi-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.tpi-services li {
  position: relative;
  padding: 0.68rem 0.75rem 0.68rem 1.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.tpi-services li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 1.17rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.tpi-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 0.95rem;
  border: 1px solid var(--blue-2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(13, 42, 77, 0.06);
}

.tpi-cta strong,
.tpi-cta span {
  display: block;
}

.tpi-cta strong {
  color: var(--navy);
}

.tpi-cta span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

@media (prefers-reduced-motion: no-preference) {
  .tpi-photo-wrap,
  .tpi-copy {
    animation: tpiFadeUp 520ms ease both;
  }

  .tpi-copy {
    animation-delay: 90ms;
  }
}

@keyframes tpiFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.conditions {
  background:
    linear-gradient(105deg, rgba(17, 16, 13, 0.91), rgba(31, 26, 19, 0.86)),
    linear-gradient(rgba(201, 149, 74, 0.12), rgba(201, 149, 74, 0.08)),
    url("https://images.unsplash.com/photo-1539617795576-58f7319d2d6b?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}

.conditions h2,
.conditions .eyebrow {
  color: var(--white);
}

.conditions-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.condition-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.condition-list li {
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 750;
}

.service-area {
  background: var(--white);
}

.service-area-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

.service-area-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.area-list a {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--navy);
  font-weight: 800;
}

.area-list a:hover {
  border-color: var(--blue-2);
  background: var(--blue);
}

.steps article {
  position: relative;
  min-height: 230px;
}

.steps span {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--gold);
  font-weight: 900;
}

.steps article::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 4.2rem;
  width: 56px;
  height: 2px;
  background: var(--gold);
}

.authority-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.provider-photo-card {
  position: sticky;
  top: 128px;
  align-self: start;
  max-width: 460px;
}

.provider-photo-card .provider-photo {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow);
}

.provider-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(13, 42, 77, 0.14);
  backdrop-filter: blur(14px);
}

.provider-card strong,
.provider-card span,
.provider-card small {
  display: block;
}

.provider-card strong {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
}

.provider-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.provider-card small {
  margin-top: 0.35rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-story {
  max-width: 780px;
}

.founder-story h2 {
  max-width: 680px;
}

.founder-intro {
  max-width: 650px;
  color: #314155;
  font-size: 1.14rem;
  font-weight: 720;
}

.founder-bio {
  display: grid;
  gap: 0.85rem;
  max-width: 720px;
  margin-top: 1.25rem;
}

.founder-bio h3 {
  margin-bottom: 0.1rem;
  color: var(--navy);
  font-size: 1.32rem;
}

.founder-bio p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.credential-grid article {
  position: relative;
  min-height: 112px;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(13, 42, 77, 0.06);
}

.credential-grid article::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--green);
  font-weight: 950;
}

.credential-grid strong,
.credential-grid span {
  display: block;
}

.credential-grid strong {
  color: var(--navy);
  line-height: 1.25;
}

.credential-grid span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 620;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--navy);
  font-weight: 750;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.proof-strip span {
  padding: 0.65rem 0.7rem;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--navy);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 850;
}

.provider-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.provider-cta span {
  color: var(--muted);
  font-weight: 750;
}

.mission {
  padding: 4rem 0;
}

.mission-panel {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 28px 8px 28px 8px;
  background:
    linear-gradient(100deg, rgba(17, 16, 13, 0.92), rgba(31, 26, 19, 0.78)),
    linear-gradient(rgba(201, 149, 74, 0.1), rgba(201, 149, 74, 0.08)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}

.mission-panel h2,
.mission-panel .eyebrow {
  color: var(--white);
}

.mission-panel p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
}

.testimonial-card p {
  font-size: 1.1rem;
  font-weight: 850;
  color: var(--navy);
}

.local-faq {
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-grid article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(13, 42, 77, 0.06);
}

.faq-grid p {
  color: var(--muted);
}

.info-list {
  display: grid;
  gap: 0.75rem;
}

.info-list strong,
.info-list span,
.contact-info-card span,
.contact-info-card a {
  display: block;
}

.info-list span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-weight: 500;
}

.final-cta {
  background:
    radial-gradient(circle at 12% 12%, rgba(79, 138, 120, 0.12), transparent 26rem),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
  color: var(--charcoal);
}

.final-cta h2,
.final-cta .eyebrow {
  color: var(--navy);
}

.final-cta p {
  color: var(--muted);
}

.coming-soon-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(201, 146, 46, 0.12), transparent 24rem),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.early-access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.early-access-copy p {
  max-width: 690px;
}

.contact-card-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 680px;
  margin-top: 1.5rem;
}

.contact-card-grid.compact .contact-info-card {
  min-height: 190px;
}

.early-access-form {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 1.2rem;
}

.form-heading h3 {
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid label {
  display: grid;
  gap: 0.4rem;
  color: var(--navy);
  font-weight: 850;
}

.form-grid em {
  color: var(--muted);
  font-style: normal;
  font-weight: 650;
}

.form-grid input {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--charcoal);
  font: inherit;
}

.form-grid input:focus {
  outline: 3px solid rgba(201, 149, 74, 0.24);
  border-color: var(--gold);
  background: var(--white);
}

.early-access-button {
  width: 100%;
  margin-top: 1rem;
}

.form-status {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.form-status.is-success,
.form-status.is-error {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
}

.form-status.is-success {
  border: 1px solid rgba(118, 104, 81, 0.3);
  background: rgba(118, 104, 81, 0.1);
  color: #5e523f;
}

.form-status.is-error {
  border: 1px solid rgba(201, 146, 46, 0.36);
  background: rgba(201, 146, 46, 0.1);
  color: #7a5414;
}

.contact-logo-card,
.footer-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(201, 149, 74, 0.35);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.contact-logo-card {
  width: 160px;
  margin-bottom: 1rem;
}

.contact-logo-card img,
.footer-logo-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.contact-heading p {
  max-width: 680px;
  margin-inline: auto;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-info-card {
  display: grid;
  justify-items: center;
  min-height: 260px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 16, 13, 0.08);
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-2);
  box-shadow: 0 18px 38px rgba(17, 16, 13, 0.13);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--navy);
}

.contact-card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-info-card h3 {
  margin-bottom: 0.45rem;
}

.contact-info-card a,
.contact-info-card > span:not(.contact-card-icon) {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-info-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.footer {
  padding: 2rem 0;
  background: #050505;
  color: rgba(255, 255, 255, 0.74);
}

.footer strong {
  color: var(--white);
}

.footer-logo-card {
  width: 190px;
  margin-bottom: 1rem;
}

.footer p {
  max-width: 520px;
  margin-bottom: 0.35rem;
}

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

.footer a {
  color: rgba(255, 255, 255, 0.86);
}

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

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 82px;
  }

  .section {
    scroll-margin-top: 82px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    justify-content: space-between;
    gap: 1rem;
    padding-left: 0;
  }

  .brand {
    margin-right: 0;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .brand-logo {
    width: 64px;
    height: 64px;
    max-width: 64px;
  }

  .nav-links .button,
  .nav-phone {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-grid,
  .split,
  .authority-grid,
  .conditions-grid,
  .cta-grid,
  .service-area-grid,
  .tpi-grid,
  .early-access-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-media {
    max-width: 720px;
    margin-inline: auto;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .card-grid.four,
  .service-grid,
  .steps,
  .trustbar-grid,
  .area-list,
  .faq-grid,
  .contact-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .tpi-visual {
    max-width: 680px;
    margin-inline: auto;
    width: 100%;
  }

  .tpi-photo {
    aspect-ratio: 16 / 10;
  }

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

  .provider-photo-card {
    position: relative;
    top: auto;
    max-width: 520px;
  }

  .early-access-form {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 84px;
  }

  .section {
    padding: 4rem 0;
    scroll-margin-top: 78px;
  }

  .nav {
    min-height: 0;
    padding: 7px 0;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
    max-width: 60px;
  }

  .hero {
    padding-top: 1.6rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .hero-actions .button,
  .inline-cta .button {
    width: 100%;
  }

  .trust-points,
  .card-grid.four,
  .card-grid.three,
  .service-grid,
  .steps,
  .trustbar-grid,
  .condition-list,
  .proof-strip,
  .area-list,
  .faq-grid,
  .tpi-services,
  .credential-grid,
  .contact-card-grid,
  .contact-card-grid.compact,
  .form-grid.two-column {
    grid-template-columns: 1fr;
  }

  .founder-intro {
    font-size: 1.05rem;
  }

  .credential-grid article {
    min-height: auto;
  }

  .contact-heading {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .contact-info-card {
    min-height: auto;
    padding: 1.25rem;
  }

  .early-access-form {
    padding: 1.25rem;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  .tpi-section {
    padding-top: 4rem;
  }

  .tpi-logo-card {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    width: clamp(132px, 34%, 154px);
    padding: 0;
    margin: 0;
  }

  .tpi-photo {
    aspect-ratio: 16 / 11;
    object-position: 50% 48%;
  }

  .tpi-cta .button {
    width: 100%;
  }

  .hero-fit span {
    width: 100%;
    border-radius: var(--radius);
  }

  .footer-logo-card,
  .contact-logo-card {
    width: 190px;
  }

  .hero-media img,
  .image-panel img {
    aspect-ratio: 4 / 3;
  }

  .hero-media .hero-photo {
    object-position: 50% 50%;
  }

  .provider-photo-card .provider-photo {
    aspect-ratio: 4 / 4.6;
    object-position: 50% 38%;
  }

  .provider-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -1rem;
  }

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

  .provider-cta .button {
    width: 100%;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0.75rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 28px rgba(17, 16, 13, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar .button {
    min-height: 46px;
    padding: 0.75rem 0.7rem;
    font-size: 0.9rem;
    box-shadow: none;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 0.45rem;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
    max-width: 56px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }
}
