/* ═══════════════════════════════════════════════════════════
   JEEVA AMRIT AYURVEDA — Shared CSS
   Colours:  Forest  #2c5e3b | Mid-green #40916C | Warm bg #F5F0E8
             Muted bg #EDE8DC | Deep dark #0f2a1e | Gold #C9A84C
   ═══════════════════════════════════════════════════════════ */

:root {
  --c-forest:   #80a739;
  --c-mid:      #40916C;
  --c-dark:     #0f2a1e;
  --c-gold:     #C9A84C;
  --c-gold-lt:  rgba(201,168,76,0.18);
  --c-bg:       #F5F0E8;
  --c-bg2:      #EDE8DC;
  --c-white:    #ffffff;
  --c-body:     #4a5568;
  --radius-lg:  24px;
  --radius-md:  16px;
  --radius-sm:  12px;
  --shadow-card: 0 4px 32px rgba(27,67,50,0.07);
  --shadow-hover:0 16px 48px rgba(27,67,50,0.16);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--c-bg);
  color: #1a1a1a;
  overflow-x: hidden;
}


/* ── SHARED TYPOGRAPHY ─────────────────────────────── */
.ja-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgb(34, 151, 34); margin-bottom: 0.4rem;
}
.ja-label--gold { color: var(--c-gold); }
.ja-label--light { color: rgba(255,255,255,0.5); }

.ja-title {
  font-size: clamp(1.65rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.14;
}
.ja-title--white { color: #fff; }
.ja-title--gold  { color: var(--c-gold); }

.ja-body {
  font-size: 1rem; line-height: 1.82; color: var(--c-body);
}
.ja-body--white { color: rgba(255,255,255,0.72); }
.ja-hero {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.ja-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 35%;
}
.ja-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(15,42,30,0.93) 0%,
    rgba(27,67,50,0.78) 55%,
    rgba(27,67,50,0.3) 100%);
}
.ja-hero__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.16);
  pointer-events: none;
}
.ja-hero__ring--1 { width: 520px; height: 520px; right: -100px; top: -120px; }
.ja-hero__ring--2 { width: 360px; height: 360px; right: 60px; top: 40px; border-color: rgba(201,168,76,0.09); }
.ja-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid rgba(201,168,76,0.45);
  padding: 0.35rem 1.1rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.ja-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; line-height: 1.04; color: #fff;
}
.ja-hero__title span { color: var(--c-gold); }
.ja-hero__sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.78);
  max-width: 500px; line-height: 1.75; margin-top: 1.25rem;
}
.ja-hero__stat-row {
  display: flex; gap: 1.25rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.ja-hero__stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px; padding: 1rem 1.5rem; min-width: 130px;
}
.ja-hero__stat-num {
  font-size: 1.9rem; font-weight: 900;
  color: var(--c-gold); letter-spacing: -0.04em; line-height: 1;
}
.ja-hero__stat-lbl {
  font-size: 0.72rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem; letter-spacing: 0.05em;
}
.ja-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27,67,50,0.08);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ja-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.ja-card--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.ja-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--c-forest), var(--c-mid));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; flex-shrink: 0;
}
.ja-card__icon--gold {
  background: linear-gradient(135deg, var(--c-gold), #e8c97a);
}
.ja-cta { position: relative; overflow: hidden; }
.ja-cta__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(0.4) brightness(0.28);
}
.ja-cta__overlay {
  position: absolute; inset: 0;
  background: #00000025;
}
.ja-cta__title {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;; line-height: 1.2;
}
.ja-cta__body { color: white; font-size: 1.05rem; line-height: 1.75; }
.ja-cta__btn {
  display: inline-block;
  background: var(--c-forest); color: #fff;
  font-weight: 700; font-size: 0.875rem; letter-spacing: 0.06em;
  padding: 0.9rem 2.25rem; border-radius: 100px;
  text-transform: uppercase; transition: all 0.22s;
  text-decoration: none; border: none; cursor: pointer;
}
.ja-cta__btn:hover {
  background: var(--c-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15,42,30,0.4);
}
.ja-cta__btn--outline {
  background: transparent;
  border: 2px solid var(--c-forest);
  color: var(--c-forest);
}
.ja-cta__btn--outline:hover {
  background: var(--c-forest); color: #fff;
}
.ja-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.ja-reveal--left  { transform: translateX(-36px); }
.ja-reveal--right { transform: translateX(36px); }
.ja-reveal--up    { transform: translateY(36px); }
.ja-reveal--vis   { opacity: 1 !important; transform: translate(0,0) !important; }
.ja-reveal--d1    { transition-delay: 0.1s; }
.ja-reveal--d2    { transition-delay: 0.2s; }
.ja-reveal--d3    { transition-delay: 0.3s; }
.ja-reveal--d4    { transition-delay: 0.4s; }
.ja-reveal--d5    { transition-delay: 0.5s; }
.ja-pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--c-white);
  border: 1px solid rgba(27,67,50,0.13);
  border-radius: 100px; padding: 0.6rem 1.2rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--c-forest); transition: all 0.2s; cursor: default;
}
.ja-pill:hover { background: var(--c-forest); color: #fff; border-color: var(--c-forest); }
.ja-pill__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-gold); flex-shrink: 0;
}
.ja-line {
  width: 48px; height: 3px;
  background: var(--c-gold); border-radius: 2px;
  margin: 1.5rem 0;
}
.ja-line--center { margin-left: auto; margin-right: auto; }
.ja-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 2;
  background: rgba(201,168,76,0.96);
  backdrop-filter: blur(8px);
  border-radius: 14px; padding: 0.9rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.ja-badge__num  { font-size: 1.6rem; font-weight: 900; color: var(--c-forest); letter-spacing: -0.04em; line-height: 1; }
.ja-badge__text { font-size: 0.7rem; font-weight: 700; color: var(--c-forest); letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.4; }
.ja-partner-logo-wrap {
  background: var(--c-white);
  border: 1px solid rgba(27,67,50,0.09);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem; text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ja-partner-logo-wrap:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.ja-partner-logo-wrap img {
  height: 56px; object-fit: contain; filter: grayscale(40%);
  transition: filter 0.3s;
}
.ja-partner-logo-wrap:hover img { filter: grayscale(0%); }
.ja-partner-logo-wrap .ja-partner-name {
  font-size: 0.82rem; font-weight: 600;
  color: var(--c-forest); letter-spacing: 0.02em;
}
.ja-partner-logo-wrap .ja-partner-cat {
  font-size: 0.7rem; color: var(--c-body); letter-spacing: 0.05em;
}

.ja-partner-tier {
  background: var(--c-gold);
  color:white;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.2rem 0.75rem; border-radius: 100px;
}
.ja-partner-tier--silver {
  background: #e2e8f0; color: #4a5568;
}
.ja-partner-tier--bronze {
  background: #fed7aa; color: #92400e;
}
.ja-partner-benefit {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--c-white);
  border: 1px solid rgba(27,67,50,0.08);
  border-radius: var(--radius-md); padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s;
}
.ja-partner-benefit:hover { transform: translateY(-4px); }
.ja-partner-benefit__icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-forest), var(--c-mid));
  display: flex; align-items: center; justify-content: center;
}
.ja-partner-benefit__title { font-weight: 700; color: var(--c-forest); font-size: 0.95rem; }
.ja-partner-benefit__sub   { font-size: 0.8rem; color: var(--c-body); margin-top: 3px; line-height: 1.55; }

.ja-partner-form-wrap {
  background: var(--c-white);
  border: 1px solid rgba(27,67,50,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.ja-form-input {
  width: 100%;
  border: 1px solid rgba(27,67,50,0.18);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  font-size: 0.9rem; color: #1a1a1a;
  outline: none; transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
}
.ja-form-input:focus { border-color: var(--c-gold); }
.ja-form-label {
  font-size: 0.78rem; font-weight: 600;
  margin-bottom: 0.4rem; display: block;
  letter-spacing: 0.03em;
}
.ja-form-select {
  width: 100%;
  border: 1px solid rgba(27,67,50,0.18);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  font-size: 0.9rem; color: #1a1a1a;
  outline: none; transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231B4332' stroke-width='2'%3E%3Cpath stroke-linecap='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}
.ja-form-select:focus { border-color: var(--c-gold); }
.ja-faq-item {
  background: var(--c-white);
  border: 1px solid rgba(27,67,50,0.09);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
}
.ja-faq-item:hover { box-shadow: var(--shadow-hover); }
.ja-faq-item--open .ja-faq-item__icon { transform: rotate(45deg); }

.ja-faq-item__btn {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 1.75rem;
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  gap: 1rem;
}
.ja-faq-item__q {
  font-size: 1rem; font-weight: 600;
  color: var(--c-forest); line-height: 1.45;
}
.ja-faq-item__icon {
  flex-shrink: 0; width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--c-gold-lt);
  border: 1px solid rgba(201,168,76,0.35);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background 0.2s;
  color: var(--c-gold);
}
.ja-faq-item--open .ja-faq-item__icon {
  background: var(--c-gold); color: #fff;
}
.ja-faq-item__body {
  display: none;
  padding: 0 1.75rem 1.4rem;
  font-size: 0.95rem; line-height: 1.82;
  color: var(--c-body); border-top: 1px solid rgba(27,67,50,0.07);
  padding-top: 1rem;
}
.ja-faq-item--open .ja-faq-item__body { display: block; }

.ja-faq-cat-btn {
  padding: 0.55rem 1.35rem;
  border-radius: 100px; border: 1px solid rgba(27,67,50,0.18);
  background: transparent; font-size: 0.82rem; font-weight: 600;
  color: var(--c-body); cursor: pointer; transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.ja-faq-cat-btn:hover { border-color: var(--c-forest); color: var(--c-forest); }
.ja-faq-cat-btn--active {
  background: var(--c-forest); color: #fff; border-color: var(--c-forest);
}

.ja-faq-search {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--c-white);
  border: 1px solid rgba(27,67,50,0.18);
  border-radius: 100px; padding: 0.7rem 1.4rem;
  box-shadow: 0 2px 16px rgba(27,67,50,0.07);
  max-width: 480px; width: 100%;
}
.ja-faq-search input {
  flex: 1; border: none; background: none;
  font-size: 0.95rem; color: #1a1a1a; outline: none;
  font-family: 'Inter', sans-serif;
}
.ja-faq-search input::placeholder { color: #9ca3af; }

.ja-faq-contact-card {
  background: linear-gradient(135deg, var(--c-forest), var(--c-mid));
  border-radius: var(--radius-lg); padding: 2.5rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
  position: relative; overflow: hidden;
}
.ja-faq-contact-card::before {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  right: -80px; top: -80px;
}
.ja-faq-contact-card::after {
  content: ''; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  right: -20px; top: -20px;
}
.ja-testimonial {
  background: var(--c-bg2); overflow: hidden;
}
.ja-testimonial__card {
  background: var(--c-white);
  border: 1px solid rgba(27,67,50,0.08);
  border-radius: var(--radius-md); padding: 1.75rem;
  box-shadow: var(--shadow-card); flex-shrink: 0;
}
.ja-testimonial__stars { color: var(--c-gold); font-size: 0.85rem; letter-spacing: 2px; }
.ja-testimonial__text  { font-size: 0.9rem; line-height: 1.75; color: var(--c-body); margin-top: 0.75rem; }
.ja-testimonial__name  { font-size: 0.85rem; font-weight: 700; color: var(--c-forest); margin-top: 1rem; }
.ja-testimonial__loc   { font-size: 0.72rem; color: var(--c-body); letter-spacing: 0.04em; }

/* --- PARTNER PAGE --------------------------------- */
.partner-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1595001155897-c1e7b5e8741e?w=1800&q=80');
}
.partner-tier-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.partner-tier-line {
  flex: 1; height: 1px; background: rgba(27,67,50,0.12);
}
/* Marquee strip */
.ja-marquee-track {
  display: flex; gap: 1.5rem; width: max-content;
  animation: ja-marquee 28s linear infinite;
}
.ja-marquee-track:hover { animation-play-state: paused; }
@keyframes ja-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ja-marquee-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 0.7rem 1.6rem;
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.8); white-space: nowrap;
  flex-shrink: 0;
}
.ja-form-success { display: none; }
.ja-form-success.visible { display: block; }
.ja-form-body.hidden { display: none; }
.ja-process-step {
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.ja-process-step__num {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
  background: var(--c-gold-lt); border: 2px solid var(--c-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 900; color: var(--c-gold); line-height: 1;
}
.ja-process-step__connector {
  width: 2px; height: 32px; background: rgba(201,168,76,0.25);
  margin-left: 20px; margin-top: 4px;
}
/* Map placeholder */
.ja-map-placeholder {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  height: 360px; background: #e2ede8;
}
.ja-map-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.ja-map-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,42,30,0.4) 0%, transparent 60%);
}
.ja-map-dots {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.ja-map-dot {
  position: absolute; width: 14px; height: 14px;
  border-radius: 50%; background: var(--c-gold);
  box-shadow: 0 0 0 5px rgba(201,168,76,0.25);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100%{ box-shadow: 0 0 0 5px rgba(201,168,76,0.25); }
  50%{ box-shadow: 0 0 0 12px rgba(201,168,76,0.1); }
}

/* -- ABOUT PAGE ------------------------------- */
.about-hero {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.about-hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1601925260368-ae2f83cf8b7f?w=1800&q=80');
  background-size: cover; background-position: center 30%;
}
.about-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(15,42,30,0.93) 0%, rgba(27,67,50,0.76) 55%, rgba(27,67,50,0.28) 100%);
}
.about-hero__ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(201,168,76,0.18);
  pointer-events: none;
}
.about-hero__ring--1 { width: 520px; height: 520px; right: -100px; top: -120px; }
.about-hero__ring--2 { width: 360px; height: 360px; right: 60px; top: 40px; border-color: rgba(201,168,76,0.1); }
.about-hero__eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #C9A84C; border: 1px solid rgba(201,168,76,0.45);
  padding: 0.35rem 1.1rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.about-hero__title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900; line-height: 1.04; color: #fff;
}
.about-hero__title span { color: #C9A84C; }
.about-hero__sub {
  font-size: 1.05rem; font-weight: 400; color: rgba(255,255,255,0.78);
  max-width: 500px; line-height: 1.75; margin-top: 1.25rem;
}
.about-hero__stat-row { display: flex; gap: 1.25rem; margin-top: 2.5rem; flex-wrap: wrap; }
.about-hero__stat {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 14px;
  padding: 1rem 1.5rem; min-width: 130px;
}
.about-hero__stat-num { font-size: 1.9rem; font-weight: 900; color: #C9A84C; letter-spacing: -0.04em; line-height: 1; }
.about-hero__stat-lbl { font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.65); margin-top: 0.3rem; letter-spacing: 0.05em; }
.about-section__label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #2db77a; margin-bottom: 0.5rem;
}
.about-section__title {
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
}
.about-section__body { font-size: 1rem; line-height: 1.82; color: #4a5568; }

.about-belief { background: #fff; overflow: hidden; }
.about-belief__img-wrap {
  position: relative; border-radius: 24px; overflow: hidden; height: 500px; flex-shrink: 0;
}
.about-belief__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-belief__img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,42,30,0.6) 100%);
}
.about-belief__badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 2;
  background: rgba(201,168,76,0.96); backdrop-filter: blur(8px);
  border-radius: 14px; padding: 0.9rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.about-belief__badge-num  { font-size: 1.6rem; font-weight: 700; color: #fff; letter-spacing: -0.04em; line-height: 1; }
.about-belief__badge-text { font-size: 0.7rem; font-weight: 500; color: #fff; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.4; }

.about-belief__quote {
  font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 800;
  line-height: 1.4; letter-spacing: -0.02em; position: relative;
}
.about-belief__quote::before {
  content: '\201C'; font-size: 7rem; line-height: 0; vertical-align: -2.8rem;
  color: rgba(201,168,76,0.3); font-family: Georgia, serif; margin-right: 0.1em;
}
.about-belief__body {font-size: 0.975rem; line-height: 1.82; }
.about-belief__line { width: 48px; height: 3px; background: #219e1d; border-radius: 2px; margin: 1.75rem 0; }
.about-quality { background: #F5F0E8; }
.about-quality__card {
  background: #fff; border-radius: 20px; border: 1px solid rgba(27,67,50,0.08);
  padding: 2rem; box-shadow: 0 4px 32px rgba(27,67,50,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.about-quality__card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(27,67,50,0.13); }
.about-quality__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #2c5e3b, #2D6A4F);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.about-solutions { background: #fff; overflow: hidden; }
.about-solutions__img-wrap {
  position: relative; border-radius: 24px; overflow: hidden; height: 480px;
}
.about-solutions__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-solutions__pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: #fff; border: 1px solid rgba(27,67,50,0.13);
  border-radius: 100px; padding: 0.65rem 1.3rem;
  font-size: 0.9rem; font-weight: 500; color: #2c5e3b; transition: all 0.2s; cursor: default;
}
.about-solutions__pill:hover { background: #2c5e3b; color: #fff; border-color: #2c5e3b; }
.about-solutions__pill-dot { width: 7px; height: 7px; border-radius: 50%; background: #C9A84C; flex-shrink: 0; }
.about-wellness { overflow: hidden; }
.about-wellness__img-wrap {
  position: relative; border-radius: 24px; overflow: hidden; height: 520px;
}
.about-wellness__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-wellness__img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(15,42,30,0.6) 100%);
}
.about-wellness__mini {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
}
.about-wellness__mini-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  background: rgba(201,168,76,0.18);
}
.about-wellness__mini-title { font-weight: 700; font-size: 0.9rem; }
.about-wellness__mini-sub   { font-size: 0.75rem; color: rgba(32, 32, 32, 0.75); margin-top: 2px; }
.about-why { background: #fff; }
.about-why__item { display: flex; align-items: flex-start; gap: 1rem; }
.about-why__check {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(201,168,76,0.14); border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.about-why__item-title { font-size: 0.975rem; font-weight: 600; }
.about-why__item-sub   { font-size: 0.82rem; margin-top: 3px; line-height: 1.55; }
.about-cta { position: relative; overflow: hidden; }
.about-cta__bg {
  position: absolute; inset: 0;
  background-image: url('https://plus.unsplash.com/premium_photo-1772037292737-c40adeebeedf?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover; background-position: center;
  filter: saturate(0.5) brightness(0.3);
}
.about-cta__overlay {
  position: absolute; inset: 0;
  background: #00000025;
}
.about-cta__title { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; }
.about-cta__body  { color: #e4e4e4; font-size: 1.05rem; line-height: 1.75; }
.about-cta__btn {
  display: inline-block; background: #2c5e3b; color: #fff;
  font-weight: 700; font-size: 0.875rem; letter-spacing: 0.06em;
  padding: 0.9rem 2.25rem; border-radius: 100px; text-transform: uppercase;
  transition: all 0.22s; text-decoration: none;
}
.about-cta__btn:hover { background: #0f2a1e; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(15,42,30,0.4); }
.about-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.about-reveal--left  { transform: translateX(-36px); }
.about-reveal--right { transform: translateX(36px); }
.about-reveal--visible { opacity: 1 !important; transform: translate(0,0) !important; }
.about-reveal--d1 { transition-delay: 0.1s; }
.about-reveal--d2 { transition-delay: 0.2s; }
.about-reveal--d3 { transition-delay: 0.3s; }
.about-reveal--d4 { transition-delay: 0.4s; }

/* -- FAQs PAGE ---------------------------------- */
.faq-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?w=1800&q=80');
}
.ja-faq-item__body { display: none; }
.ja-faq-item--open .ja-faq-item__body { display: block; }
.ja-faq-item--open .ja-faq-item__icon {
  transform: rotate(45deg);
  background: var(--c-gold);
  color: #fff;
}
#no-results { display: none; }
#no-results.visible { display: block; }
.ja-faq-sidebar {
  position: sticky; top: 5rem;
}
.ja-faq-cat-btn-sidebar {
  display: block; width: 100%; text-align: left;
  padding: 0.65rem 1.1rem; border-radius: 10px;
  border: none; background: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem; font-weight: 500;
  color: var(--c-body); transition: all 0.2s;
}
.ja-faq-cat-btn-sidebar:hover { background: rgba(27,67,50,0.06); color: var(--c-forest); }
.ja-faq-cat-btn-sidebar.active {
  background: var(--c-forest); color: #fff; font-weight: 600;
}
.ja-faq-cat-btn-sidebar .cat-count {
  float: right; font-size: 0.72rem;
  background: rgba(201,168,76,0.25); color: #92742a;
  padding: 0.1rem 0.5rem; border-radius: 100px; font-weight: 700;
}
.ja-faq-cat-btn-sidebar.active .cat-count {
  background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
}
.faq-stat-bar {
  background: var(--c-dark);
  > div {display: grid; grid-template-columns: repeat(3, 1fr);}
}
.faq-stat-bar__item {
  text-align: center; padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.faq-stat-bar__item:first-child { border-left: 1px solid rgba(255,255,255,0.06); }
.highlight {
  background: rgba(201,168,76,0.3);
  border-radius: 3px; padding: 0 2px;
}