:root {
  --green-950: #071f18;
  --green-900: #0b2f23;
  --green-800: #124a36;
  --green-700: #18644a;
  --green-600: #1f7d5d;
  --gold-400: #dbb36c;
  --gold-100: rgba(219, 179, 108, 0.18);
  --slate-950: #142027;
  --slate-800: #30434b;
  --slate-700: #4d636d;
  --slate-500: #738893;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --surface-soft: rgba(246, 250, 247, 0.9);
  --line: rgba(12, 49, 36, 0.1);
  --shadow-lg: 0 28px 90px rgba(6, 26, 20, 0.14);
  --shadow-md: 0 18px 48px rgba(6, 26, 20, 0.1);
  --shadow-sm: 0 10px 28px rgba(6, 26, 20, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --title-font: "Cambria", "Palatino Linotype", "Book Antiqua", serif;
  --text-font: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--slate-950);
  background:
    radial-gradient(circle at top right, rgba(232, 246, 237, 0.95), transparent 28%),
    radial-gradient(circle at left center, rgba(253, 247, 238, 0.95), transparent 30%),
    linear-gradient(180deg, #f6faf7 0%, #fcfaf4 42%, #f7faf8 100%);
  font-family: var(--text-font);
  text-rendering: optimizeLegibility;
}

body[data-page="/dashboard"],
body[data-page="/admin"] {
  background:
    radial-gradient(circle at top right, rgba(219, 179, 108, 0.18), transparent 25%),
    linear-gradient(180deg, #f4faf6 0%, #f7faf8 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(219, 179, 108, 0.84);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 1.5rem), 80vw);
  margin: 0 auto;
  max-width: 1720px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 100;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: var(--green-950);
  color: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 251, 244, 0.88);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 132px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 190px;
  height: 190px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-text strong {
  color: var(--green-900);
  font-family: var(--title-font);
  font-size: 1.28rem;
}

.brand-text small {
  color: var(--slate-700);
  font-size: 0.9rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav a {
  padding: 0.88rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--slate-700);
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(18, 74, 54, 0.08);
  box-shadow: 0 10px 24px rgba(15, 63, 46, 0.08);
  transform: translateY(-1px);
}

.site-nav-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.88rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(18, 74, 54, 0.2);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-cta,
.header-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta {
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: #fff;
  box-shadow: 0 14px 30px rgba(18, 74, 54, 0.2);
}

.header-admin-link {
  border: 1px solid rgba(18, 74, 54, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-900);
}

.menu-toggle {
  display: none;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green-900);
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--green-900);
  font-family: var(--title-font);
  line-height: 1.05;
}

h1 {
  font-size: clamp(1.7rem, 3vw, 2.9rem);
}

h2 {
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
}

h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

p,
li,
small {
  color: var(--slate-700);
  line-height: 1.72;
}

code {
  padding: 0.12rem 0.4rem;
  border-radius: 0.5rem;
  background: rgba(20, 32, 39, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  box-shadow: 0 16px 36px rgba(18, 74, 54, 0.22);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-secondary--dark {
  color: #fff;
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  border-color: rgba(11, 47, 35, 0.4);
  box-shadow: 0 14px 30px rgba(11, 47, 35, 0.18);
}

.btn-secondary--hero {
  backdrop-filter: blur(8px);
}

.btn-secondary--dark:hover,
.btn-secondary--dark:focus-visible {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
}

.btn-danger {
  color: #fff;
  background: linear-gradient(135deg, #a83d38, #7d1f1a);
  box-shadow: 0 12px 28px rgba(125, 31, 26, 0.2);
}

.hero {
  padding: 2.2rem 0 1rem;
}

.hero-shell {
  position: relative;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.6rem);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 243, 0.78)),
    radial-gradient(circle at top right, rgba(18, 74, 54, 0.12), transparent 36%);
  box-shadow: var(--shadow-lg);
}

.hero-copy {
  width: 100%;
  max-width: 700px;
  justify-self: center;
  padding: 0;
}

.hero-brand-lockup {
  display: grid;
  justify-items: start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.48rem 0.9rem;
  border: 1px solid rgba(18, 74, 54, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-900);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.hero-description {
  max-width: 58ch;
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero--landing h1 {
  max-width: 18ch;
  font-size: clamp(1.75rem, 2.45vw, 2.65rem);
  line-height: 1.08;
}

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

.hero-actions--center {
  justify-content: center;
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: 680px;
  justify-self: center;
  min-height: 360px;
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 31, 24, 0.04), rgba(7, 31, 24, 0.24)),
    radial-gradient(circle at top left, rgba(219, 179, 108, 0.18), transparent 38%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease, filter 260ms ease;
}

.hero-media--landing img {
  object-position: center top;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  max-width: 230px;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(11, 47, 35, 0.74);
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.hero-badge strong,
.hero-badge span {
  color: #fff;
  line-height: 1.45;
}

.hero-badge--top {
  top: 1rem;
  right: 1rem;
}

.hero-badge--bottom {
  left: 1rem;
  bottom: 1rem;
}

.trust-strip {
  padding: 1rem 0 2rem;
}

.home-banner {
  padding: 2rem 0 1rem;
}

.home-banner__link {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(18, 74, 54, 0.08);
  border-radius: calc(var(--radius-xl) + 6px);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.home-banner__link img {
  width: 100%;
  height: auto;
  transition: transform 280ms ease, filter 280ms ease;
}

.home-banner__link:hover img {
  transform: scale(1.015);
  filter: saturate(1.04) contrast(1.02);
}

.section {
  padding: 4.5rem 0;
}

.section-contact {
  padding-top: 3rem;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(236, 247, 241, 0.94), rgba(255, 251, 244, 0.84)),
    radial-gradient(circle at top right, rgba(219, 179, 108, 0.12), transparent 32%);
}

.section-head {
  max-width: 620px;
  margin-bottom: 1.5rem;
}

.section-head h2,
.page-hero h1,
.centered-block h1,
.centered-block h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.1;
}

.section-head p,
.page-hero p,
.centered-block p {
  max-width: 56ch;
  font-size: 0.92rem;
  line-height: 1.5;
}

.trust-grid,
.card-grid,
.stats-grid,
.dashboard-panels,
.lead-admin-grid,
.access-grid {
  display: grid;
  gap: 1.25rem;
}

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

.card-grid--two,
.dashboard-panels {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lead-admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.trust-card,
.info-card,
.service-card,
.contact-card,
.form-card,
.page-hero-note,
.highlight-panel,
.landing-note,
.step-card,
.metric-card,
.dashboard-panel,
.status-banner,
.content-block,
.admin-login-card,
.lead-admin-card,
.access-card,
.empty-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.trust-card,
.contact-card,
.form-card,
.page-hero-note,
.highlight-panel,
.landing-note,
.content-block,
.metric-card,
.dashboard-panel,
.status-banner,
.admin-login-card,
.lead-admin-card,
.access-card,
.empty-card {
  padding: 1.55rem;
}

.info-card,
.service-card,
.product-card {
  padding: 0.95rem;
}

.info-card img,
.service-card img,
.product-card img,
.page-hero-image,
.highlight-panel img,
.form-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  background: linear-gradient(180deg, #eef8f3, #fbf7f0);
}

.info-card img,
.service-card img,
.product-card img,
.form-card img {
  margin-bottom: 1rem;
}

.info-card a,
.service-card a,
.product-card a,
.footer-list a,
.contact-list a {
  color: var(--green-800);
  font-weight: 800;
}

.product-card {
  display: grid;
  gap: 0.7rem;
  height: 100%;
  border: 1px solid rgba(18, 74, 54, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 247, 0.98));
}

.product-card img {
  aspect-ratio: 4 / 3;
  max-height: 180px;
}

.product-card__content {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.product-card__content h3,
.product-card__content p {
  margin: 0;
}

.product-card__content p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 0.2rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(18, 74, 54, 0.08);
}

.page-hero {
  padding: 1.4rem 0 0.5rem;
}

.page-intro-strip {
  padding: 0.25rem 0 0;
}

.page-hero--narrow {
  padding-bottom: 4rem;
}

.page-hero-grid,
.split-panel {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
  grid-template-columns: minmax(420px, 1.05fr) minmax(380px, 0.95fr);
}

.page-hero-grid--image {
  grid-template-columns: minmax(380px, 1fr) minmax(380px, 1fr);
}

.page-hero-grid > div:first-child,
.split-panel > div:first-child,
.split-panel > aside:first-child {
  width: 100%;
  max-width: 700px;
  justify-self: center;
}

.split-panel > div:first-child {
  max-width: 780px;
  justify-self: stretch;
  padding: clamp(1.35rem, 2.4vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(242, 249, 245, 0.88)),
    radial-gradient(circle at top right, rgba(219, 179, 108, 0.12), transparent 38%);
  box-shadow: var(--shadow-sm);
}

.split-panel > div:first-child p {
  max-width: 80%;
}

.page-hero-note {
  background:
    linear-gradient(160deg, rgba(255, 250, 243, 0.95), rgba(239, 248, 243, 0.88)),
    radial-gradient(circle at top right, rgba(219, 179, 108, 0.14), transparent 40%);
}

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

.landing-note strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--green-900);
  font-size: 1.1rem;
}

.landing-note p {
  margin: 0;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.section-insurers {
  padding-top: 3.4rem;
}

.insurer-seal {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 1.8rem);
  align-items: stretch;
  padding: clamp(0.9rem, 1.8vw, 1.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 245, 0.92)),
    radial-gradient(circle at 78% 8%, rgba(219, 179, 108, 0.16), transparent 28%);
  box-shadow: var(--shadow-md);
}

.insurer-seal__intro {
  display: grid;
  align-content: center;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    linear-gradient(150deg, rgba(11, 47, 35, 0.97), rgba(18, 74, 54, 0.93)),
    radial-gradient(circle at top right, rgba(219, 179, 108, 0.22), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.insurer-seal__intro .eyebrow,
.insurer-seal__intro h2,
.insurer-seal__intro p {
  color: #fff;
}

.insurer-seal__intro h2 {
  max-width: 13ch;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
}

.insurer-seal__intro p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.insurer-seal__proof {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  width: fit-content;
  margin-top: 1.45rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.insurer-seal__proof strong {
  color: #fff;
  font-family: var(--title-font);
  font-size: 2rem;
  line-height: 1;
}

.insurer-seal__proof span {
  max-width: 12ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.insurer-wall {
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(18, 74, 54, 0.07);
  border-radius: calc(var(--radius-xl) - 8px);
  background: rgba(255, 255, 255, 0.7);
}

.insurer-wall__label {
  margin: 0 0 0.65rem;
  color: var(--green-800);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insurer-grid {
  display: grid;
  gap: 0.65rem;
}

.insurer-grid--partners {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.insurer-card {
  display: grid;
  grid-template-rows: 46px auto;
  gap: 0.45rem;
  min-height: 92px;
  align-items: center;
  justify-items: center;
  padding: 0.68rem 0.58rem;
  border: 1px solid rgba(18, 74, 54, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 250, 0.96));
  color: var(--green-900);
  text-align: center;
  box-shadow: 0 10px 22px rgba(6, 26, 20, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.insurer-card:hover {
  border-color: rgba(31, 125, 93, 0.24);
  box-shadow: 0 18px 38px rgba(6, 26, 20, 0.12);
  transform: translateY(-2px);
}

.insurer-card__logo {
  display: grid;
  width: 112px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  background: transparent;
}

.insurer-card img {
  width: 104px;
  height: 38px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.insurer-card__name {
  color: var(--green-900);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: stretch;
}

.about-story__text p {
  margin-bottom: 0.85rem;
}

.about-story__media {
  display: grid;
  gap: 1rem;
}

.about-story__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 260ms ease, filter 260ms ease;
}

.about-story__media img:hover {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.split-panel--media .highlight-panel {
  overflow: hidden;
}

.highlight-panel {
  width: 100%;
  max-width: 640px;
  justify-self: center;
  background:
    linear-gradient(160deg, rgba(255, 250, 243, 0.95), rgba(239, 248, 243, 0.88)),
    radial-gradient(circle at top right, rgba(219, 179, 108, 0.14), transparent 40%);
}

.highlight-panel img {
  aspect-ratio: 16 / 10;
  max-height: 380px;
  margin-bottom: 1rem;
}

.page-hero-image {
  max-width: 640px;
  max-height: 390px;
  justify-self: center;
  aspect-ratio: 16 / 10;
}

.form-card img {
  aspect-ratio: 16 / 9;
  max-height: 280px;
}

.page-hero-image,
.highlight-panel img,
.product-card img {
  transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease;
}

.hero-media:hover img,
.highlight-panel:hover img,
.product-card:hover img,
.page-hero-image:hover {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.product-card:hover,
.highlight-panel:hover {
  box-shadow: 0 24px 56px rgba(6, 26, 20, 0.14);
}

.stack-list {
  display: grid;
  gap: 1rem;
}

.step-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(31, 125, 93, 0.18), rgba(219, 179, 108, 0.22));
  color: var(--green-900);
  font-weight: 800;
  font-size: 1.1rem;
}

.feature-list,
.footer-list,
.contact-list,
.lead-admin-card__meta {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.footer-list li,
.contact-list li,
.lead-admin-card__meta li {
  margin-bottom: 0.75rem;
}

.contact-note {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.contact-card > h1 {
  margin-right: auto;
  margin-left: auto;
  width: 80%;
  max-width: 22ch;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  line-height: 1.12;
  text-align: center;
}

.contact-card > p {
  width: 80%;
  max-width: 80%;
  margin-right: auto;
  margin-bottom: 1.2rem;
  margin-left: auto;
  font-size: 0.96rem;
  line-height: 1.6;
  text-align: center;
}

.contact-card > .eyebrow:first-child {
  text-align: center;
}

.contact-card .contact-note:first-of-type {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.contact-card .contact-note:first-of-type h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.contact-card--channels {
  display: grid;
  align-content: start;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.contact-channel-grid a {
  display: grid;
  gap: 0.2rem;
  min-height: 96px;
  padding: 1rem;
  border: 1px solid rgba(18, 74, 54, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 243, 0.9));
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-channel-grid a:hover {
  border-color: rgba(31, 125, 93, 0.28);
  box-shadow: 0 18px 38px rgba(6, 26, 20, 0.12);
  transform: translateY(-2px);
}

.contact-channel-grid strong {
  color: var(--green-900);
  font-size: 1rem;
}

.contact-channel-grid span {
  color: var(--slate-700);
  font-size: 0.9rem;
  line-height: 1.4;
  word-break: break-word;
}

.contact-note--hours p {
  margin: 0 0 0.35rem;
}

.form-card > p {
  max-width: 62ch;
  margin-top: -0.35rem;
}

.lead-form,
.admin-form {
  display: grid;
  gap: 1rem;
}

.lead-form label,
.admin-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--green-900);
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.admin-form input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(18, 74, 54, 0.14);
  border-radius: 14px;
  background: #fff;
  color: var(--slate-950);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form button[disabled] {
  cursor: progress;
  opacity: 0.75;
}

.field-trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0;
  font-weight: 700;
}

.form-feedback--error {
  color: #9f2c27;
}

.form-feedback--success {
  color: var(--green-800);
}

.form-feedback--warning {
  color: #8a620c;
}

.form-feedback--info {
  color: var(--slate-700);
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  color: var(--green-900);
  font-weight: 800;
}

.faq-item p {
  margin: 0.8rem 0 0;
}

.faq-cta {
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid rgba(18, 74, 54, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(11, 47, 35, 0.96), rgba(18, 74, 54, 0.94)),
    radial-gradient(circle at top right, rgba(219, 179, 108, 0.18), transparent 38%);
  box-shadow: var(--shadow-md);
}

.faq-cta h2,
.faq-cta p {
  color: #fff;
}

.faq-cta p {
  max-width: 58ch;
}

.site-footer {
  padding: 2rem 0 2.4rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    linear-gradient(145deg, rgba(11, 47, 35, 0.96), rgba(16, 63, 47, 0.94)),
    radial-gradient(circle at top right, rgba(219, 179, 108, 0.14), transparent 36%);
  box-shadow: var(--shadow-lg);
}

.footer-shell section {
  min-width: 0;
}

.footer-shell h2,
.footer-shell h3,
.footer-shell p,
.footer-shell li,
.footer-shell a,
.footer-shell .eyebrow {
  color: #eef8f2;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fb968, #109351);
  color: #fff;
  box-shadow: 0 20px 44px rgba(16, 147, 81, 0.28);
  animation: whatsappFloat 2.4s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 24px 52px rgba(16, 147, 81, 0.35);
}

.floating-whatsapp__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.floating-whatsapp__icon svg {
  width: 28px;
  height: 28px;
}

.floating-whatsapp__text {
  display: grid;
  gap: 0.05rem;
}

.floating-whatsapp__text small,
.floating-whatsapp__text strong {
  color: #fff;
}

.admin-login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.admin-login-card {
  width: min(calc(100% - 2rem), 520px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 241, 0.94)),
    radial-gradient(circle at top right, rgba(31, 125, 93, 0.12), transparent 36%);
}

.dashboard-page {
  padding: 2rem 0 4rem;
}

.dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.5rem auto 0;
}

.dashboard-tab {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(18, 74, 54, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--slate-700);
  font-weight: 800;
}

.dashboard-tab.is-active {
  color: var(--green-900);
  background: rgba(255, 255, 255, 1);
  box-shadow: var(--shadow-sm);
}

.dashboard-section {
  padding-top: 2.4rem;
}

.status-banner {
  margin-top: 1.35rem;
}

.status-banner strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green-900);
}

.status-banner--warning {
  background: rgba(255, 246, 227, 0.96);
}

.status-banner--success {
  background: rgba(235, 247, 241, 0.96);
}

.metric-card span {
  display: block;
  color: var(--slate-700);
  font-size: 0.94rem;
}

.metric-card strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--green-900);
  font-family: var(--title-font);
  font-size: 2rem;
}

.dashboard-panel h3,
.lead-admin-card h3 {
  font-size: 1.35rem;
}

.panel-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(18, 74, 54, 0.08);
}

.panel-list--compact li {
  align-items: flex-start;
  flex-direction: column;
}

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

.lead-admin-card__header p {
  margin: -0.35rem 0 0;
}

.lead-status {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.8rem;
}

.lead-status--success {
  background: rgba(235, 247, 241, 1);
  color: var(--green-800);
}

.lead-status--warning {
  background: rgba(255, 245, 222, 1);
  color: #8a620c;
}

.lead-admin-card__meta strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--green-900);
}

.lead-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 74, 54, 0.08);
}

.lead-details summary {
  cursor: pointer;
  color: var(--green-900);
  font-weight: 800;
}

.lead-admin-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.lead-delete-form {
  margin: 0;
}

.access-card {
  display: grid;
  gap: 0.35rem;
}

.access-card strong {
  color: var(--green-900);
}

.empty-card {
  display: grid;
  place-items: start;
  gap: 0.5rem;
}

.centered-block {
  max-width: 720px;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition:
    opacity 560ms ease var(--reveal-delay, 0ms),
    transform 560ms ease var(--reveal-delay, 0ms),
    filter 560ms ease var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes whatsappFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 1120px) {
  .hero-panel,
  .page-hero-grid,
  .split-panel,
  .page-hero-grid--image,
  .about-story,
  .insurer-seal {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .card-grid--three,
  .card-grid--four,
  .stats-grid,
  .access-grid,
  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-note-grid {
    grid-template-columns: 1fr;
  }

  .insurer-seal__intro {
    align-content: start;
  }

  .insurer-seal__intro h2 {
    max-width: 18ch;
  }

  .insurer-grid--partners {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .header-shell {
    min-height: 102px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-right {
    position: relative;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: auto;
    display: none;
    min-width: min(92vw, 320px);
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    border: 1px solid rgba(18, 74, 54, 0.08);
    border-radius: 22px;
    background: rgba(255, 251, 244, 0.98);
    box-shadow: var(--shadow-md);
  }

  .site-nav-cta {
    display: inline-flex;
    margin-top: 0.35rem;
  }

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

  .header-cta-group {
    display: none;
  }

  .stats-grid,
  .dashboard-panels,
  .lead-admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4rem 0;
  }

  .home-banner {
    padding-top: 1rem;
  }

  .hero-panel {
    padding: 1rem;
  }

  .hero-copy {
    padding: 0.6rem;
  }

  .hero-media {
    min-height: 340px;
  }

  .hero-badge {
    position: static;
    max-width: none;
    margin-top: 0.8rem;
  }

  .trust-grid,
  .card-grid--three,
  .card-grid--four,
  .card-grid--two,
  .access-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .insurer-grid--partners,
  .contact-channel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .insurer-seal {
    padding: 0.7rem;
    border-radius: 28px;
  }

  .insurer-seal__intro,
  .insurer-wall {
    border-radius: 22px;
  }

  .dashboard-header,
  .footer-actions,
  .lead-admin-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand img {
    width: 150px;
    height: 150px;
  }

  .split-panel > div:first-child p,
  .contact-card > h1,
  .contact-card > p {
    width: 100%;
    max-width: 100%;
  }

  .site-footer {
    padding: 1.1rem 0 1.3rem;
  }

  .footer-shell {
    gap: 0.9rem;
    padding: 1.2rem;
    border-radius: 24px;
  }

  .footer-shell h2 {
    font-size: 1.35rem;
  }

  .footer-shell h3 {
    margin-bottom: 0.45rem;
  }

  .footer-shell p,
  .footer-shell li,
  .footer-shell a {
    line-height: 1.45;
  }

  .footer-list li {
    margin-bottom: 0.42rem;
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 2.8rem);
  }

  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .home-banner__link,
  .home-banner__link img {
    border-radius: 22px;
  }

  .contact-channel-grid {
    grid-template-columns: 1fr;
  }

  .insurer-grid--partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-whatsapp {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.82rem;
    border-radius: 22px;
  }

  .floating-whatsapp__text {
    display: none;
  }

  .hero-actions,
  .lead-admin-card__actions {
    width: 100%;
  }

  .hero-actions .btn,
  .lead-admin-card__actions .btn,
  .lead-admin-card__actions form,
  .lead-admin-card__actions form button {
    width: 100%;
  }
}

@media (min-width: 1280px) {
  .hero-panel {
    grid-template-columns: minmax(420px, 1fr) minmax(420px, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
