/* ═══════════════════════════════════════════
   Rowe Health & Wellness — Shared Styles
   ═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --green: #5aab3f;
  --green-l: #7dc85e;
  --teal: #1d8c7a;
  --teal-l: #34b89f;
  --sky: #e8f7f0;
  --lime: #d4f0a0;
  --coral: #f06b4b;
  --gold: #f5c842;
  --navy: #0d2d2a;
  --ink: #1a3530;
  --soft: #f4fbf7;
  --white: #ffffff;
  --gray: #5a7069;
  --border: #d0ebe0;
}

/* ── RESET ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

::selection {
  background: var(--lime);
  color: var(--navy);
}

/* ── NAV ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(13, 45, 42, 0.06);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  height: 68px;
  width: 68px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(29, 140, 122, 0.25);
}

.brand-text {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.2;
}

.brand-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--gray);
  transition: color .2s;
  position: relative;
}

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

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(90, 171, 63, 0.35);
  transition: transform .2s, box-shadow .2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90, 171, 63, 0.45);
}

.nav-cta.active::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media(max-width:860px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 36px 40px;
    gap: 24px;
    box-shadow: -4px 0 30px rgba(13, 45, 42, 0.12);
    transition: right .35s ease;
    z-index: 105;
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 28px rgba(90, 171, 63, 0.38);
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(90, 171, 63, 0.48);
}

.btn-outline {
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s, color .2s;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}

/* ── SECTION HEADINGS ── */
.section-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--green);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  margin-top: 14px;
  max-width: 560px;
  line-height: 1.7;
}

/* ── HERO (Home) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(150deg, #e8f8ef 0%, #d0f5e5 35%, #e0f5ff 70%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 171, 63, 0.18), transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 184, 159, 0.15), transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90, 171, 63, 0.12);
  border: 1px solid rgba(90, 171, 63, 0.3);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  font-weight: 600;
  color: var(--navy);
}

.hero h1 em {
  font-style: italic;
  color: var(--green);
}

.hero h1 span {
  color: var(--teal);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin-top: 22px;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 42px;
}

.stat {
  text-align: left;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--green);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 2px;
}

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap img {
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(13, 45, 42, 0.18);
}

.hero-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(13, 45, 42, 0.14);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--teal-l));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hero-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-card p {
  font-size: 0.76rem;
  color: var(--gray);
  margin-top: 2px;
}

@media(max-width:860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-img-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .hero-img-wrap img {
    max-width: 300px;
  }
}

/* ── PAGE HERO (Inner pages) ── */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(150deg, #e8f8ef 0%, #d0f5e5 35%, #e0f5ff 70%, #fff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 171, 63, 0.14), transparent 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 184, 159, 0.12), transparent 70%);
}

.page-hero .wrap {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  margin-top: 12px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--green);
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--teal);
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--green);
}

.breadcrumb .sep {
  color: var(--border);
}

/* ── MARQUEE ── */
.marquee-bar {
  background: linear-gradient(135deg, var(--green), var(--teal));
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  white-space: nowrap;
  padding: 0 36px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.92;
}

.marquee-dot {
  color: var(--lime);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── PILLARS ── */
.pillars {
  padding: 90px 0;
  background: var(--white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.pillar {
  background: var(--soft);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13, 45, 42, 0.1);
  border-color: var(--green);
}

.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.pillar h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

@media(max-width:900px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:520px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ── SERVICES ── */
.services {
  padding: 90px 0;
  background: var(--soft);
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}

.svc:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(13, 45, 42, 0.1);
}

.svc-color {
  height: 6px;
}

.svc-body {
  padding: 28px 26px 30px;
}

.svc-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.svc h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.svc p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.svc-price {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
}

.svc-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

@media(max-width:920px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:580px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ── HOW IT WORKS ── */
.hiw {
  padding: 90px 0;
  background: #fff;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
}

.step {
  text-align: center;
  padding: 40px 28px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid var(--border);
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

@media(max-width:740px) {
  .hiw-steps {
    grid-template-columns: 1fr;
  }
}

/* ── MEMBERSHIP ── */
.membership {
  padding: 90px 0;
  background: linear-gradient(160deg, #e8f8ef, #d0f0ff);
}

.tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 56px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.tier {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}

.tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(13, 45, 42, 0.1);
}

.tier.featured {
  border-color: var(--green);
  box-shadow: 0 16px 48px rgba(90, 171, 63, 0.2);
}

.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: 30px;
  white-space: nowrap;
}

.tier-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.tier h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.tier .price {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--green);
  margin: 14px 0 4px;
  line-height: 1;
}

.tier .price sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
}

.tier .price-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.tier hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

.tier ul {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}

.tier li {
  font-size: 0.88rem;
  color: var(--gray);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.tier li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.tier-note {
  font-size: 0.78rem;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 16px;
}

@media(max-width:620px) {
  .tiers {
    grid-template-columns: 1fr;
  }
}

/* ── NON-MEMBER SECTION ── */
.non-member-heading {
  text-align: center;
  margin-top: 64px;
  margin-bottom: 28px;
}

.non-member-heading h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
}

.non-member-heading h3 em {
  font-style: italic;
  color: var(--green);
}

.non-member-heading p {
  font-size: 0.92rem;
  color: var(--gray);
  margin-top: 6px;
}

.non-member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 740px;
  margin: 0 auto;
}

.non-member-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 24px;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}

.non-member-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 45, 42, 0.08);
}

.non-member-card .nm-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.non-member-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.non-member-card .nm-price {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}

.non-member-card .nm-price sub {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
}

.non-member-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

.non-member-card .nm-note {
  font-size: 0.78rem;
  color: var(--coral);
  font-weight: 600;
  margin-top: 8px;
}

@media(max-width:520px) {
  .non-member-grid {
    grid-template-columns: 1fr;
  }
}

/* ── DISCOUNTS ── */
.discounts-section {
  padding: 80px 0;
  background: #ddf0e8;
}

.discounts {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.discounts-heading {
  text-align: center;
  margin-bottom: 36px;
}

.discounts-block {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(13, 45, 42, 0.06);
}

.discount-item {
  padding: 24px 0;
}

.discount-item+.discount-item {
  border-top: 1px solid var(--border);
}

.discount-item:first-child {
  padding-top: 0;
}

.discount-item:last-child {
  padding-bottom: 0;
}

.discount-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.discount-item h4 .d-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.discount-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 6px;
}

.discount-item .d-sub {
  margin-top: 12px;
  padding-left: 18px;
  border-left: 3px solid var(--border);
}

.discount-item .d-sub p {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.discount-item .d-sub strong {
  color: var(--navy);
  font-weight: 600;
}

@media(max-width:520px) {
  .discounts-block {
    padding: 28px 22px;
  }
}

/* ── SPECIALS ── */
.specials {
  padding: 90px 0;
  background: var(--navy);
}

.specials-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.special-card {
  flex: 1;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 28px 24px;
  color: #fff;
  transition: background .2s;
}

.special-card:hover {
  background: rgba(255, 255, 255, 0.12);
}

.special-card .s-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.special-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.special-card p {
  font-size: 0.87rem;
  opacity: 0.75;
  line-height: 1.6;
}

.special-card .s-discount {
  margin-top: 14px;
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ── ABOUT STORY ── */
.about-story {
  padding: 90px 0;
  background: #fff;
}

.story-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.story-text {
  text-align: left;
  margin-top: 36px;
}

.story-text p {
  font-size: 1.02rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.story-text em {
  color: var(--green);
  font-style: italic;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 90px 0;
  background: var(--soft);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.testi {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
}

.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testi p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
}

.testi-name {
  margin-top: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.testi-role {
  font-size: 0.8rem;
  color: var(--gray);
}

@media(max-width:860px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:560px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

/* ── INTEGRATIONS ── */
.integrations {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.int-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.int-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray);
}

.int-item span {
  font-size: 1.4rem;
}

/* ── LOCATION ── */
.location {
  padding: 90px 0;
  background: #fff;
}

.location-content {
  max-width: 800px;
  margin: 0 auto;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  padding: 20px;
  background: var(--soft);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.location-detail-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.location-detail h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.location-detail p {
  font-size: 0.88rem;
  color: var(--gray);
}

/* ── WAITLIST / CONTACT ── */
.waitlist {
  padding: 90px 0;
  background: linear-gradient(150deg, var(--navy), #0e3d34);
}

.waitlist-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.waitlist-inner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
}

.waitlist-inner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
}

.wl-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.wl-row {
  display: flex;
  gap: 12px;
}

.wl-form input,
.wl-form select {
  flex: 1;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color .2s;
}

.wl-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.wl-form select {
  color: rgba(255, 255, 255, 0.7);
}

.wl-form select option {
  color: var(--navy);
  background: #fff;
}

.wl-form input:focus,
.wl-form select:focus {
  border-color: var(--green-l);
}

.wl-form button {
  padding: 17px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(90, 171, 63, 0.4);
}

.wl-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(90, 171, 63, 0.5);
}

.wl-success {
  display: none;
  margin-top: 20px;
  font-size: 1rem;
  color: var(--lime);
  font-weight: 600;
}

.wl-error {
  display: none;
  margin-top: 20px;
  font-size: 1rem;
  color: var(--coral);
  font-weight: 600;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

.wl-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.wl-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.founding-perks {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.perk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.perk span {
  font-size: 1rem;
}

@media(max-width:520px) {
  .wl-row {
    flex-direction: column;
  }
}

/* ── CTA BANNER (bottom of inner pages) ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(150deg, var(--navy), #0e3d34);
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-banner .btn-primary {
  font-size: 1.05rem;
  padding: 18px 38px;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 70px 0 36px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
}

.footer-brand h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-top: 14px;
  line-height: 1.3;
}

.footer-brand p {
  margin-top: 10px;
  font-size: 0.87rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--green-l);
}

.footer-col span {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-col .footer-coming-soon {
  margin-top: -15px;
  margin-bottom: 10px;
  font-style: italic;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 10px;
}

@media(max-width:860px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:500px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media(prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── MOBILE OVERLAY ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 45, 42, 0.4);
  z-index: 104;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── STORY PHOTO ── */
.story-photo {
  float: right;
  width: 300px;
  margin: 0 0 10px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(13, 45, 42, 0.12);
}

@media(max-width:520px) {
  .story-photo {
    float: none;
    display: block;
    margin: 0 auto 24px;
  }
}

/* ── TELEHEALTH FOCUS AREAS ── */
.telehealth-focus {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.focus-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.focus-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(13, 45, 42, 0.08);
  border-color: var(--green);
}

.focus-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(90, 171, 63, 0.1);
  border-radius: 14px;
}

.focus-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.focus-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

@media(max-width:520px) {
  .focus-item {
    flex-direction: column;
    gap: 16px;
  }
}

/* ── SERVICE TABS ── */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.tab-btn {
  padding: 14px 36px;
  border: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  background: rgba(245, 200, 66, 0.1);
  color: #b8920a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 14px 14px 0 0;
  cursor: pointer;
  transition: all .25s;
  margin-bottom: -2px;
  position: relative;
}

.tab-btn:hover {
  background: rgba(245, 200, 66, 0.2);
  color: #9a7a00;
}

.tab-btn.active {
  background: #fff;
  border-color: var(--border);
  border-bottom-color: #fff;
  color: var(--navy);
  box-shadow: 0 -3px 8px rgba(0,0,0,0.04);
}

.tab-panel {
  display: none;
  background: #fff;
  border: 2px solid var(--border);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 48px 40px;
}

.tab-panel.active {
  display: block;
}

@media(max-width:520px) {
  .tabs-nav {
    flex-direction: column;
    align-items: stretch;
    border-bottom: none;
  }

  .tab-btn {
    border-radius: 12px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--border);
    text-align: center;
  }

  .tab-btn.active {
    border-bottom-color: var(--green);
  }

  .tab-panel {
    border-top: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px 20px;
  }
}