:root {
  --lw-bg: #e8f4ff;
  --lw-primary: #007bff;
  --lw-primary-dark: #0061c7;
  --lw-text-main: #093248;
  --lw-text-muted: #5f7b90;
  --lw-card-bg: #ffffff;
  --lw-card-alt: #008c95;
  --lw-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.12);
  --lw-radius-large: 24px;
  --lw-radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--lw-bg);
  color: var(--lw-text-main);
}

.lw-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(232, 244, 255, 0.9);
  backdrop-filter: blur(10px);
}

.lw-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lw-logo-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lw-logo {
  height: 40px;
  width: auto;
}

.lw-brand-text {
  font-size: 0.95rem;
  color: var(--lw-text-main);
}

.lw-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.lw-nav a {
  text-decoration: none;
  color: var(--lw-text-main);
}

.lw-pill-cta {
  padding: 10px 22px;
  border-radius: var(--lw-radius-pill);
  background: var(--lw-primary);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.35);
  display: inline-block;
  text-align: center;
}

/* HERO */

.lw-hero {
  position: relative;
  padding: 70px 16px 40px;
  overflow: hidden;
}

.lw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, #ffffff, #e2f1ff 45%, #d4ebff 100%);
  z-index: -3;
}

.lw-hero-watermark {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 420px;
  background-image: url("lifewise-logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.24;
  z-index: -2;
}

.lw-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.lw-hero-title {
  margin: 0 0 10px;
  line-height: 1.1;
  color: #ffffff;
  text-shadow:
    0 0 18px rgba(0, 131, 255, 0.9),
    0 0 40px rgba(0, 73, 164, 0.8);
}

.lw-hero-main {
  font-size: clamp(3rem, 4.8vw, 3.6rem);
}

.lw-hero-tagline {
  font-size: clamp(2rem, 3.2vw, 2.4rem);
}

.lw-hero-subtitle {
  margin: 0 0 34px;
  font-size: 1.12rem;
  color: rgba(9, 50, 72, 0.95);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.lw-hero-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 120px;
  align-items: stretch;
}

.lw-hero-box {
  flex: 1 1 380px;
  max-width: 460px;
  background: var(--lw-card-bg);
  border-radius: var(--lw-radius-large);
  box-shadow: var(--lw-shadow-soft);
  padding: 22px 26px 26px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.lw-hero-box-right {
  background: var(--lw-card-alt);
  color: #ffffff;
}

.lw-box-heading {
  margin: 0 0 6px;
  font-size: 1.15rem;
  text-align: center;
}

.lw-box-subheading {
  margin: 10px 0 4px;
  font-size: 0.95rem;
  color: var(--lw-text-muted);
}

.lw-box-subheading-strong {
  color: var(--lw-text-main);
}

.lw-hero-box-right .lw-box-subheading {
  color: rgba(255, 255, 255, 0.8);
}

.lw-hero-box-right .lw-box-subheading-light {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.lw-box-line {
  margin: 4px 0;
  font-size: 0.96rem;
}

/* INSURER STRIP */

.lw-insurer-strip {
  max-width: 1100px;
  margin: 8px auto 40px;
  padding: 0 16px;
  text-align: center;
}

.lw-insurer-line {
  font-size: 0.9rem;
  color: var(--lw-text-muted);
  margin-bottom: 10px;
}

.lw-insurer-heading {
  font-size: 1rem;
  margin: 0 0 14px;
}

.lw-insurer-logos {
  display: flex;
  justify-content: center;
}

.lw-insurer-strip-img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* SECTIONS */

.lw-section {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 16px;
  text-align: center;
}

.lw-section-title {
  margin: 0 0 6px;
  font-size: 2rem;
  color: var(--lw-text-main);
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.9),
    0 0 22px rgba(0, 73, 164, 0.35);
}

.lw-section-subtitle {
  margin: 0 0 24px;
  font-size: 1rem;
  color: var(--lw-text-muted);
}

/* GRIDS & CARDS */

.lw-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.lw-card {
  background: #f0fbff;
  border-radius: var(--lw-radius-large);
  box-shadow: var(--lw-shadow-soft);
  padding: 20px 22px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.lw-card-icon {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 6px;
}

.lw-card-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  text-align: center;
}

.lw-card-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--lw-text-main);
}

.lw-pill-card {
  background: #f0fbff;
  border-radius: 999px;
  box-shadow: var(--lw-shadow-soft);
  padding: 18px 26px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.lw-who-grid .lw-card-icon {
  margin-bottom: 4px;
}

/* WHY LIFEWISE */

.lw-why-card {
  position: relative;
}

.lw-card-cta {
  margin-top: 16px;
}

/* TESTIMONIALS */

.lw-testimonials {
  margin-top: 40px;
}

.lw-testimonial-card {
  background: #f0fbff;
  border-radius: var(--lw-radius-large);
  box-shadow: var(--lw-shadow-soft);
  padding: 18px 20px 20px;
  text-align: left;
  border-left: 4px solid #008c95;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lw-testimonial-text {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.lw-testimonial-author {
  margin: 0;
  font-size: 0.9rem;
  color: var(--lw-text-muted);
}

/* ABOUT */

.lw-about-grid .lw-about-card {
  align-items: center;
}

.lw-headshot {
  width: 100%;
  border-radius: var(--lw-radius-large);
  display: block;
}

.lw-about-logo-qr {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.lw-about-logo {
  height: 44px;
  width: auto;
}

.lw-about-qr {
  height: 80px;
  width: auto;
}

.lw-about-cta-wrap {
  margin-top: 20px;
}

/* CONTACT & FOOTER */

.lw-contact {
  margin-top: 10px;
}

.lw-footer {
  background: #000000;
  padding: 20px 16px 26px;
  text-align: center;
}

.lw-footer-compliance {
  margin: 0;
  font-size: 0.8rem;
  color: #ffffff;
}

/* BOTTOM INSURER STRIP SPACING */

.lw-insurer-strip-bottom {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .lw-grid-4,
  .lw-grid-4.lw-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lw-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lw-header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .lw-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .lw-hero {
    padding-top: 54px;
  }
  .lw-hero-watermark {
    width: 260px;
    height: 260px;
    top: 26%;
  }
  .lw-hero-boxes {
    gap: 22px;
  }
  .lw-grid-4,
  .lw-grid-4.lw-testimonial-grid,
  .lw-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .lw-pill-card {
    border-radius: var(--lw-radius-large);
  }
}


.lw-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  justify-content: center;
  column-gap: 32px;
}

.lw-about-card {
  border-radius: 24px;
  padding: 22px 20px;
  min-height: 360px;
  max-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lw-headshot {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.lw-about-card .lw-card-title {
  text-align: center;
  margin-bottom: 12px;
}

.lw-about-card .lw-card-text {
  line-height: 1.45;
  text-align: left;
}

.lw-about-logo-qr-standalone {
  min-height: 360px;
  max-height: 360px;
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.about-logo-vertical {
  max-width: 90px;
  height: auto;
}

.about-qr-vertical {
  max-width: 160px;
  height: auto;
}

@media (max-width: 1100px) {
  .lw-about-grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .lw-about-card,
  .lw-about-logo-qr-standalone {
    width: 100%;
    min-height: auto;
    max-height: none;
  }
}


.lw-why-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lw-card-text-block {
  flex: 1;
}

.lw-why-card .lw-card-text-block p {
  margin: 6px 0;
  font-size: 16px;
  line-height: 1.45;
}


.lw-contact-details {
  text-align: center;
  font-size: 18px;
  margin-top: 12px;
  margin-bottom: 32px;
  color: #00334e;
  font-weight: 500;
  letter-spacing: 0.3px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
