/* ══════════════════════════════════════════
   HERO IMAGE DROP-IN ANIMATION
══════════════════════════════════════════ */
@keyframes heroImgDrop {
  0%   { opacity: 0; transform: translateY(-60px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-img-drop {
  opacity: 0;
  animation: heroImgDrop 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-img-drop--1 { animation-delay: 0.15s; }
.hero-img-drop--2 { animation-delay: 0.50s; }

/* ══════════════════════════════════════════
   CSS CUSTOM PROPERTIES (Design Tokens)
══════════════════════════════════════════ */
:root {
  /* Brand colours */
  --c-purple:      #532989;
  --c-purple2:     #8b5cf6;
  --c-purple-light:#c4b5fd;
  --c-orange:      #e76616;
  --c-gold:        #f4a623;
  --c-dark:        #1a0040;
  --c-muted:       #476288;
  --c-body:        #000000;
  --c-light-bg:    #f9f7ff;
  --c-white:       #ffffff;

  /* Gradients */
  --grad-purple:   linear-gradient(135deg, #532989, #8b5cf6);
  --grad-orange:   linear-gradient(135deg, #e76616, #f4a623);
  --grad-hero:     linear-gradient(90deg, #311750 0%, #532989 55%, #562a8d 100%);

  /* Borders */
  --border-purple: 1px solid rgba(139,92,246,.18);
  --border-purple-strong: 1px solid rgba(139,92,246,.35);

  /* Shadows */
  --shadow-card:   0 2px 12px rgba(83,41,137,.07), 0 8px 32px rgba(83,41,137,.06);
  --shadow-card-hover: 0 8px 32px rgba(83,41,137,.13), 0 20px 60px rgba(83,41,137,.08);
  --shadow-purple: 0 4px 16px rgba(83,41,137,.35);

  /* Radii */
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Transitions */
  --transition: .25s ease;
  --transition-slow: .35s ease;
}

/* ══════════════════════════════════════════
   SHARED UTILITY CLASSES
   Use these everywhere - do NOT repeat
   these values with section-specific names
══════════════════════════════════════════ */

/* ── Layout ── */
.section-pad    { padding: 60px 0; }
.z-1 { position: relative; z-index: 1; }

/* ── Typography - Headings ── */
/* Primary section heading (dark text, light bg) */
/* ── Typography utilities ── */
/* Use .sec-heading for section headings (dark bg: add .text-white)
   Use .sec-sub for section subtext  (dark bg: add .text-white-50)
   Use Bootstrap .fw-bold / .fs-* for card-level text */
.u-body-sm { font-size: 13.5px; color: var(--c-muted); line-height: 1.65; margin: 0; }

/* ── Eyebrow pill ── */
/* Default (purple on light bg) */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ede9fe;
  border: 1px solid #c4b5fd;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--c-purple);
  margin-bottom: 14px;
}
.sec-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-purple);
}
/* Eyebrow on dark bg */
.sec-eyebrow--dark {
  background: rgba(139,92,246,.15);
  border-color: rgba(139,92,246,.3);
  color: var(--c-purple-light);
}
.sec-eyebrow--dark .sec-eyebrow-dot { background: var(--c-purple2); }
/* Eyebrow on tinted light bg (testimonials) */
.sec-eyebrow--tint {
  background: rgba(139,92,246,.08);
  border-color: rgba(139,92,246,.2);
  color: var(--c-purple);
}

/* ── Section heading ── */
.sec-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(27px, 3.8vw, 44px);
  font-weight: 800;
  color: var(--c-dark);
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.sec-heading span { color: var(--c-purple); }

 

/* ── Cards ── */
.u-card {
  background: var(--c-white);
  border: var(--border-purple);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.u-card:hover {
  border-color: rgba(139,92,246,.4);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.u-card--dark {
  background: #1c1033;
  border: var(--border-purple);
}

/* ── Labels / tags (inline pill) ── */
.u-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.u-tag--purple { background: rgba(83,41,137,.10); color: var(--c-purple); }
.u-tag--purple-dark { background: rgba(139,92,246,.15); color: var(--c-purple-light); }
.u-tag--green  { background: rgba(16,185,129,.12);  color: #059669; }
.u-tag--white  { background: rgba(255,255,255,.15);  color: #fff; }

/* ── Name + role rows (used in testimonials, author rows) ── */
.u-author-name { font-size: 13px; font-weight: 700; color: var(--c-dark); }
.u-author-role { font-size: 11px; color: rgba(26,0,64,.45); margin-top: 1px; }
.u-author-name--light { color: var(--c-white); }
.u-author-role--light { color: rgba(255,255,255,.4); }

/* ── Avatar circle ── */
.u-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--c-white);
  flex-shrink: 0;
}

/* ── Gradient text ── */
.u-grad-text {
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Step/label caps ── */
.u-label-caps {
  font-size: .65rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 4px; display: block;
}
.u-label-caps--orange { color: var(--c-orange); }
.u-label-caps--muted  { color: var(--c-muted); }

/* ── Form field shared style (modal etc.) ── */
.u-field {
  border-radius: var(--radius-sm) !important;
  border: 1px solid rgba(139,92,246,.25) !important;
  font-size: 14px !important;
}
.u-label {
  font-size: 13px; font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 6px; display: block;
}

/* ── Divider / stat strip ── */
.u-stat-strip {
  border-top: 1px solid rgba(26,0,64,.08);
  padding: 36px 0;
  display: flex; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.u-stat-strip--dark { border-top-color: rgba(255,255,255,.07); }

.u-stat {
  flex: 1; min-width: 160px; max-width: 220px;
  text-align: center; padding: 12px 20px;
  border-right: 1px solid rgba(26,0,64,.08);
}
.u-stat--dark { border-right-color: rgba(255,255,255,.07); }
.u-stat:last-child { border-right: none; }

.u-stat-num {
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 800;
  line-height: 1; letter-spacing: -1px;
}
.u-stat-label {
  font-size: 12px; color: rgba(26,0,64,.45);
  margin-top: 5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .5px;
}
.u-stat-label--light { color: #ccc}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: "Bricolage Grotesque", sans-serif;
 
  overflow-x: hidden;
}

/* ══════════════════════
   HERO
══════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  isolation: isolate;
  background:
    radial-gradient(circle at bottom right,
      rgba(255,122,72,.18) 0%, rgba(255,122,72,.12) 12%,
      rgba(255,122,72,.06) 26%, rgba(255,122,72,.02) 40%,
      rgba(255,122,72,0) 58%),
    linear-gradient(90deg, #311750 0%, #532989 55%, #562a8d 100%);
}

/* Ripple rings */
.hero::after {
  content: "";
  position: absolute;
  top: 50%; right: -18%;
  transform: translateY(-50%);
  width: 1400px; height: 1400px;
  border-radius: 50%;
  z-index: -1;
  background: radial-gradient(circle,
    rgba(108,48,175,.18) 0%,   rgba(108,48,175,.18) 19.6%,
    rgba(124,61,196,0)   19.6%,rgba(124,61,196,0)   20.9%,
    rgba(143,77,223,.18) 21%,  rgba(124,61,196,0)   21.15%,
    rgba(124,61,196,0)   21.15%,rgba(124,61,196,0)  36.9%,
    rgba(143,77,223,.16) 37%,  rgba(124,61,196,0)   37.15%,
    rgba(124,61,196,0)   37.15%,rgba(124,61,196,0)  53.9%,
    rgba(143,77,223,.14) 54%,  rgba(124,61,196,0)   54.15%,
    rgba(124,61,196,0)   54.15%,rgba(124,61,196,0)  71.9%,
    rgba(143,77,223,.12) 72%,  rgba(124,61,196,0)   72.15%,
    rgba(124,61,196,0)   72.15%,rgba(124,61,196,0)  90.9%,
    rgba(143,77,223,.10) 91%,  rgba(124,61,196,0)   91.1%,
    transparent 100%
  );
}

/* ══════════════════════
   NAVBAR
══════════════════════ */
.navbar { padding: 10px 0; position: relative; z-index: 10; }
.navbar-brand { color:#fff; font-size:28px; font-weight:800; letter-spacing:.5px; }
.navbar-brand:hover { color:#fff; }
.nav-link { color:rgba(255,255,255,.82); margin-left:24px; font-weight:500; transition:.25s; }
.nav-link:hover { color:#fff; }

/* ══════════════════════
   HERO CONTENT
══════════════════════ */
.hero-content {
  min-height: calc(100vh - 80px);
  position: relative;
  z-index: 2;
  padding-top: 10px;
  padding-bottom: 40px;
}

/* ══════════════════════
   HEADLINE
══════════════════════ */
.hero-title {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

/* Clip mask for char reveal */
.hl-line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: .05em;
}

/* Service word styling */
.special-font {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  display: inline-block;
}
.service-word-child { color: #F4A623; }
.service-word-elder { color: #2dd4bf; }

/* Underline SVG - sits below the word */
.svc-underline-wrap {
  display: block;
  width: 0;           /* will be set by JS to match text width */
  height: 16px;
  margin-top: 2px;
  overflow: visible;
  transition: width .1s;
}
.svc-underline {
  width: 100%;
  height: 16px;
  display: block;
  overflow: visible;
}
.svc-underline path {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  transition: stroke .35s ease;
}
.underline-child { stroke: #F4A623; }
.underline-elder { stroke: #2dd4bf; }

/* Char split helpers */

/* ══════════════════════
   CAPTION
══════════════════════ */
.hero-text {
  color: rgba(255,255,255,.70);
  font-size: 17px;
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 30px;
}

/* ══════════════════════
   EXPLORE BUTTON
   uiverse loud-chicken-53
══════════════════════ */
.btn-explore {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 10px 0 24px;
  border-radius: 60px;
  background: #c94d00;
  border: 1.5px solid rgba(255,255,255,.18);
  cursor: pointer;
  font-size: .93rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
  overflow: hidden;
  transition: background .3s, border-color .3s, box-shadow .3s;
  text-decoration: none;
}
.btn-explore:hover {
  background: #d45a10;
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 0 0 4px rgba(231,102,22,.22), 0 8px 24px rgba(0,0,0,.25);
}
.btn-explore-fill {
  position: absolute; inset: 0;
  border-radius: 60px;
  background: linear-gradient(90deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.04) 100%);
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.btn-explore:hover .btn-explore-fill { transform: translateX(0); }
.btn-explore-label { position: relative; z-index: 2; white-space: nowrap; }
.btn-explore-arrow {
  position: relative; z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
  transition: border-color .3s, background .3s;
}
.btn-explore:hover .btn-explore-arrow {
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.22);
}
.btn-explore-arrow .arrow-cur,
.btn-explore-arrow .arrow-nxt {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s ease;
}
.btn-explore-arrow .arrow-cur { transform: translate(0,0); opacity:1; }
.btn-explore-arrow .arrow-nxt { transform: translate(-10px,10px); opacity:0; }
.btn-explore:hover .arrow-cur { transform: translate(12px,-12px); opacity:0; }
.btn-explore:hover .arrow-nxt { transform: translate(0,0); opacity:1; }
.btn-explore-arrow svg {
  width:14px; height:14px;
  fill:none; stroke:#fff;
  stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round;
}

/* ══════════════════════
   WATCH VIDEO BUTTON
══════════════════════ */
@keyframes playRipple {
  0%   { transform:translate(-50%,-50%) scale(1);   opacity:1; }
  100% { transform:translate(-50%,-50%) scale(2.8); opacity:0; }
}

.btn-row-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ══════════════════════
   PHONES COLUMN
══════════════════════ */
  

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 991px) {

  .hero::after {
    width: 800px; height: 800px;
    right: -30%; top: auto; bottom: -15%;
    transform: none;
  }

  /* ── mobile hero centering handled by Bootstrap col stacking ── */

  .hero-title { text-align: center; }

  .svc-underline-wrap { margin: 0 auto; display: block; }

  .hero-text { text-align: center; max-width: 100%; }

  .btn-row-hero { justify-content: center; }

 

  .navbar-collapse {
    background: rgba(40,15,85,.96);
    padding: 20px; border-radius:16px; margin-top:12px;
  }
  .nav-link { margin-left:0; margin-bottom:10px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: clamp(28px, 8vw, 38px); }
  .hero-text  { font-size: 15px; }
  
  .btn-explore { height:48px; padding: 0 8px 0 8px;font-size: 0.76rem; }}

  

/* ── HIW section background (moved from inline) ── */
.hiw-section { background: linear-gradient(180deg, #f7e3ff 0%, #ffffff 100%); }

/* ── Locality Modal ── */
.lm-content {
  border-radius: 20px;
  border: 1px solid rgba(139,92,246,.2);
  overflow: hidden;
}
.lm-header {
  background: var(--grad-purple);
  border: none;
  padding: 24px 28px;
}
.lm-title {
  color: var(--c-white);
  font-weight: 700; font-size: 1.2rem;
  margin-bottom: 4px;
}
.lm-subtitle {
  color: rgba(255,255,255,.75);
  font-size: 13px; margin: 0;
}
.lm-body { padding: 28px; background: var(--c-white); }
.lm-submit-btn {
  width: 100%; padding: 13px;
  background: var(--grad-purple);
  color: var(--c-white); border: none;
  border-radius: 12px; font-size: 15px;
  font-weight: 700; cursor: pointer;
  transition: opacity var(--transition);
}
.lm-submit-btn:hover { opacity: .88; }
.lm-success {
  margin-top: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 14px; text-align: center;
  color: #15803d; font-size: 14px; font-weight: 600;
}

 /* background:
    radial-gradient(
      ellipse at bottom center,
      rgba(245,181,128,0.95) 0%,
      rgba(245,181,128,0.65) 25%,
      rgba(245,181,128,0.25) 45%,
      rgba(245,181,128,0) 70%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255,132,120,0.55) 0%,
      rgba(255,132,120,0.25) 30%,
      rgba(255,132,120,0) 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255,150,140,0.5) 0%,
      rgba(255,150,140,0.2) 30%,
      rgba(255,150,140,0) 55%
    ),
    #efefef;*/
    background: linear-gradient(0deg,rgba(247, 227, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);

}

/* Decorative blobs */

/* ── Section header ── */
/* .hiw-eyebrow extends .sec-eyebrow - only overrides */
.hiw-eyebrow {
  background: rgba(255,255,255,0.72);
  border-color: rgba(244,166,35,0.40);
  backdrop-filter: blur(8px);
  color: #c05a00;
}
.hiw-eyebrow-dot { background: #e76616; }

/* .hiw-heading extends .sec-heading - only overrides */
.hiw-heading span { color: #e76616; }
 

/* ══════════════════════
   MAIN LAYOUT
   Uses Bootstrap row / col-lg-4 - no custom grid needed
══════════════════════ */

/* ══════════════════════
   STEP CARD
══════════════════════ */

/* Left steps align right-to-left */

/* icon box */

/* Step 1: apply */
/* Step 2: interview */
/* Step 3: train */
/* Step 4: work */

/* connector dot + line from icon toward phone */

/* Step text */

/* ══════════════════════
   CENTER PHONE MOCKUP
══════════════════════ */

/* Phone body */

/* Notch */
.hiw-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #1a0040;
  border-radius: 0 0 18px 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hiw-phone-notch-cam {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0a0020;
  border: 1.5px solid #2a1060;
}
.hiw-phone-notch-speaker {
  width: 36px; height: 4px;
  border-radius: 4px;
  background: #0a0020;
}

/* Video fill */
.hiw-phone-screen {
  width: 100%; height: 100%;
  position: relative;
  background: #0d0026;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Simulated video gradient bg */

/* App UI overlay on screen */

/* App header bar */

/* Status card */

/* Step progress on phone */
.hiw-app-step-circle.done {
  background: #34d399;
  color: #fff;
}
.hiw-app-step-circle.active {
  background: #f4a623;
  color: #fff;
  box-shadow: 0 0 10px rgba(244,166,35,0.5);
}
.hiw-app-step-circle.pending {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.15);
}
.hiw-app-step-label.active { color: #fff; font-weight: 600; }
.hiw-app-step-label.done { color: rgba(255,255,255,0.45); }

/* Vertical line between steps on phone */

/* Bottom pill button */

/* Play overlay */

/* Playing state - hide overlay */
.hiw-phone-wrap.playing .hiw-play-overlay { display: none; }
.hiw-phone-wrap.playing .hiw-phone-video-bg {
  animation: subtlePulse 4s ease-in-out infinite;
}
@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.88; }
}

/* Video element (hidden until playing) */
.hiw-phone-wrap.playing .hiw-video-el { display: block; }
.hiw-phone-wrap.playing .hiw-phone-ui { display: none; }
.hiw-phone-wrap.playing .hiw-video-el + .hiw-phone-ui { display: none; }

/* Glow ring below phone */

/* Floating badge on phone */

/* ══════════════════════
   RESPONSIVE
   Bootstrap col-lg-4 handles column stacking at <992px.
   Only tweak step direction & phone size below.
══════════════════════ */
@media (max-width: 991px) {
  /* On mobile both col sides stack - reset left-col mirror so steps read left→right */
}

@media (max-width: 600px) {
 
}

/* ─── TESTIMONIAL SECTION ─── */
.testi-section {
  background: linear-gradient(360deg, #f5f0ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
 
}

/* soft purple glow - lighter for light bg */
.testi-section::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* radial purple glow - subtle on light bg */
.testi-section::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139,92,246,.10) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* header text for light bg */
 
/* ─── 3-COLUMN SCROLL WRAPPER ─── */
.testi-cols-wrap {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  /* Fixed height window */
  height: 640px;
  overflow: hidden;
  /* fade top & bottom */
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to bottom,
    transparent 0%, black 10%, black 90%, transparent 100%);
}

/* Each column is a scroll track */
.testi-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
  height: max-content;
}

/* Col 1 scrolls DOWN (translateY 0 → -50%) */
.testi-col.col-down {
  animation: colDown 22s linear infinite;
}
/* Col 2 center - scrolls UP (translateY -50% → 0) */
.testi-col.col-up {
  animation: colUp 26s linear infinite;
}
/* Col 3 - scrolls DOWN slightly faster */
.testi-col.col-down2 {
  animation: colDown 19s linear infinite;
}

@keyframes colDown {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}
@keyframes colUp {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

/* Pause entire wrapper on hover */
.testi-cols-wrap:hover .testi-col {
  animation-play-state: paused;
}

/* ─── TESTIMONIAL CARD ─── */
.tc {
  background: #ffffff;
  border: 1px solid rgba(139,92,246,.15);
  border-radius: 16px;
  padding: 24px;
  flex-shrink: 0;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.tc:hover {
  border-color: rgba(139,92,246,.4);
  box-shadow: 0 4px 24px rgba(139,92,246,.12);
  transform: translateY(-2px);
}
/* top accent on hover */
.tc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #532989, #8b5cf6);
  opacity: 0; transition: opacity .3s;
}
.tc:hover::before { opacity: 1; }

/* Stars */
.tc-stars { display: flex; gap: 3px; margin-bottom: 13px; }
.tc-stars svg { width: 13px; height: 13px; fill: #f59e0b; }

/* Quote */
.tc-quote {
  font-size: 14px; line-height: 1.68;
  color: rgba(26,0,64,.72);
  margin-bottom: 18px;
  font-style: normal;
}

/* Author row */
.tc-author { display: flex; align-items: center; gap: 10px; }
.tc-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #532989, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.tc-name,
.tc-video-name { font-size: 13px; font-weight: 700; color: #1a0040; }
.tc-role,
.tc-video-role { font-size: 11px; color: rgba(26,0,64,.45); margin-top: 1px; }

/* ─── VIDEO CARD ─── */
.tc-video {
  background: #f5f0ff;
  border: 1px solid rgba(139,92,246,.18);
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.tc-video:hover {
  border-color: rgba(139,92,246,.4);
  box-shadow: 0 8px 32px rgba(139,92,246,.15);
  transform: translateY(-2px);
}

.tc-video:hover .tc-video-thumb { transform: scale(1.04); }

/* Gradient thumb placeholder */
.tc-video-thumb-ph {
  width: 100%; height: 190px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s ease;
}
.tc-video:hover .tc-video-thumb-ph { transform: scale(1.04); }

/* overlay + play */
.tc-video-overlay {
  position: absolute; top: 0; left: 0; right: 0; height: 190px;
  background: rgba(15,6,33,.25);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.tc-video:hover .tc-video-overlay { background: rgba(15,6,33,.45); }

.tc-play {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: transform .25s, background .25s;
}
.tc-video:hover .tc-play { transform: scale(1.1); background: #fff; }
.tc-play svg { width: 16px; height: 16px; fill: #532989; margin-left: 2px; }

/* Video meta */
.tc-video-meta {
  padding: 14px 18px 16px;
  background: #ffffff;
}
.tc-video-tag {
  display: inline-block;
  background: rgba(139,92,246,.1);
  color: #532989;
  font-size: .6rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 50px;
  margin-bottom: 7px;
  border: 1px solid rgba(139,92,246,.2);
}

/* ─── BOTTOM STATS STRIP - uses .u-stat-strip, .u-stat, .u-stat-num, .u-stat-label ─── */
/* Legacy aliases pointing to utility classes */

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .testi-cols-wrap {
    grid-template-columns: 1fr 1fr;
    height: 520px;
  }
  /* hide col 3 on tablet */
  .testi-col.col-down2 { display: none; }
  .testi-section { padding: 70px 0 0; }
}
@media (max-width: 576px) {
  .testi-cols-wrap {
    grid-template-columns: 1fr;
    height: 480px;
  }
  .testi-col.col-up { display: none; }
}

/* ── FAQ SECTION ── */
.faq-section {
 
  position: relative;
  overflow: hidden;
}
/* light variant */
.faq-section.faq-light {
  background: #f9f7ff;
}
/* dark variant */
.faq-section.faq-dark {
  background: #0a0418;
}

/* Floating decorative dots (reference image) */

/* inner card container (the white rounded card from reference) */

/* heading */
.faq-light .faq-card .sec-heading { color: #1a0040; }
.faq-dark  .faq-card .sec-heading { color: #fff; }
.faq-light .faq-card .sec-sub     { color: #64748b; margin-bottom: 40px; }
.faq-dark  .faq-card .sec-sub     { color: rgba(255,255,255,.5); margin-bottom: 40px; }

/* ── LEFT: category tabs ── */
/* light */
.faq-light .faq-tab:hover,
.faq-light .faq-tab.active {
  background: #fff;
  color: #1a0040;
  border-color: #e2d9f3;
  box-shadow: 0 2px 12px rgba(83,41,137,.08);
}
/* dark */
.faq-dark .faq-tab:hover,
.faq-dark .faq-tab.active {
  background: rgba(139,92,246,.12);
  color: #fff;
  border-color: rgba(139,92,246,.25);
}
.faq-light .faq-tab.active .faq-tab-arrow {
  background: #532989; color: #fff;
}
.faq-light .faq-tab:not(.active) .faq-tab-arrow {
  background: #f1eaf8; color: #532989;
}
.faq-dark .faq-tab.active .faq-tab-arrow {
  background: #532989; color: #fff;
}
.faq-dark .faq-tab:not(.active) .faq-tab-arrow {
  background: rgba(139,92,246,.15); color: #8b5cf6;
}

/* ── RIGHT: accordion ── */

.faq-panel { display: none; }
.faq-panel.active { display: block; }

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
}
.faq-dark .faq-item { border-bottom-color: rgba(255,255,255,.07); }

/* open item highlight */
.faq-item.open {
  border-radius: 12px;
  margin-bottom: 4px;
  border-bottom: none;
}
.faq-light .faq-item.open {
  background: #f9f7ff;
  border: 1px solid #e2d9f3;
}
.faq-dark .faq-item.open {
  background: rgba(139,92,246,.08);
  border: 1px solid rgba(139,92,246,.2);
}

.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 18px;
  font-size: 14px; font-weight: 600;
  text-align: left; transition: color .2s;
  gap: 12px;
}
.faq-light .faq-q { color: #1a0040; }
.faq-dark  .faq-q { color: rgba(255,255,255,.85); }

.faq-q-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 16px; font-weight: 300; line-height: 1;
  transition: transform .3s, background .2s;
}
.faq-light .faq-q-icon { background: #f0ebfa; color: #532989; }
.faq-dark  .faq-q-icon { background: rgba(139,92,246,.15); color: #c4b5fd; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-light .faq-item.open .faq-q-icon { background: #532989; color: #fff; }
.faq-dark  .faq-item.open .faq-q-icon { background: #532989; color: #fff; }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1), padding .38s;
  font-size: 13.5px; line-height: 1.7;
  padding: 0 18px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 18px 16px;
}
.faq-light .faq-a { color: #64748b; }
.faq-dark  .faq-a { color: rgba(255,255,255,.5); }

@media (max-width: 767px) {
 
}

/* ═══════════════════════════════════════════════════
   PRICING SECTION - 4 columns
   Col 1: Promo  |  Col 2: CareFlex  |  Col 3: CareSmart  |  Col 4: CareElite
═══════════════════════════════════════════════════ */

.pricing-section {
 
  position: relative;
  overflow: hidden;
}
.pricing-light { background: #f9f7ff; }

/* ── Col 1: Promo card ── */
.pricing-promo {
  border-radius: 20px;
  padding: 28px 22px;
  height: 100%;
  display: flex; flex-direction: column; gap: 16px;
 
  position: relative; overflow: hidden;
}
.pricing-promo::after {
  content: '';
  position: absolute; bottom: -30px; right: -30px;
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.pricing-promo-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff; font-size: .65rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.pricing-promo h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 8px 0 6px;
}
/* Uses .u-body-sm--light in HTML */
.pricing-promo p {
  font-size: 12.5px; line-height: 1.6; margin: 0;
}

/* ₹99 highlight inside promo */
.promo-offer-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px; color: #fff; font-weight: 500;
  line-height: 1.4;
}
.promo-offer-badge strong { color: #ffd04e; font-size: 15px; }
.promo-offer-badge span   { font-size: 11px; opacity: .75; }

/* Service cards inside promo */
.promo-service-cards { display: flex; flex-direction: column; gap: 10px; }
.promo-svc {
  display: flex; align-items: center; gap: 10px;
  border-radius: 12px; padding: 10px 12px;
}
.promo-svc img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.promo-svc-child { background: rgba(200,255,220,0.15); }
.promo-svc-elder { background: rgba(255,200,180,0.15); }
.promo-svc-title { font-size: 13px; font-weight: 700; color: #fff; }
.promo-svc-sub   { font-size: 11px; color: rgba(255,255,255,.6); line-height: 1.4; margin-top: 2px; }

/* ── Plan cards (shared) ── */
.plan-card {
  border-radius: 20px;
  padding: 28px 22px 24px;
  height: 100%;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  background: #fff;
  border: 1.5px solid #ede9fe;
  box-shadow: 0 2px 12px rgba(83,41,137,.06), 0 8px 32px rgba(83,41,137,.06);
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(83,41,137,.13), 0 20px 60px rgba(83,41,137,.08);
}
.plan-card.featured { border-color: #532989; box-shadow: 0 0 0 2px rgba(83,41,137,.12), 0 8px 32px rgba(83,41,137,.12); }

/* Badge top-right */
.plan-badge {
  position: absolute; top: 0; right: 0;
  font-size: .62rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 0 20px 0 14px;
  background: var(--c-purple);
  color: #fff;
}

.plan-name {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--c-dark);
  letter-spacing: -.4px;
  margin-bottom: 4px;
}

.plan-sub-label {
  font-size: .72rem; color: #e76616; font-weight: 600; margin-bottom: 8px;
}

/* ₹99 offer highlight pill on each plan card */
.plan-offer-pill {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 50px;
  margin-bottom: 12px;
  background: rgba(83,41,137,.08);
  color: var(--c-purple);
  border: 1px solid rgba(83,41,137,.25);
}
.plan-offer-pill strong { color: var(--c-purple); }

.plan-what {
  font-size: .68rem; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 10px;
}
.pricing-light .plan-what { color: #64748b; }
.pricing-dark  .plan-what { color: rgba(255,255,255,.38); }

/* Features */
.plan-features-new {
  list-style: none; padding: 0; margin: 0 0 20px; flex: 1;
}
.plan-features-new li {
  display: flex; align-items: flex-start; gap: 8px; flex-wrap: wrap;
  font-size: 13px; margin-bottom: 10px; line-height: 1.5;
}
.pricing-light .plan-features-new li { color: #334155; }
.pricing-dark  .plan-features-new li { color: rgba(255,255,255,.75); }

.plan-check-green {
  width: 17px; height: 17px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: var(--c-purple);
  display: flex; align-items: center; justify-content: center;
}
.plan-check-green svg { width: 9px; height: 9px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; }

.plan-strike { color: var(--c-muted); font-size: 11px; text-decoration: line-through; }
.plan-off {
  font-size: .65rem; font-weight: 700;
  padding: 2px 7px; border-radius: 50px;
  color: #fff; background: var(--c-purple);
  align-self: center; white-space: nowrap;
}

/* Price - uses var(--c-dark) / #fff via theme class */
.plan-price { margin-bottom: 18px; }
.plan-price-num {
  font-size: clamp(28px, 3vw, 40px); font-weight: 800;
  line-height: 1; letter-spacing: -2px;
}
.pricing-light .plan-price-num { color: var(--c-dark); }
.pricing-dark  .plan-price-num { color: var(--c-white); }
.plan-price-period { font-size: 12px; }
.pricing-light .plan-price-period { color: #94a3b8; }
.pricing-dark  .plan-price-period { color: rgba(255,255,255,.38); }

/* Buttons */

/* Dark theme overrides */
.pricing-dark .plan-card   { background: #1c1033; border-color: rgba(139,92,246,.18); }
.pricing-dark .plan-card.featured { border-color: #8b5cf6; box-shadow: 0 0 0 2px rgba(139,92,246,.18); }
.pricing-dark .plan-card:hover { border-color: rgba(139,92,246,.45); box-shadow: 0 8px 32px rgba(83,41,137,.3); }

/* Responsive */
@media (max-width: 991px) {
  .pricing-promo { min-height: auto; }
}
@media (max-width: 767px) {
  .pricing-section { padding: 60px 0; }
}

/* ══════════════════════════════════════════════
   DOWNLOAD APP SECTION
══════════════════════════════════════════════ */

/* decorative circles */

/* text */

/* feature pills */

/* store buttons */
.app-store-btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 14px;
  padding: 12px 22px;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
  cursor: pointer;
}
.app-store-btn:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-2px);
}
.app-store-btn svg { width: 26px; height: 26px; fill: #fff; flex-shrink: 0; }
.app-store-text { display: flex; flex-direction: column; }
.app-store-small { font-size: .62rem; font-weight: 500; color: rgba(255,255,255,.6); letter-spacing: .3px; }
.app-store-big   { font-size: .95rem; font-weight: 700; color: #fff; }

/* phone mockup visual */
/* left phone tilted */
/* right phone tilted */

/* rating badge */

@media (max-width: 991px) {
}
@media (max-width: 767px) {
}

/* ══ FAQ - screenshot style ══ */
.faq-section  { background: #f8f7ff; }
.faq-wrap     { background: #fff; border-radius: 24px; padding: 60px 52px;
                box-shadow: 0 2px 32px rgba(83,41,137,.07); }

/* eyebrow pill */
.faq-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid #c4b5fd; border-radius: 50px;
  padding: 6px 16px; font-size: .72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #532989; background: transparent; margin-bottom: 18px;
}
.faq-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: #532989; }

/* LEFT category rows */
.faq-cat-list { display: flex; flex-direction: column; gap: 12px; }
.faq-cat-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px 20px; border-radius: 14px;
  background: #fff; border: 1.5px solid #e8e0f5;
  font-size: 15px; font-weight: 700; color: #64748b;
  cursor: pointer; text-align: left;
  transition: all .22s;
}
.faq-cat-btn:hover { border-color: #c4b5fd; color: #1a0040; }
.faq-cat-btn.active {
  background: #532989; border-color: #532989; color: #fff;
}
.faq-cat-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
  transition: background .22s, color .22s;
}
.faq-cat-btn:not(.active) .faq-cat-icon { background: #ede9fe; color: #532989; }
.faq-cat-btn.active .faq-cat-icon       { background: rgba(255,255,255,.25); color: #fff; }

/* RIGHT accordion */
.faq-panel  { display: none; }
.faq-panel.active { display: block; }

.faq-item   { border-bottom: 1px solid #f0ebfa; }
.faq-item:first-child { border-top: 1px solid #f0ebfa; }

.faq-item.open {
  background: #faf8ff;
  border-top: 1.5px solid #e2d9f3;
  border-bottom: 1.5px solid #e2d9f3;
  border-radius: 12px;
  margin-bottom: 4px;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 16px; gap: 12px;
  font-size: 15px; font-weight: 700; color: #1a0040; text-align: left;
}
.faq-q-icon {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: transform .3s, background .22s;
  background: #ede9fe; color: #532989;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: #532989; color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1), padding .35s;
  font-size: 14.5px; line-height: 1.72; color: #64748b; padding: 0 16px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 16px 18px; }

@media (max-width: 767px) {
  .faq-wrap { padding: 32px 20px; border-radius: 16px; }
  .faq-section { padding: 60px 0; }
  .faq-cat-list { flex-direction: row; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
  .faq-cat-btn  { width: auto; flex: 1; min-width: 120px; font-size: 13px; padding: 12px 14px; }
}

/* ══ DOWNLOAD APP - purple container, diagonal phones ══ */
.app-outer { background: #f8f7ff; }

.app-container {
 background: 
    url("../img/download-app-bg.png") no-repeat 95% center,
    linear-gradient(135deg, #3d1070 0%, #532989 45%, #6b32a8 100%);

background-size: 40%, cover;
  border-radius: 28px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

/* subtle circle decorations */
.app-container::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.app-container::after {
  content: '';
  position: absolute; bottom: -60px; left: 30%;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}



/* LEFT text */
.app-text-col { position: relative; z-index: 2; }

.app-feat-list { list-style: none; padding: 0; margin: 0 0 32px; }
.app-feat-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.82);
  margin-bottom: 10px;
}
.app-feat-list li::before {
  content: '✦';
  color: #f4a623; font-size: 10px; flex-shrink: 0;
}

/* store buttons - dark pill style like reference */
.app-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.app-store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000; border-radius: 12px;
  padding: 11px 20px; text-decoration: none;
  transition: transform .18s, box-shadow .18s;
  border: 1.5px solid rgba(255,255,255,.12);
}
.app-store-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.3); }
.app-store-btn svg { width: 24px; height: 24px; fill: #fff; flex-shrink: 0; }
.app-store-text { display: flex; flex-direction: column; }
.app-store-small { font-size: .58rem; color: rgba(255,255,255,.65); letter-spacing: .4px; }
.app-store-big   { font-size: .9rem; font-weight: 700; color: #fff; line-height: 1.2; }

/* RIGHT - diagonal/scattered phone strip */

/* phones strip - one row, auto-scrolling horizontally, diagonal rotation */

.app-phones-track-wrap:hover 

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

/* individual phone in strip */

/* notch */

@media (max-width: 991px) {
  .app-container { padding: 44px 32px; }
  
  
}
@media (max-width: 767px) {
  .app-outer { padding: 48px 0; }
  .app-container { padding: 36px 24px; border-radius: 20px; }
  
  
}

/* ═══════════════════════════════════════════════════
   HIW MOBILE IMAGE SLIDESHOW
   - Only visible on mobile (< 992px via d-lg-none)
   - Images fade in/out every 3s automatically
   - Images are portrait story-cards with text baked in
═══════════════════════════════════════════════════ */

/* Outer wrapper */

/* Track: relative container that holds all slides stacked */

/* Each slide: absolute, fills the track */

/* Image fills the slide completely */

/* Dots */

/* Progress bar */

/* ── HIW Phone Screen Step Slideshow ── */
.hiw-phone-screen { position: relative; overflow: hidden; background: #0a0020; }

/* ═══════════════════════════════════════════════════
   HOW IT WORKS - 4-phone grid layout
   Dark theme overrides
═══════════════════════════════════════════════════ */
 
.bg-grid {
 
  background:
   linear-gradient(135deg, #3d1070 0%, #532989 45%, #6b32a8 100%);
   border-radius: 30px;
   padding:30px;
}

 

/* Heading colours on this lavender bg - same as light, bg is same */
.hiw-section .sec-heading { color: #1a0040; }
.hiw-section .sec-heading span { color: #532989; }
.hiw-section .sec-sub { color: #4a3a6e; margin-bottom: 56px; }
.hiw-section .hiw-eyebrow {
  background: rgba(255,255,255,0.72);
  border-color: rgba(83,41,137,0.25);
  color: #532989;
  backdrop-filter: blur(8px);
}
.hiw-section .hiw-eyebrow-dot { background: #532989; }
.hiw-section .hiw-heading span { color: #532989; }

 
.hiw-phone-frame {
  width: 100%;
 
  aspect-ratio: 9/19;
  background: #fff;
  border-radius: 36px;
  border: 6px solid #fff;
  box-shadow:
    0 0 0 1px rgba(83,41,137,0.18),
    0 24px 60px rgba(10,0,40,0.38),
    0 8px 20px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}

.hiw-phone-frame .hiw-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hiw-phone-frame .hiw-phone-notch-cam {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2a2a2a;
}
.hiw-phone-frame .hiw-phone-notch-speaker {
  width: 30px; height: 4px;
  border-radius: 4px;
  background: #2a2a2a;
}

.hiw-phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #0a0020;
}

.hiw-ps {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.85s ease-in-out;
}
.hiw-ps--on { opacity: 1; }

.hiw-card-label { text-align: center; }
.hiw-card-step {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff6e62;
  margin-bottom: 6px;
}
.hiw-card-title {
  font-size: clamp(15px, 1.5vw, 25px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

@media (max-width: 991px) {
 
  .hiw-phone-frame { max-width: 180px; }
}
@media (max-width: 575px) {
   
  .hiw-phone-frame { max-width: 100%; border-radius: 28px; border-width: 5px; }
 
  .hiw-card-title { font-size: 14px; }
}

/* ── Hero store buttons ── */
.hero-store-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* ── Plan GST + T&C note ── */
.plan-gst-note {
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 10px;
  line-height: 1.5;
}
.plan-gst-note a {
  color: #532989;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.plan-gst-note a:hover { color: #7c3aed; }
.pricing-dark .plan-gst-note { color: rgba(255,255,255,.38); }
.pricing-dark .plan-gst-note a { color: #c4b5fd; }

/* ═══════════════════════════════════════════════════
   SERVICES SECTION - flip cards
   Front: image + heading  |  Back: full content
═══════════════════════════════════════════════════ */

/* Flip card wrapper - height driven by aspect ratio */

/* Inner - rotates on hover */
.svc-flip:hover .svc-flip-inner,
.svc-flip.flipped .svc-flip-inner {
  transform: rotateY(180deg);
}

/* Shared face styles */
.svc-flip-front,

/* ── FRONT ── */

/* Gradient overlay so text is readable */

/* Front text sits at the bottom */

/* ── BACK ── */

/* Feature list */

/* Check icons */

/* Touch: tap to flip */
@media (hover: none) {
  .svc-flip.flipped .svc-flip-inner { transform: rotateY(180deg); }
}

/* Responsive */
@media (max-width: 991px) {
}
@media (max-width: 575px) {
}

/* ═══════════════════════════════════════════════════
   SERVICES SECTION - side-by-side split layout
═══════════════════════════════════════════════════ */

/* Each split row */

/* Reverse: image goes right */

/* Image half */

/* Gradient overlay on image */

/* Tag on image */

/* Content half */

/* Small label */

/* Title */

/* Description */

/* Feature list */

/* Check icons */

/* ── Responsive ── */
@media (max-width: 991px) {
}
@media (max-width: 575px) {
}
/* Services dark theme */
/* Services dark - back card bg */

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  background: #0f0621;
  padding: 48px 0 36px;
  text-align: center;
  border-top: 1px solid rgba(139,92,246,.15);
}

/* Social icons row */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}
.footer-social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(139,92,246,.35);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.60);
  transition: border-color .2s, color .2s, background .2s;
  text-decoration: none;
}
.footer-social-link svg { width: 18px; height: 18px; }
.footer-social-link:hover {
  border-color: #8b5cf6;
  color: #fff;
  background: rgba(139,92,246,.15);
}

/* Nav links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 28px;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: #c4b5fd; }

/* Copyright */
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin: 0;
}

/* Responsive */
@media (max-width: 575px) {
  .footer-socials { gap: 14px; }
  .footer-links { gap: 6px 18px; }
  .footer-links a { font-size: 12.5px; }
}

/* ── Testimonial video thumb placeholders ── */
.tc-video-thumb-ph--purple {
  background: linear-gradient(135deg, #e9d5ff 0%, #c4b5fd 55%, #8b5cf6 100%);
}
.tc-video-thumb-ph--amber {
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 55%, #f59e0b 100%);
}
/* Emoji inside thumb */
.tc-video-thumb-emoji { font-size: 48px; }

/* ═══════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════ */

.svcs-section { background: #faf8ff; }

/* ── Category group ── */
.svcs-group { margin-bottom: 52px; }
.svcs-group:last-child { margin-bottom: 0; }

/* ── Header row: icon + title + line + explore link ── */
.svcs-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.svcs-group-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.svcs-group-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-purple);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svcs-group-icon svg { width: 20px; height: 20px; stroke: #fff; }

.svcs-group-title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  font-style: italic;
  color: var(--c-dark);
  margin: 0;
  white-space: nowrap;
}
.svcs-group-line {
  flex: 1;
  height: 1px;
  background: rgba(83,41,137,.15);
}
.svcs-group-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-purple);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.svcs-group-link:hover { opacity: .75; }

/* ── Card ── */
.svcs-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ede9fe;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.svcs-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(83,41,137,.12);
}
.svcs-card-img-wrap { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.svcs-card-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.svcs-card:hover .svcs-card-img { transform: scale(1.04); }
.svcs-card-body {
  padding: 12px 14px 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
}
.svcs-card-label {
  font-size: 13px; font-weight: 700;
  color: var(--c-dark); line-height: 1.35; margin: 0; flex: 1;
}
.svcs-card-arrow { font-size: 14px; color: var(--c-purple); flex-shrink: 0; }

@media (max-width: 767px) {
  .svcs-group-link { display: none; }
  .svcs-group-line { display: none; }
}

/* ═══════════════════════════════════════════════════
   INNER PAGES - shared (about, contact, terms)
   Page hero banner (matches hero gradient from index)
═══════════════════════════════════════════════════ */

/* ── Page hero (reuses hero gradient; no min-height) ── */
.page-hero {
  background: linear-gradient(90deg, #311750 0%, #532989 55%, #562a8d 100%);
  padding: 52px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 50%; right: -18%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; color: #fff;
  letter-spacing: -1px; margin-bottom: 8px;
}
.page-hero h1 span { color: var(--c-gold); }
.page-hero p {
  color: rgba(255,255,255,.65);
  font-size: .95rem; margin: 0; max-width: 520px;
}
.breadcrumb { background: none; padding: 0; margin: 10px 0 0; }
.breadcrumb-item, .breadcrumb-item a { font-size: .8rem; color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb-item a:hover { color: #fff; }
.breadcrumb-item.active { color: rgba(255,255,255,.75); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); content: "›"; }

/* ── Inner section spacing ── */
.inner-pad { padding: 72px 0; }
.inner-pad-sm { padding: 48px 0; }

/* ── Contact info item ── */
.ci-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.ci-item:last-child { margin-bottom: 0; }
.ci-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md); flex-shrink: 0;
  background: #f9f7ff; border: var(--border-purple);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  transition: background var(--transition), transform var(--transition);
}
.ci-item:hover .ci-icon { background: #ede9fe; transform: scale(1.06); }
.ci-lbl {
  font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-muted); margin-bottom: 3px;
}
.ci-val { font-size: .95rem; font-weight: 700; color: var(--c-dark); line-height: 1.5; }
.ci-val a { color: var(--c-dark); text-decoration: none; }
.ci-val a:hover { color: var(--c-purple); }

/* ── Contact form box ── */
.form-box {
  background: var(--c-white); border: var(--border-purple);
  border-radius: var(--radius-xl); padding: 40px 36px;
  box-shadow: var(--shadow-card);
}
.form-box h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: 1.25rem; color: var(--c-dark); margin-bottom: 4px;
}
.form-box > p { font-size: .85rem; color: var(--c-muted); margin-bottom: 26px; }

/* ── Form inputs (contact + other inner forms) ── */
.f-grp { margin-bottom: 16px; }
.f-lbl {
  display: block; font-size: .7rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-dark); margin-bottom: 6px;
}
.f-ctrl {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid rgba(139,92,246,.2); border-radius: var(--radius-md);
  font-family: "Bricolage Grotesque", sans-serif; font-size: .9rem;
  color: var(--c-dark); background: #fdfcff; outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.f-ctrl:focus { border-color: var(--c-purple2); box-shadow: 0 0 0 3px rgba(139,92,246,.1); }
.f-ctrl::placeholder { color: #b0b8c8; }
textarea.f-ctrl { resize: vertical; min-height: 120px; }
select.f-ctrl {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b5cf6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}

/* ── Send button ── */
.btn-send {
  width: 100%; padding: 13px; border: none; cursor: pointer;
  background: var(--grad-purple); color: #fff; border-radius: var(--radius-xl);
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: .95rem;
  box-shadow: var(--shadow-purple);
  transition: opacity var(--transition), transform var(--transition);
}
.btn-send:hover { opacity: .88; transform: translateY(-1px); }

/* Form success state */
.form-success { text-align: center; }
.form-success .s-ico { font-size: 3rem; margin-bottom: 12px; display: block; }
.form-success h4 { font-weight: 800; color: var(--c-dark); margin-bottom: 6px; }
.form-success p { color: var(--c-muted); font-size: .88rem; }

/* ── Map ── */
.map-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-card-hover); border: var(--border-purple); position: relative;
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: none; }
.map-pin {
  position: absolute; bottom: 20px; left: 20px;
  background: #fff; border-radius: var(--radius-md); padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14); border-left: 3px solid var(--c-purple); max-width: 260px;
}
.map-pin strong { display: block; font-size: .88rem; color: var(--c-dark); font-weight: 800; margin-bottom: 3px; }
.map-pin span { font-size: .75rem; color: var(--c-muted); line-height: 1.5; display: block; margin-bottom: 8px; }
.map-pin a { font-size: .75rem; font-weight: 700; color: var(--c-purple); text-decoration: none; }
.map-pin a:hover { text-decoration: underline; }

/* ── Social button row ── */
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: var(--border-purple); background: var(--c-white);
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.social-btn:hover { background: var(--c-purple); border-color: var(--c-purple); transform: translateY(-2px); }

/* ── FAQ accordion (inner pages) ── */
.faq-acc .faq-item { border-bottom: 1px solid #f0ebfa; }
.faq-acc .faq-item:first-child { border-top: 1px solid #f0ebfa; }
.faq-acc .faq-item.open { background: #faf8ff; border: 1.5px solid #e2d9f3; border-radius: var(--radius-md); margin-bottom: 4px; }
.faq-acc .faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 17px 16px; gap: 12px; font-size: .92rem; font-weight: 700; color: var(--c-dark); text-align: left; }
.faq-acc .faq-q-icon { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; background: #ede9fe; color: var(--c-purple); transition: transform .3s, background .2s; }
.faq-acc .faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--c-purple); color: #fff; }
.faq-acc .faq-a { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.4,0,.2,1), padding .35s; font-size: .86rem; line-height: 1.72; color: var(--c-muted); padding: 0 16px; }
.faq-acc .faq-item.open .faq-a { max-height: 300px; padding: 0 16px 16px; }

/* ── Needs table (about page) ── */
.needs-tbl { width: 100%; border-collapse: separate; border-spacing: 0 8px; }
.needs-tbl thead th {
  font-size: .68rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-muted); padding: 0 20px 10px; border-bottom: 2px solid #ede9fe;
}
.needs-tbl thead th:first-child { width: 80px; padding-left: 0; }
.needs-tbl tbody tr { background: var(--c-white); transition: transform var(--transition), box-shadow var(--transition); }
.needs-tbl tbody tr:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.needs-tbl td { padding: 14px 20px; vertical-align: middle; font-size: .87rem; }
.needs-tbl td:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); padding: 10px; width: 80px; }
.needs-tbl td:nth-child(2) { border-left: 3px solid var(--c-gold); font-weight: 700; color: var(--c-dark); }
.needs-tbl td:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; border-left: 3px solid #6ee7b7; color: var(--c-body); }
.needs-tbl .row-img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; display: block; }

/* ── Timeline (about page origin story) ── */
.tl { position: relative; padding-left: 0; }
.tl::before {
  content: ''; position: absolute; left: 21px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--c-purple), var(--c-purple2), transparent);
}
.tl-item { display: flex; gap: 20px; margin-bottom: 32px; }
.tl-dot {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; position: relative; z-index: 1;
}
.tl-dot--p { background: var(--grad-purple); box-shadow: var(--shadow-purple); }
.tl-dot--o { background: var(--grad-orange); }
.tl-body h4 { font-weight: 800; font-size: 1rem; color: var(--c-dark); margin-bottom: 5px; }
.tl-body p { font-size: .86rem; line-height: 1.65; margin: 0; }

/* ── Pull quote block ── */
.pull-quote {
  background: var(--grad-purple); border-radius: var(--radius-xl);
  padding: 36px; position: relative; overflow: hidden;
}
.pull-quote::before {
  content: '"'; position: absolute; top: -24px; left: 18px;
  font-family: "Playfair Display", serif; font-size: 10rem;
  color: rgba(255,255,255,.06); line-height: 1;
}
.pull-quote p { font-family: "Playfair Display", serif; font-style: italic; font-size: clamp(16px, 1.8vw, 20px); color: #fff; line-height: 1.6; position: relative; z-index: 1; margin: 0 0 10px; }
.pull-quote cite { font-size: .78rem; color: var(--c-purple-light); font-style: normal; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; position: relative; z-index: 1; }

/* ── Diff cards (about) ── */
.diff-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--grad-purple); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; margin-bottom: 16px;
  box-shadow: var(--shadow-purple);
}

/* ── Terms page ── */
.toc-card { background: var(--c-white); border: var(--border-purple); border-radius: var(--radius-xl); overflow: hidden; }
/* toc-card inner list wrapper handles overflow via tc-sidebar */
.toc-head { background: var(--grad-purple); padding: 16px 22px; }
.toc-head h4 { font-weight: 800; font-size: .9rem; color: #fff; margin: 0; }
.toc-link {
  display: flex; align-items: center; gap: 10px; padding: 9px 18px;
  font-size: .8rem; color: var(--c-muted); text-decoration: none; font-weight: 600;
  border-left: 3px solid transparent; transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.toc-link:hover { background: #f5f0ff; color: var(--c-purple); border-left-color: var(--c-purple2); }
.toc-link.active { background: #ede9fe; color: var(--c-purple); border-left-color: var(--c-purple); font-weight: 700; }
.toc-num { font-size: .62rem; font-weight: 800; letter-spacing: .08em; color: var(--c-purple); min-width: 18px; }

.tc-content { background: var(--c-white); border: var(--border-purple); border-radius: var(--radius-xl); padding: 44px; }
@media (max-width: 768px) { .tc-content { padding: 24px 18px; } }

.tc-intro {
  background: linear-gradient(135deg, #f5f0ff, #ede9fe);
  border-radius: var(--radius-md); padding: 24px;
  border-left: 4px solid var(--c-purple); margin-bottom: 36px;
}
.tc-intro p { font-size: .88rem; color: var(--c-body); line-height: 1.75; margin: 0; }

.tc-sec { margin-bottom: 40px; scroll-margin-top: 76px; }
.tc-sec-hdr {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px; border-bottom: 2px solid #ede9fe; margin-bottom: 16px;
}
.tc-num {
  width: 34px; height: 34px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--grad-purple); display: flex; align-items: center;
  justify-content: center; font-size: .72rem; font-weight: 800; color: #fff;
}
.tc-sec-hdr h3 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--c-dark); margin: 0; }
.tc-p { font-size: .88rem; line-height: 1.8; color: var(--c-body); margin-bottom: 12px; }
.tc-p:last-child { margin-bottom: 0; }
.tc-p strong { color: var(--c-dark); }
.tc-sub-hdr { font-weight: 800; font-size: .92rem; color: var(--c-dark); margin: 20px 0 8px; display: flex; align-items: center; gap: 8px; }
.tc-sub-hdr::before { content: ''; width: 4px; height: 14px; background: var(--c-purple2); border-radius: 2px; display: inline-block; flex-shrink: 0; }

.tc-warn {
  background: #fef3c7; border: 1px solid #fcd34d; border-radius: var(--radius-md);
  padding: 14px 18px; margin: 16px 0; display: flex; gap: 10px;
}
.tc-warn p { font-size: .83rem; color: #78350f; line-height: 1.65; margin: 0; }
.tc-note-box {
  background: #ede9fe; border: 1px solid #c4b5fd; border-radius: var(--radius-md);
  padding: 14px 18px; margin: 16px 0; display: flex; gap: 10px;
}
.tc-note-box p { font-size: .83rem; color: var(--c-purple); line-height: 1.65; margin: 0; }

/* ── Shared inner table (T&C + contact services) ── */
.inner-tbl { width: 100%; border-collapse: separate; border-spacing: 0 6px; }
.inner-tbl thead th {
  font-size: .66rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-muted); padding: 0 16px 8px; border-bottom: 2px solid #ede9fe;
}
.inner-tbl tbody tr { background: var(--c-light-bg); }
.inner-tbl tbody tr:hover { background: #f0ebfd; }
.inner-tbl td { padding: 12px 16px; font-size: .84rem; vertical-align: top; line-height: 1.55; }
.inner-tbl td:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); font-weight: 700; color: var(--c-dark); border-left: 3px solid var(--c-purple2); }
.inner-tbl td:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--c-muted); }

/* contact table variant */
.inner-tbl.ct td:first-child { border-left-color: var(--c-gold); width: 30%; }
.inner-tbl.ct td:last-child { color: var(--c-body); }
.inner-tbl.ct a { color: var(--c-purple); text-decoration: none; font-weight: 600; }
.inner-tbl.ct a:hover { text-decoration: underline; }

/* status badges */
.badge-on   { background: #d1fae5; color: #065f46; font-size: .68rem; font-weight: 800; padding: 3px 10px; border-radius: 50px; }
.badge-soon { background: #fef3c7; color: #92400e; font-size: .68rem; font-weight: 800; padding: 3px 10px; border-radius: 50px; }

/* ── Back to top ── */
.back-top {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .76rem; font-weight: 700; color: var(--c-purple); text-decoration: none;
  margin-top: 28px; padding: 7px 14px; border: 1px solid var(--c-purple-light); border-radius: 50px;
  transition: all var(--transition);
}
.back-top:hover { background: var(--c-purple); color: #fff; border-color: var(--c-purple); }

/* ── Pillar card (about hero) ── */
.pillars-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl); padding: 28px; backdrop-filter: blur(10px);
}
.pillar-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.pillar-row:last-child { border-bottom: none; padding-bottom: 0; }
.pillar-ico { width: 42px; height: 42px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.pillar-ico--p { background: rgba(139,92,246,.25); }
.pillar-ico--o { background: rgba(231,102,22,.25); }
.pillar-ico--g { background: rgba(244,166,35,.25); }
.pillar-txt strong { display: block; color: #fff; font-weight: 700; font-size: .92rem; }
.pillar-txt span { font-size:1rem; color: #fff; line-height: 1.5; }

/* ── Stat pills (about hero) ── */
.stat-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.stat-pill {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.17);
  border-radius: var(--radius-xl); padding: 10px 20px; backdrop-filter: blur(6px);
}
.stat-pill strong { display: flex; font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; justify-content: center; }
.stat-pill small { font-size: .68rem; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; display: block; }


/* ═══════════════════════════════════════════════════
   INNER PAGES v2 - navbar sticky + hero fix + needs redesign
═══════════════════════════════════════════════════ */

/* ── Sticky navbar wrapper for inner pages ── */
.inner-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #311750 0%, #532989 55%, #562a8d 100%);
 
}

/* ── Find a Companion CTA button in nav ── */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad-orange);
  color: #fff !important;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  margin-left: 16px;
  border: none;
  box-shadow: 0 3px 12px rgba(231,102,22,.4);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(231,102,22,.45);
  color: #fff !important;
}
.btn-nav-cta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.6);
  animation: ctaPulse 1.8s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { opacity: .5; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.4); }
}

/* ── Inner page hero - matches home hero exactly ── */
.inner-hero {
  background:
    radial-gradient(circle at bottom right,
      rgba(255,122,72,.18) 0%, rgba(255,122,72,.12) 12%,
      rgba(255,122,72,.06) 26%, rgba(255,122,72,.02) 40%,
      rgba(255,122,72,0) 58%),
    linear-gradient(90deg, #311750 0%, #532989 55%, #562a8d 100%);
  padding: 64px 0 60px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Same ripple rings as home hero */
.inner-hero::after {
  content: "";
  position: absolute;
  top: 50%; right: -18%;
  transform: translateY(-50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(circle,
    rgba(108,48,175,.18) 0%,   rgba(108,48,175,.18) 19.6%,
    rgba(124,61,196,0)   19.6%,rgba(124,61,196,0)   20.9%,
    rgba(143,77,223,.18) 21%,  rgba(124,61,196,0)   21.15%,
    rgba(124,61,196,0)   36.9%,
    rgba(143,77,223,.16) 37%,  rgba(124,61,196,0)   37.15%,
    rgba(124,61,196,0)   53.9%,
    rgba(143,77,223,.14) 54%,  rgba(124,61,196,0)   54.15%,
    rgba(124,61,196,0)   71.9%,
    rgba(143,77,223,.12) 72%,  rgba(124,61,196,0)   72.15%,
    transparent 100%
  );
  pointer-events: none;
}
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800; color: #fff;
  line-height: 1.08; letter-spacing: -1.2px; margin-bottom: 14px;
}
.inner-hero h1 span { color: var(--c-gold); }
.inner-hero .hero-text {
  color: rgba(255,255,255,.68);
  font-size: 16px; line-height: 1.75; max-width: 480px; margin-bottom: 0;
}

/* ── Needs table redesign - matches screenshot ── */
/* Wrapper gets a light rounded card bg */
.needs-section-wrap {
  background: #fff;
  border-radius: var(--radius-xl);
  border: var(--border-purple);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* Table header row */
.needs-tbl2 { width: 100%; border-collapse: collapse; }
.needs-tbl2 thead tr {
  border-bottom: 1px solid rgba(139,92,246,.12);
}
.needs-tbl2 thead th {
  font-size: .68rem; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--c-muted);
  padding: 18px 28px;
}
.needs-tbl2 thead th:first-child { width: 88px; }
.needs-tbl2 thead th:nth-child(2) { color: #92400e; }
.needs-tbl2 thead th:nth-child(3) {
  border-left: 1px solid rgba(139,92,246,.14);
  color: #065f46;
}

/* Body rows */
.needs-tbl2 tbody tr {
  border-bottom: 1px solid rgba(139,92,246,.08);
  transition: background var(--transition);
}
.needs-tbl2 tbody tr:last-child { border-bottom: none; }
.needs-tbl2 tbody tr:hover { background: #faf8ff; }

.needs-tbl2 tbody td { padding: 18px 24px; vertical-align: middle; }
.needs-tbl2 tbody td:first-child { padding: 12px 12px 12px 20px; width: 88px; }

/* Divider col */
.needs-tbl2 tbody td:nth-child(3) {
  border-left: 1px solid rgba(139,92,246,.14);
}

.needs-tbl2 .row-img {
  width:200px; height:200px;
  border-radius: var(--radius-sm);
  object-fit: cover; display: block;
}
 
.badge-resp-icon { font-size: .7rem; }

.needs-tbl2 .need-text { font-size: 1.3rem; font-weight: 600; color: var(--c-dark); margin: 0; }
.needs-tbl2 .resp-text { font-size: 1rem; color: var(--c-body); line-height: 1.55; margin: 0; }

/* tc-sidebar removed - replaced by .tc-left fixed layout */


/* ═══════════════════════════════════════════════════
   NEEDS TABLE - MOBILE CARD LAYOUT
   On < 768px: hide the table, show stacked cards instead
═══════════════════════════════════════════════════ */

/* Hide table on mobile */
@media (max-width: 767px) {
  .needs-section-wrap { background: transparent; border: none; box-shadow: none; border-radius: 0; }
  .needs-tbl2         { display: none; }
  .needs-cards        { display: flex; flex-direction: column; gap: 0; }
}

/* Hide card list on desktop (table takes over) */
@media (min-width: 768px) {
  .needs-cards { display: none; }
}

/* Each card = one row */
.needs-card {
  background: #fff;
  border: var(--border-purple);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.needs-card:last-child { margin-bottom: 0; }

/* Top: image + need text side by side */
.needs-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(139,92,246,.1);
}
.needs-card-img {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0;
}
 
 

/* Bottom: response text */
.needs-card-bottom {
  padding: 12px 18px 16px;
  background: var(--c-light-bg);
}
.needs-card-bottom p {
  font-size: .86rem; color: var(--c-body); line-height: 1.6; margin: 0;
}

/* ═══════════════════════════════════════════════════
   TERMS PAGE - FIXED LEFT / SCROLL RIGHT
   30% fixed sidebar | 70% scrollable content
═══════════════════════════════════════════════════ */

/* Outer wrapper - flex row, full width below navbar */
/* ── tc-layout: body content area only (below hero) ── */
.tc-layout {
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  background: var(--c-light-bg);
  position: relative;
}

/* LEFT: sticky inside the layout, not fixed to viewport
   Uses position:sticky so it only appears within tc-layout,
   does NOT overlap the hero above it */
.tc-left {
  position: sticky;
  top: 64px;
  width: 30%;
  min-width: 30%;
  max-width: 30%;
  height: calc(100vh - 64px);
  background: var(--c-light-bg);
  border-right: var(--border-purple);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-self: flex-start;
  overflow: hidden;
}

/* TOC card fills the left column */
.tc-left .toc-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

/* Scrollable link list inside the card */
.toc-body {
  padding: 6px 0;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}
.toc-body::-webkit-scrollbar { width: 3px; }
.toc-body::-webkit-scrollbar-thumb { background: rgba(139,92,246,.25); border-radius: 4px; }

/* RIGHT: 70% wide, scrolls normally with the page */
.tc-right {
  flex: 1;
  min-width: 0;
  padding: 48px 48px 80px;
  overflow: hidden;
}

/* Content card inside right column */
.tc-right .tc-content { max-width: 860px; }

/* Anchor offset for sticky nav */
.tc-sec { scroll-margin-top: 80px; }

/* ── Mobile: single column ── */
@media (max-width: 991px) {
  .tc-layout { display: block; }
  .tc-left   { display: none; }
  .tc-right  { padding: 32px 16px 60px; }
}