/* =============================================
   Cooper Mental Health & Wellness — Main Styles
   ============================================= */

:root {
  --purple-dark:   #4A1A8C;
  --purple-mid:    #6B29B8;
  --purple-light:  #9B59D4;
  --purple-pale:   #F3EEFF;
  --black:         #1A1118;
  --charcoal:      #352B3A;
  --gray-dark:     #5A5065;
  --gray-mid:      #8C8493;
  --gray-light:    #FAF8FC;
  --warm-cream:    #FFFCF8;
  --warm-section:  #FBF8FF;
  --white:         #FFFFFF;
  --accent:        #7C3AED;
  --border:        #EAE4F0;
  --shadow-sm:     0 2px 10px rgba(74,26,140,0.07);
  --shadow-md:     0 4px 24px rgba(74,26,140,0.10);
  --shadow-lg:     0 8px 44px rgba(74,26,140,0.14);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--warm-cream);
  line-height: 1.75;
  font-size: 16px;
}

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

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

h1, h2, h3, h4, h5 {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
}

/* Keep UI elements in Inter for crispness */
.nav-links a,
.btn,
.section-label,
.tag,
.trust-item,
.cred-tag,
.badge-name,
.badge-cred,
.visit-type,
.label,
.footer-col h4,
.proof-item span,
.step-num {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

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;
  border-radius: 10px;
}

.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, #FAF6FF 0%, #EEE4FF 30%, #F5F0FF 65%, #FAF8FC 100%);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

/* Organic blob shape */
.hero::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -180px;
  width: 640px;
  height: 640px;
  background: radial-gradient(ellipse at 60% 40%, rgba(155,89,212,0.13) 0%, rgba(107,41,184,0.06) 50%, transparent 75%);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
  pointer-events: none;
  z-index: 0;
}

/* Grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23grain)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.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-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--purple-pale), #DDD0FF);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.14);
  white-space: nowrap;
  border: 1px solid rgba(107,41,184,0.15);
}

.hero-photo-badge .badge-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.3;
  letter-spacing: 0.1px;
}

.hero-photo-badge .badge-cred {
  font-size: 12px;
  color: var(--purple-mid);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* =============================================
   WHAT MAKES US DIFFERENT
   ============================================= */
.different { background: var(--warm-cream); }

.different-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.diff-card {
  background: var(--warm-cream);
  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 — removed, replaced by .svg-icon-wrap */

.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, #F5EEFF 0%, #EFE6FF 40%, var(--warm-section) 100%);
}

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

.condition-card {
  background: var(--warm-cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  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 — removed, replaced by .svg-icon-wrap */

.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(--warm-cream); }

.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(--warm-section);
}

.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; border-radius: 10px; }

.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-photo-wrap {
    order: -1; /* photo appears above text on tablet/mobile */
  }
  .hero-photo {
    max-width: 320px;
    aspect-ratio: 3/4;
  }
  .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; }
}

/* =============================================
   ANIMATIONS
   ============================================= */

/* ---- Keyframes ---- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes ripple {
  0%   { transform: scale(0); opacity: 0.35; }
  100% { transform: scale(1); opacity: 0; }
}

@keyframes navIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes trustSlide {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---- Navbar scroll elevation ---- */
.site-header {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
}

/* ---- Nav links entrance ---- */
.nav-links a {
  animation: navIn 0.4s ease both;
}
.nav-links li:nth-child(1) a { animation-delay: 0.05s; }
.nav-links li:nth-child(2) a { animation-delay: 0.10s; }
.nav-links li:nth-child(3) a { animation-delay: 0.15s; }
.nav-links li:nth-child(4) a { animation-delay: 0.20s; }
.nav-links li:nth-child(5) a { animation-delay: 0.25s; }

/* ---- Trust bar item stagger ---- */
.trust-item {
  animation: trustSlide 0.5s ease both;
}
.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }

/* ---- Hero entrance (JS adds .hero-animate--visible) ---- */
.hero-animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.hero-animate--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Hero photo — one-time entrance only (no distracting loop) ---- */
.hero-photo-wrap {
  animation: fadeSlideUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}

/* ---- Scroll reveal (JS adds .sr-hidden / .sr-visible) ---- */
.sr-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
              transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.sr-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Button shimmer on hover ---- */
.btn-primary {
  background-size: 200% auto;
  background-image: linear-gradient(
    135deg,
    var(--purple-mid) 0%,
    var(--purple-dark) 40%,
    #9B47E8 60%,
    var(--purple-mid) 100%
  );
  transition: background-position 0.6s ease, transform 0.25s ease,
              box-shadow 0.25s ease;
}
.btn-primary:hover {
  background-position: right center;
}

/* ---- Button ripple ---- */
.btn {
  position: relative;
  overflow: hidden;
}
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  pointer-events: none;
  animation: ripple 0.55s ease-out forwards;
}

/* ---- Card hover — unified lift + glow ---- */
.diff-card,
.condition-card,
.value-card,
.pricing-card:not(.featured) {
  cursor: pointer;
}

.diff-card:hover,
.condition-card:hover,
.pricing-card:not(.featured):hover,
.value-card:hover,
.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(107,41,184,0.15);
}

/* ---- Section label fade-in on scroll ---- */
.section-label {
  display: inline-block;
}

/* ---- Reduced motion: disable everything ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-animate         { opacity: 1; transform: none; }
  .sr-hidden            { opacity: 1; transform: none; }
  .hero-photo-wrap      { animation: none; }
}

/* =============================================
   WELCOME QUOTE
   ============================================= */
.welcome-quote {
  background: linear-gradient(135deg, #3A1270 0%, #6B29B8 60%, #7E35CC 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.welcome-quote::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.welcome-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.welcome-quote-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.welcome-quote-mark {
  font-family: 'Lora', Georgia, serif;
  font-size: 100px;
  line-height: 0.6;
  color: rgba(255,255,255,0.2);
  margin-bottom: 16px;
  display: block;
}

.welcome-quote-text {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  line-height: 1.65;
  margin: 0 0 32px 0;   /* reset browser blockquote default (40px side margins) */
  padding: 0;
}

.welcome-quote-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.welcome-quote-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid rgba(255,255,255,0.4);
}

.welcome-quote-attribution div {
  text-align: left;
}

.welcome-quote-attribution strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.welcome-quote-attribution span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* =============================================
   LUCIDE ICON WRAPPERS
   ============================================= */
.svg-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple-pale), #DDD0FF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(107,41,184,0.12);
  flex-shrink: 0;
}

/* Lucide renders <i> → <svg>. Target both. */
.svg-icon-wrap svg,
.svg-icon-wrap i svg {
  width: 26px;
  height: 26px;
  stroke: var(--purple-mid);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

/* Contact page icons */
.ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg,
.ci-icon i svg {
  width: 22px;
  height: 22px;
  stroke: var(--purple-mid);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

/* Service page sidebar — larger icons */
.service-icon-wrap .svg-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 0;
}

.service-icon-wrap .svg-icon-wrap svg,
.service-icon-wrap .svg-icon-wrap i svg {
  width: 38px;
  height: 38px;
}

/* About value cards — small icons */
.value-card .svg-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.value-card .svg-icon-wrap svg,
.value-card .svg-icon-wrap i svg {
  width: 20px;
  height: 20px;
}
