/* ===========================================================
   KRICHIT PHARMA — Professional Pharma Theme
   Inspired by the clean, corporate style of Naviksha Healthcare
=========================================================== */
:root {
  /* Brand colours — lighter tone */
  --blue:        #3b82f6;
  --blue-dark:   #2563eb;
  --blue-light:  #eff6ff;
  --blue-mid:    #dbeafe;
  --navy:        #255ea3;
  --navy-soft:   #3472be;

  /* Accent */
  --amber:       #f5a623;
  --amber-soft:  #fff4e0;
  --green:       #27ae60;
  --green-soft:  #e8f8ef;

  /* Neutrals */
  --white:       #ffffff;
  --off-white:   #f5f8ff;
  --light-grey:  #f0f4fa;
  --border:      #e2e8f0;
  --text:        #1a2035;
  --text-soft:   #4a5578;
  --text-faint:  #8896b3;

  /* Typography */
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --maxw:        1240px;
  --r-sm:        6px;
  --r-md:        12px;
  --r-lg:        20px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(14,99,255,.08);
  --shadow-md:   0 4px 24px rgba(14,99,255,.12);
  --shadow-lg:   0 8px 40px rgba(14,99,255,.18);
  --shadow-card: 0 2px 12px rgba(11,31,79,.07), 0 1px 3px rgba(11,31,79,.05);
}

/* ── Reset & base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}
p { color: var(--text-soft); line-height: 1.75; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; }
svg { fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Shared helpers ─────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-eyebrow.light {
  color: #c5d8ff;
  background: rgba(255,255,255,.1);
}
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  margin-bottom: 12px;
}
.section-head p { font-size: 1rem; }

.rx-chip {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: .68rem; font-weight: 700;
  background: var(--amber); color: #fff;
  padding: 2px 9px; border-radius: 5px; margin: 0 3px;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  font-weight: 600; font-size: .9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,99,255,.35);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── Top info bar ────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 9px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
}
.topbar-right a {
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.topbar-right a:hover { color: #fff; }

/* ── Navigation ──────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.nav.is-scrolled {
  box-shadow: 0 4px 20px rgba(11,31,79,.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 80px;
}
.brand { margin-right: auto; display: flex; align-items: center; }
.brand-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  border-radius: var(--r-sm);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-cta { margin-left: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; padding: 0;
}
.nav-toggle span {
  width: 100%; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ── Hero ────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 50%, var(--blue) 100%);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,255,255,.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(59,130,246,.3) 0%, transparent 70%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-bottom: 100px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a0c0ff;
  background: rgba(255,255,255,.1);
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.15);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-accent {
  color: #60a0ff;
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-wave {
  position: relative;
  z-index: 3;
  line-height: 0;
  margin-top: -2px;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── Stats strip ─────────────────────────────── */
.stats-strip {
  background: var(--white);
  padding: 0 0 20px;
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 32px 32px;
}
.stat-item {
  text-align: center;
  padding: 10px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  font-family: var(--font);
}
.stat-pct {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  display: inline;
}
.stat-label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ── About ───────────────────────────────────── */
.about {
  padding: 90px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text .section-eyebrow { margin-bottom: 16px; }
.about-text h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  margin-bottom: 20px;
}
.about-text p { margin-bottom: 16px; font-size: .97rem; }
.about-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}
.badge-icon {
  width: 26px; height: 26px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.about-img-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.about-img-card.large {
  grid-row: span 2;
}
.about-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
  transition: transform .4s ease;
}
.about-img-card:hover img { transform: scale(1.04); }
.about-img-card.large img { min-height: 260px; }
.about-img-card:not(.large) img { height: 150px; }

/* ── Therapy strip ───────────────────────────── */
.therapy-strip {
  padding: 90px 0;
  background: var(--off-white);
}
.therapy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.therapy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.therapy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}
.therapy-card:hover::before,
.therapy-card.is-active::before { transform: scaleX(1); }
.therapy-card:hover,
.therapy-card.is-active {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.therapy-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.therapy-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.therapy-card p {
  font-size: .85rem;
  color: var(--text-faint);
  line-height: 1.55;
  margin: 0;
}

/* ── Products ────────────────────────────────── */
.products { padding: 90px 0; background: var(--white); }

.filter-row {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.pill {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-soft);
  cursor: pointer;
  transition: all .2s ease;
}
.pill:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.pill.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Product card ────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.product-card.is-hidden { display: none; }

.card-media {
  position: relative;
  height: 220px;
  background: var(--light-grey);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .card-media img { transform: scale(1.06); }

.card-top-row {
  position: absolute;
  top: 12px; left: 12px; right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}
.pill-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
}
.pill-tag[data-cat="pain"]       { background: #e74c3c; }
.pill-tag[data-cat="nutrition"]  { background: #27ae60; }
.pill-tag[data-cat="diabetes"]   { background: #8e44ad; }
.pill-tag[data-cat="cardiac"]    { background: #e91e63; }
.pill-tag[data-cat="gastro"]     { background: #16a085; }
.pill-tag[data-cat="antibiotics"]{ background: #e67e22; }

.rx-badge {
  font-size: .65rem; font-weight: 700;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(245,166,35,.4);
  flex-shrink: 0;
}

.card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Product name placeholder */
.card-name-row {
  min-height: 30px;
  margin-bottom: 8px;
}
.product-name-link {
  display: inline-block;
  font-size: .82rem;
  font-weight: 500;
  font-style: italic;
  color: var(--amber);
  border-bottom: 2px dashed var(--amber);
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--amber-soft);
  transition: background .2s;
  cursor: text;
}
.product-name-link:hover {
  background: #ffe5b4;
}
.product-name-link.filled {
  font-style: normal;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: none;
  background: none;
  padding: 0;
  cursor: default;
}
.product-name-link.filled:hover { background: none; }

.card-comp {
  font-size: .78rem;
  color: var(--text-faint);
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 400;
}

/* Card bullets */
.card-bullets {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.card-bullets li {
  font-size: .85rem;
  color: var(--text-soft);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.card-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.card-pack {
  font-size: .78rem;
  color: var(--text-faint);
  font-weight: 500;
}
.card-link {
  font-size: .84rem;
  font-weight: 600;
  color: var(--blue);
  background: none;
  border: none;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--blue-mid);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all .2s ease;
}
.card-link:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ── Values ──────────────────────────────────── */
.values {
  padding: 90px 0;
  background: var(--off-white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all .3s ease;
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue-mid);
}
.value-icon-wrap {
  width: 60px; height: 60px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
}
.value-svg {
  width: 30px; height: 30px;
  stroke: var(--blue);
  stroke-width: 2;
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy);
}
.value-card p { font-size: .87rem; line-height: 1.6; margin: 0; }

/* ── CTA / Contact ───────────────────────────── */
.cta-banner { padding: 90px 0; background: var(--navy); }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.cta-text { padding-top: 8px; }
.cta-text h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  color: #fff;
  margin-bottom: 14px;
  margin-top: 10px;
}
.cta-text > p {
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  font-size: .97rem;
  max-width: 400px;
}
.cta-contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-contact-link {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s;
}
.cta-contact-link:hover { color: #fff; }

.cta-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.cta-form h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 22px;
  font-weight: 600;
}
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--light-grey);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,99,255,.12);
  background: #fff;
}
.form-note {
  font-size: .82rem;
  color: var(--green);
  margin-top: 10px;
  min-height: 1.2em;
}

/* ── Footer ──────────────────────────────────── */
.footer-top {
  background: #0b1a3d;
  padding: 70px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo {
  height: 44px; width: auto;
  object-fit: contain;
  border-radius: var(--r-sm);
}
.footer-brand p {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}
.footer-addr { font-size: .82rem !important; color: rgba(255,255,255,.5) !important; }

.footer-col h4 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-btn {
  margin-top: 8px;
  padding: 10px 20px;
  font-size: .85rem;
}

.footer-bottom {
  background: #071029;
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}
.disclaimer { max-width: 60ch; text-align: right; }

/* ── Modal ───────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(11,31,79,.65);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--white);
  border-radius: var(--r-lg);
  max-width: 800px; width: 100%;
  max-height: 90vh; overflow: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative;
  transform: translateY(24px) scale(.97); opacity: 0;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s ease;
  box-shadow: 0 40px 100px rgba(11,31,79,.35);
}
.modal-backdrop.is-open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal-media {
  background: var(--light-grey);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  overflow: hidden;
}
.modal-media img {
  max-height: 320px; width: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.modal-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.modal-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.modal-body h3 { font-size: 1.4rem; margin-bottom: 6px; }
.modal-comp {
  font-size: .78rem;
  color: var(--text-faint);
  margin-bottom: 12px;
  line-height: 1.6;
}
#modalDesc { font-size: .9rem; margin-bottom: 0; }
.modal-meta {
  display: flex;
  gap: 28px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.modal-meta div { display: flex; flex-direction: column; gap: 3px; }
.modal-meta span {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-faint);
  font-weight: 500;
}
.modal-meta strong { font-size: .88rem; color: var(--navy); }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 1.4rem; line-height: 1;
  color: var(--text-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--navy); color: #fff; }

/* Modal bullets */
.modal-bullets {
  list-style: none; margin: 14px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.modal-bullets li {
  font-size: .88rem;
  color: var(--text-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.modal-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

/* ── Scroll reveal ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Scroll-to-top ───────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 500;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.2rem;
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  cursor: pointer;
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* ── Focus states ────────────────────────────── */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}



/* ── Mission Vision ────────────────────────────── */
.mission-vision { padding: 100px 0; background: var(--light-grey); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mission-card { background: var(--white); padding: 40px; border-radius: var(--r-md); box-shadow: var(--shadow-sm); text-align: center; transition: transform 0.3s ease; }
.mission-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.mission-icon { font-size: 3rem; margin-bottom: 20px; }
.mission-card h4 { font-size: 1.25rem; color: var(--navy); margin-bottom: 15px; }

/* ── What We Offer ─────────────────────────────── */
.what-we-offer { padding: 100px 0; background: var(--white); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.offer-card { background: var(--light-grey); border-radius: var(--r-md); overflow: hidden; }
.offer-img { width: 100%; height: 200px; object-fit: cover; }
.offer-text { padding: 30px; }
.offer-text h4 { font-size: 1.25rem; color: var(--navy); margin-bottom: 12px; }
.offer-text p { font-size: 0.9rem; color: var(--text); }

/* ── Why Choose Us Timeline ────────────────────── */
.why-choose-us { padding: 100px 0; background: var(--navy); color: var(--white); }
.why-choose-us .section-head h2, .why-choose-us .section-head p { color: var(--white); }
.timeline-container { position: relative; max-width: 800px; margin: 0 auto; padding-left: 42px; }
.timeline-container::before { content: ''; position: absolute; left: 21px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.2); }
.timeline-item { position: relative; margin-bottom: 50px; }
.timeline-icon { position: absolute; left: -21px; top: 0; width: 42px; height: 42px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transform: translateX(-50%); box-shadow: 0 0 0 4px var(--navy); z-index: 2; }
.timeline-content { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 30px; border-radius: var(--r-md); }
.timeline-content h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 10px; }
.timeline-content p { color: rgba(255,255,255,0.8); margin: 0; }

/* ── Floating Actions ──────────────────────────── */
.floating-actions { position: fixed; right: 20px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 10px; z-index: 999; }
.float-btn { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); box-shadow: var(--shadow-card); transition: transform 0.2s ease; }
.float-btn svg { width: 22px; height: 22px; }
.float-btn:hover { transform: scale(1.1); color: var(--white); }
.float-wa { background: #25D366; }
.float-mail { background: var(--blue); }

@media (max-width: 480px) {
  .stat-item { width: 100%; }
  .adv-grid { grid-template-columns: 1fr; }
  .about, .therapy-strip, .products, .values, .cta-banner, 
  .mission-vision, .what-we-offer, .why-choose-us, .policies, .advantages { 
    padding: 40px 0; 
  }
}

/* ── Policies Section ──────────────────────────── */
.policies { padding: 100px 0; background: var(--white); }
.policies-inner { display: flex; align-items: center; gap: 60px; }
.policies-text { flex: 1; }
.policies-text h2 { margin-bottom: 20px; }
.policies-list { list-style: none; margin-top: 30px; }
.policies-list li { margin-bottom: 20px; padding-left: 30px; position: relative; color: var(--text); line-height: 1.6; }
.policies-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: bold; font-size: 1.2rem; }
.policies-image { flex: 1; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.policies-image img { width: 100%; height: auto; display: block; }

/* ── Advantages Section ────────────────────────── */
.advantages { padding: 100px 0; background: var(--light-grey); }
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.adv-card { background: var(--white); padding: 40px 30px; border-radius: var(--r-md); box-shadow: var(--shadow-sm); text-align: center; transition: transform 0.3s ease; }
.adv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.adv-icon { font-size: 3rem; margin-bottom: 20px; }
.adv-card h4 { font-size: 1.2rem; color: var(--navy); margin-bottom: 15px; }
.adv-card p { font-size: 0.9rem; color: var(--text); }

/* ── Why Choose Us (Card Grid) ────────────────── */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.choose-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid var(--blue);
}
.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.choose-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.choose-card h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.choose-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}
/* ── Strengths List ───────────────────────────── */
.strengths-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: left;
  max-width: fit-content;
}
.strengths-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}
.strengths-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--blue);
  font-weight: bold;
}

/* ── Responsive Overrides ──────────────────────── */
@media (max-width: 1100px) {
  .product-grid    { grid-template-columns: repeat(2, 1fr); }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-inner     { grid-template-columns: 1fr; gap: 40px; }
  .about-visual    { order: -1; }
  .about-img-card.large img { min-height: 200px; }
}

@media (max-width: 900px) {
  .therapy-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-inner    { grid-template-columns: 1fr 1fr; }
  .cta-inner       { grid-template-columns: 1fr; gap: 40px; }
  .stat-item       { padding: 10px 28px; }
  .choose-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .wrap            { padding: 0 20px; }
  .topbar-left     { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle      { display: flex; }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute; top: 80px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: 0 20px 30px -10px rgba(11,31,79,.15);
    z-index: 300;
  }
  .nav.is-open .nav-links a {
    padding: 10px 14px;
  }
  .hero h1  { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-inner { flex-wrap: wrap; gap: 0; }
  .stat-divider { display: none; }
  .stat-item { width: 50%; border-bottom: 1px solid var(--border); padding: 20px 16px; }
  .therapy-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .modal        { grid-template-columns: 1fr; }
  .modal-media  { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .modal-media img { max-height: 200px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .disclaimer   { text-align: center; max-width: 100%; }
  .mission-grid { grid-template-columns: 1fr; }
  .offer-grid   { grid-template-columns: 1fr; }
  .policies-inner { flex-direction: column; gap: 30px; }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .floating-actions { right: 10px; gap: 8px; }
  .float-btn { width: 40px; height: 40px; }
  .float-btn svg { width: 18px; height: 18px; }
  .scroll-top   { bottom: 20px; right: 20px; }
  .hero-inner   { padding-bottom: 80px; }
  .cta-form     { padding: 24px 20px; }
  .about, .therapy-strip, .products, .values, .cta-banner, 
  .mission-vision, .what-we-offer, .why-choose-us, .policies, .advantages { 
    padding: 60px 0; 
  }
  .timeline-content { padding: 20px; }
}

@media (max-width: 600px) {
  .choose-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .topbar-right { flex-direction: column; gap: 4px; align-items: center; width: 100%; }
  .stat-item { width: 100%; }
  .adv-grid { grid-template-columns: 1fr; }
  .about, .therapy-strip, .products, .values, .cta-banner, 
  .mission-vision, .what-we-offer, .why-choose-us, .policies, .advantages { 
    padding: 40px 0; 
  }
}
