/* Project Nithya — Health Guidance page styles */

/* ── HERO ── */
.page-hero {
  background: linear-gradient(168deg, #041e42 0%, #083568 40%, #0d4a90 65%, #1464b4 100%);
}
.hero-fade { height: 200px; }
.ho1 { width:480px; height:240px; background:rgba(98,190,240,0.14); top:12%; left:-8%; }
.ho2 { width:400px; height:200px; background:rgba(98,190,240,0.10); bottom:12%; right:-6%; }
.ho3 { width:550px; height:280px; background:rgba(10,55,145,0.4); top:20%; right:5%; }
.hero-eyebrow { color: var(--blue); }
.hero-title em { color: var(--blue); }
.hero-anchor { color:var(--blue); border-color:rgba(98,190,240,.35); }
.hero-anchor:hover { background:rgba(98,190,240,.1); border-color:rgba(98,190,240,.65); }

/* ── REACH SECTION ── */
.reach-section {
  background: linear-gradient(168deg, #041e42 0%, #083568 42%, #0d4888 70%, #0a3070 100%);
}
.rbo1 { width:600px; height:300px; background:rgba(98,190,240,0.10); top:-60px; left:-100px; }
.rbo2 { width:500px; height:250px; background:rgba(249,200,213,0.07); bottom:-40px; right:-80px; }
.reach-badge { color:var(--blue); border-color:rgba(98,190,240,.28); background:rgba(98,190,240,.07); }
.reach-title em { color: var(--blue); }
.reach-card { border-color: rgba(98,190,240,.2); }
.reach-form .fi:focus { border-color:rgba(98,190,240,.5); background:rgba(245,240,232,.10); }
.btn-reach { background:var(--blue-mid); color:#fff; box-shadow:0 8px 32px rgba(20,121,199,.35); }
.success-icon { background:rgba(98,190,240,.15); border:1.5px solid rgba(98,190,240,.35); color:var(--blue); }
.step-num { color: rgba(20,121,199,.18); }

/* ── FEATURE BLOCK ── */
.feature-img-wrap {
  background: linear-gradient(145deg,rgba(98,190,240,.18) 0%,rgba(14,80,185,.1) 100%);
  border: 1px solid rgba(98,190,240,.26);
}
.feature-text blockquote { border-left-color: rgba(20,121,199,.42); }

/* ── RIGHTS STRIP ── */
.rights-strip {
  margin-top:72px; padding:42px 48px;
  background:rgba(98,190,240,.08); border:1px solid rgba(98,190,240,.22); border-radius:20px;
}
.rights-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:24px; }
.right-item { display:flex; gap:14px; align-items:flex-start; }
.right-dot { flex-shrink:0; width:7px; height:7px; border-radius:50%; background:var(--blue-mid); margin-top:6px; }
.right-item h4 { font-size:14px; font-weight:400; color:var(--navy); margin-bottom:3px; }
.right-item p { font-size:12.5px; font-weight:300; color:#484E72; line-height:1.65; }

/* ── SCROLL REVEAL CARDS ── */
.sc-section { overflow: hidden; }

.sc-intro {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 48px 56px;
  text-align: center;
}

.sc-card {
  display: flex;
  min-height: 72vh;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-72px);
  transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1);
}
.sc-card--flip {
  flex-direction: row-reverse;
  transform: translateX(72px);
}
.sc-card.sc-revealed { opacity: 1; transform: translateX(0); }

.sc-image {
  flex: 0 0 55%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.sc-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(4,30,66,.22) 0%, rgba(0,0,0,.06) 100%);
}
.sc-card--flip .sc-image::after {
  background: linear-gradient(-120deg, rgba(4,30,66,.22) 0%, rgba(0,0,0,.06) 100%);
}
.sc-num {
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: rgba(255,255,255,.18);
  user-select: none;
  pointer-events: none;
  z-index: 2;
}

.sc-text {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.sc-navy  { background: #041e42; color: var(--cream); }
.sc-cream { background: var(--cream); color: #041e42; }
.sc-deep  { background: #071b38; color: var(--cream); }
.sc-blush { background: #fdf1f5; color: #041e42; }

.sc-wm {
  position: absolute;
  right: -16px; bottom: -24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 190px; font-weight: 300; font-style: italic; line-height: 1;
  user-select: none; pointer-events: none;
}
.sc-navy .sc-wm, .sc-deep .sc-wm { color: #fff; opacity: .055; }
.sc-cream .sc-wm, .sc-blush .sc-wm { color: #041e42; opacity: .055; }

.sc-label {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: .52;
}

.sc-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.1;
  margin-bottom: 18px;
}
.sc-navy  .sc-heading,
.sc-deep  .sc-heading { color: var(--cream); }
.sc-cream .sc-heading,
.sc-blush .sc-heading { color: #041e42; }
.sc-heading em { font-style: italic; opacity: .7; }

.sc-pull {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.62;
  margin-bottom: 16px;
}
.sc-navy  .sc-pull,
.sc-deep  .sc-pull { color: var(--pink); opacity: .88; }
.sc-cream .sc-pull,
.sc-blush .sc-pull { color: #b85270; }

.sc-body {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 28px;
  opacity: .76;
  max-width: 420px;
}

.sc-cta {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .07em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  opacity: .82;
  width: fit-content;
  transition: opacity .2s, gap .2s;
}
.sc-cta:hover { opacity: 1; gap: 10px; }
.sc-navy  .sc-cta,
.sc-deep  .sc-cta { color: var(--blue); }
.sc-cream .sc-cta,
.sc-blush .sc-cta { color: #041e42; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .rights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .sc-card,
  .sc-card.sc-card--flip { flex-direction: column; min-height: auto; transform: translateY(40px); }
  .sc-card.sc-revealed    { transform: translateY(0); }
  .sc-image  { flex: none; height: 260px; }
  .sc-text   { flex: none; padding: 2.5rem 1.5rem; }
  .sc-num    { font-size: 72px; }
  .sc-intro  { padding: 48px 24px 32px; }
}
