/* ============================================================
   WellnessAIStudio — Inner Pages Shared CSS
   css/inner.css  (used by all pages/* HTML files)
   ============================================================ */

/* ── Page Hero (small, dark) ── */
.page-hero {
  background: var(--gradient-hero);
  padding: 140px 40px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -220px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(circle, rgba(74,124,89,0.22) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
}

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

.page-hero h1 strong {
  font-weight: 600;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 36px;
}

.page-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Split Hero (left content + right card) ── */
.page-hero-split {
  background: var(--gradient-hero);
  padding: 130px 40px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-split::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(74,124,89,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-split::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,160,32,0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.split-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.split-left .eyebrow { color: var(--sage-light); margin-bottom: 18px; }

.split-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.split-h1 em { color: var(--saffron); font-style: italic; }
.split-h1 strong { font-weight: 600; }

.split-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 32px;
}

.split-checks { list-style: none; margin-bottom: 36px; }
.split-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}
.split-check-icon {
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(74,124,89,0.25);
  border: 1px solid rgba(74,124,89,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--sage-light);
  margin-top: 1px;
}

.split-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Side Card */
.side-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ── Section Variants ── */
.section-white { background: var(--white); padding: var(--spacing-xl) 40px; }
.section-cream { background: var(--cream); padding: var(--spacing-xl) 40px; }
.section-dark  { background: var(--charcoal-soft); padding: var(--spacing-xl) 40px; }
.section-sage  { background: var(--sage-deep); padding: var(--spacing-xl) 40px; }

/* ── Feature Detail Strip (alternating 2-col) ── */
.feat-strip {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feat-strip.flip { direction: rtl; }
.feat-strip.flip > * { direction: ltr; }

.feat-strip-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin-bottom: 22px;
}

.feat-strip-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--sage); margin-bottom: 12px;
}

.feat-strip-eyebrow-light { color: var(--sage-light); }

.feat-strip-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300; line-height: 1.18;
  color: var(--charcoal); margin-bottom: 16px;
}
.feat-strip-title em { color: var(--sage); font-style: italic; }
.feat-strip-title-light { color: var(--white); }
.feat-strip-title-light em { color: var(--saffron); }

.feat-strip-desc {
  font-size: 15px; color: var(--mist); line-height: 1.75;
  margin-bottom: 24px; font-weight: 300;
}
.feat-strip-desc-light { color: rgba(255,255,255,0.48); }

.feat-strip-list { list-style: none; margin-bottom: 28px; }
.feat-strip-list li {
  font-size: 14px; color: var(--text-body);
  padding: 9px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.4;
}
.feat-strip-list li:last-child { border: none; }
.feat-strip-list-light li { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.08); }
.fsl-tick { color: var(--sage); flex-shrink: 0; font-size: 14px; }
.fsl-tick-gold { color: var(--saffron); flex-shrink: 0; font-size: 14px; }

/* ── Mock Card / Visual ── */
.mock-card {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: 28px;
  min-height: 320px;
  position: relative; overflow: hidden;
}
.mock-card::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(74,124,89,0.18), transparent 70%);
  border-radius: 50%;
}
.mock-card-head {
  font-size: 10px; color: rgba(255,255,255,0.25);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px;
}
.mock-row {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.05); border-radius: 10px;
  padding: 11px 14px; margin-bottom: 9px;
}
.mock-label { font-size: 12px; color: rgba(255,255,255,0.4); }
.mock-val { font-size: 15px; font-weight: 700; color: var(--white); }
.mock-badge {
  font-size: 10px; padding: 3px 8px; border-radius: 20px;
  background: rgba(74,124,89,0.3); color: var(--sage-light); font-weight: 700; margin-left: 8px;
}
.mock-badge-gold { background: rgba(232,160,32,0.25); color: var(--saffron-warm); }

/* ── Stat Cards ── */
.stat-grid-4 {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  max-width: var(--max-width); margin: 0 auto;
}
.stat-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; border: 1px solid var(--border);
}
.stat-card-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}
.stat-num {
  font-family: var(--font-display); font-size: 48px; font-weight: 600;
  color: var(--sage); line-height: 1; margin-bottom: 8px;
}
.stat-num-light { color: var(--saffron); }
.stat-label { font-size: 14px; color: var(--mist); line-height: 1.5; }
.stat-label-light { color: rgba(255,255,255,0.4); }

/* ── Steps / Process ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  max-width: var(--max-width); margin: 0 auto; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 36px; left: 60px; right: 60px; height: 2px;
  background: linear-gradient(to right, var(--sage-pale), var(--sage), var(--sage-pale));
}
.step {
  text-align: center; padding: 0 20px; position: relative;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--gradient-sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; color: var(--white);
  margin: 0 auto 20px;
  position: relative; z-index: 2;
  font-family: var(--font-display);
}
.step-title { font-size: 16px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.step-desc { font-size: 13px; color: var(--mist); line-height: 1.65; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--gradient-warm);
  padding: 72px 40px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 50px);
  font-weight: 300; color: var(--white); margin-bottom: 16px; line-height: 1.2;
}
.cta-banner h2 em { font-style: italic; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.72); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white-solid { background: var(--white); color: var(--clay); font-weight: 700; padding: 16px 36px; border-radius: var(--radius-sm); font-size: 15px; transition: all 0.2s; }
.btn-white-solid:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.18); }

/* ── Testimonial Grid ── */
.testi-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: var(--max-width); margin: 0 auto; }
.testi-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
}
.testi-card-dark { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.10); }
.testi-stars { color: var(--saffron); font-size: 13px; margin-bottom: 14px; }
.testi-quote {
  font-family: var(--font-display); font-size: 17px; font-style: italic;
  color: var(--charcoal); line-height: 1.65; margin-bottom: 22px; font-weight: 300;
}
.testi-quote-light { color: rgba(255,255,255,0.75); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.testi-name { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.testi-name-light { color: var(--white); }
.testi-studio { font-size: 11px; color: var(--mist); margin-top: 2px; }
.testi-studio-light { color: rgba(255,255,255,0.35); }
.testi-result {
  display: inline-block; margin-top: 14px;
  background: rgba(74,124,89,0.10); color: var(--sage-deep);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 12px; border-radius: var(--radius-full);
}

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item-dark { border-color: rgba(255,255,255,0.08); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 0;
  font-size: 16px; font-weight: 500; color: var(--charcoal);
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-body); transition: color 0.2s;
}
.faq-q:hover { color: var(--sage); }
.faq-q-light { color: rgba(255,255,255,0.75); }
.faq-q-light:hover { color: var(--saffron); }
.faq-icon { font-size: 20px; color: var(--sage); flex-shrink: 0; transition: transform 0.3s; }
.faq-icon-light { color: var(--saffron); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: 15px; color: var(--text-light); line-height: 1.75; }
.faq-a-light { color: rgba(255,255,255,0.48); }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }

/* ── Card Grid ── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: var(--max-width); margin: 0 auto; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: var(--max-width); margin: 0 auto; }

.info-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
  transition: all var(--transition-base);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.info-card-dark { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.09); }
.info-card-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(74,124,89,0.3); }

.ic-icon { font-size: 32px; margin-bottom: 16px; }
.ic-title { font-size: 17px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.ic-title-light { color: var(--white); }
.ic-desc { font-size: 14px; color: var(--mist); line-height: 1.65; }
.ic-desc-light { color: rgba(255,255,255,0.4); }

/* ── Breadcrumb ── */
.breadcrumb {
  background: rgba(255,255,255,0.05);
  padding: 12px 40px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--saffron); }
.breadcrumb-sep { font-size: 10px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .split-inner { grid-template-columns: 1fr; gap: 40px; }
  .feat-strip { grid-template-columns: 1fr; gap: 36px; }
  .feat-strip.flip { direction: ltr; }
  .stat-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .testi-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 20px 60px; }
  .page-hero-split { padding: 110px 20px 60px; }
  .section-white, .section-cream, .section-dark, .section-sage { padding: 60px 20px; }
  .cta-banner { padding: 56px 20px; }
  .card-grid-3, .card-grid-2, .stat-grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .breadcrumb { padding: 12px 20px; }
}
