/* =============================================
   Cooper Mental Health & Wellness — Main Styles
   ============================================= */

:root {
  --purple-dark:   #4A1A8C;
  --purple-mid:    #6B29B8;
  --purple-light:  #9B59D4;
  --purple-pale:   #F3EEFF;
  --black:         #111111;
  --charcoal:      #2D2D2D;
  --gray-dark:     #555555;
  --gray-mid:      #888888;
  --gray-light:    #F5F5F7;
  --white:         #FFFFFF;
  --accent:        #7C3AED;
  --border:        #E0E0E0;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.16);
  --radius:        10px;
  --radius-lg:     18px;
  --transition:    0.25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
}

p { color: var(--gray-dark); }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(107,41,184,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,41,184,0.45);
}

.btn-outline {
  border: 2px solid var(--purple-mid);
  color: var(--purple-mid);
  background: transparent;
}

.btn-outline:hover {
  background: var(--purple-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--purple-dark);
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-dark);
  max-width: 680px;
  line-height: 1.75;
}

.tag {
  display: inline-block;
  background: var(--purple-pale);
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-logo-text {
  line-height: 1.2;
}

.nav-logo-text .name {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.3px;
}

.nav-logo-text .tagline {
  font-size: 11px;
  font-weight: 600;
  color: var(--purple-mid);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple-mid);
  background: var(--purple-pale);
}

.nav-cta {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark)) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  box-shadow: 0 3px 12px rgba(107,41,184,0.3);
}

.nav-cta:hover {
  background: var(--purple-dark) !important;
  box-shadow: 0 5px 18px rgba(107,41,184,0.4) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  color: var(--white);
  padding: 14px 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.trust-item .check {
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(155deg, var(--purple-pale) 0%, #EDE4FF 35%, #F8F4FF 65%, var(--white) 100%);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(155,89,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { max-width: 580px; }

.hero-content h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--black);
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-dark);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-proof {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(107,41,184,0.15);
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-item strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-item span {
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 500;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(107,41,184,0.1);
}

.hero-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-pale), #DDD0FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.hero-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.hero-card p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* =============================================
   WHAT MAKES US DIFFERENT
   ============================================= */
.different { background: var(--white); }

.different-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.diff-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--purple-mid), var(--purple-dark));
  border-radius: 4px 0 0 4px;
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(107,41,184,0.2);
}

.diff-card .icon {
  font-size: 32px;
  margin-bottom: 18px;
}

.diff-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--black);
}

.diff-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-dark);
}

/* =============================================
   CONDITIONS
   ============================================= */
.conditions {
  background: linear-gradient(160deg, var(--purple-pale) 0%, #F0E8FF 50%, var(--white) 100%);
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.condition-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107,41,184,0.08);
  transition: all var(--transition);
}

.condition-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(107,41,184,0.2);
}

.condition-card .cond-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.condition-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.condition-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-dark);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16.6%;
  right: 16.6%;
  height: 2px;
  background: linear-gradient(to right, var(--purple-light), var(--purple-mid), var(--purple-dark));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(107,41,184,0.35);
}

.step h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* =============================================
   MEET YOUR PROVIDER
   ============================================= */
.provider {
  background: var(--gray-light);
}

.provider-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
}

.provider-photo-wrap {
  position: relative;
}

.provider-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--purple-pale), #DDD0FF);
  display: flex;
  align-items: center;
  justify-content: center;
}

.provider-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.provider-photo-placeholder {
  text-align: center;
  color: var(--purple-mid);
}

.provider-photo-placeholder svg {
  width: 100px;
  height: 100px;
  fill: var(--purple-light);
  margin-bottom: 16px;
}

.provider-photo-placeholder p {
  font-size: 14px;
  color: var(--purple-mid);
  font-weight: 600;
}

.provider-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 140px;
}

.provider-badge strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.provider-badge span {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.4;
}

.provider-content .section-label { margin-bottom: 8px; }

.provider-content h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 6px;
}

.provider-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}

.cred-tag {
  background: var(--purple-pale);
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.provider-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-dark);
  margin-bottom: 16px;
}

/* =============================================
   INSURANCE / PRICING PREVIEW
   ============================================= */
.pricing-preview {
  background: linear-gradient(155deg, var(--purple-dark) 0%, var(--purple-mid) 60%, #8B47D8 100%);
  color: var(--white);
  padding: 90px 0;
}

.pricing-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pricing-preview-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--white);
  margin-bottom: 16px;
}

.pricing-preview-content p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.8;
}

.price-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
}

.price-card .price-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.price-card .price-amt {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
}

/* =============================================
   FINAL CTA (Home)
   ============================================= */
.final-cta {
  background: var(--white);
  padding: 90px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 18px;
  line-height: 1.2;
}

.final-cta h2 span {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta p {
  font-size: 17px;
  color: var(--gray-dark);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo img { height: 44px; }

.footer-brand .footer-logo-text .name {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.footer-brand .footer-logo-text .tagline {
  font-size: 10px;
  color: var(--purple-light);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 320px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--purple-light); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-item .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--purple-light);
}

.footer-contact-item .value {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(155deg, var(--purple-dark) 0%, var(--purple-mid) 70%, #8B47D8 100%);
  padding: 80px 0 70px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story { background: var(--white); }

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: start;
}

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--purple-pale), #DDD0FF);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 100px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .name-block {
  margin-bottom: 32px;
}

.about-content h1 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 8px;
}

.about-content .about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.about-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.value-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 22px 20px;
  border-left: 3px solid var(--purple-mid);
}

.value-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 13px;
  color: var(--gray-mid);
  margin: 0;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-list { background: var(--white); }

.service-block {
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child { border-bottom: none; }

.service-block-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.service-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--purple-pale), #DDD0FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 20px;
  border: 1px solid rgba(107,41,184,0.15);
}

.service-sidebar h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-dark);
  margin-bottom: 18px;
}

.service-note {
  background: var(--purple-pale);
  border: 1px solid rgba(107,41,184,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--purple-dark);
  font-style: italic;
  margin-top: 8px;
}

/* =============================================
   PRICING PAGE
   ============================================= */
.pricing-section { background: var(--white); }

.pricing-intro {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}

.pricing-intro h2 { margin-bottom: 16px; }

.pricing-intro p {
  font-size: 17px;
  color: var(--gray-dark);
  line-height: 1.8;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 760px;
  margin: 0 auto 60px;
}

.pricing-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 2px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(155deg, var(--purple-dark), var(--purple-mid));
  border-color: var(--purple-mid);
  color: var(--white);
}

.pricing-card:not(.featured):hover {
  border-color: var(--purple-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card .visit-type {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 16px;
}

.pricing-card.featured .visit-type {
  color: rgba(255,255,255,0.75);
}

.pricing-card .price {
  font-size: 58px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card.featured .price {
  color: var(--white);
}

.pricing-card .price sup {
  font-size: 28px;
  font-weight: 700;
  vertical-align: super;
}

.pricing-card .duration {
  font-size: 14px;
  color: var(--gray-mid);
  margin-bottom: 24px;
}

.pricing-card.featured .duration {
  color: rgba(255,255,255,0.75);
}

.pricing-card .price-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-dark);
}

.pricing-card.featured .price-desc {
  color: rgba(255,255,255,0.85);
}

/* “What’s included” panels — pricing page (single column on small screens) */
.pricing-included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 520px;
  margin: 0 auto;
}

.pricing-included-card {
  text-align: center;
}

.pricing-included-icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 16px;
}

@media (min-width: 961px) {
  .pricing-included-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
  }
}

.insurance-section {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.insurance-section-lead {
  margin-bottom: 56px;
}

.insurance-section h2.section-title {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 16px;
}

.insurance-section h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.insurance-section p {
  font-size: 16px;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item .ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-item .ci-text h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 4px;
}

.contact-item .ci-text p {
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
  margin: 0;
}

.booking-box {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  border: 1px solid var(--border);
}

.booking-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.booking-box > p {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 28px;
}

.booking-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.booking-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
}

.booking-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.states-note {
  background: var(--purple-pale);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--purple-dark);
  line-height: 1.6;
  border: 1px solid rgba(107,41,184,0.15);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .different-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .provider-inner { grid-template-columns: 1fr; }
  .provider-photo-wrap { max-width: 340px; }
  .pricing-preview-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 320px; }
  .service-block-inner { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .section-pad { padding: 64px 0; }
  .conditions-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .trust-bar-inner { gap: 10px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .provider-badge { bottom: -10px; right: 10px; }
}
