*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {

  /* Primary — exact brand green #4aef3b, with derived shades for contrast/readability */

  --brand-dark: #106808;

  --brand-mid: #1ebd0f;

  --brand-light: #4aef3b;

  --brand-pale: #dcf0db;

  --brand-ultra: #f4f9f3;



  --accent: #2f8f1d;

  --accent-light: #4aef3b;

  --accent-ultra: #eaf9e6;



  --ink: #101b2e;

  --ink-mid: #26374f;

  --muted: #0B66C2;

  --border: #d9e3ee;

  --white: #ffffff;

  --off-white: #f7fafc;

}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  position: relative;
}

/* Site-wide watermark background (whole site/body pe ye image dikhegi, scroll pe fixed rahegi) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/reach-hero-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: min(1700px, 100vw);
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(16, 104, 8, 0.05);
}
.nav-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}

nav .logo-mark img {
  height: auto;
  width: 150px;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-left: auto;
  margin-right: 40px;
}
.mobile-cta-item {
  display: none;
}
.nav-links > li {
  position: relative;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links > li > a {
  position: relative;
  display: inline-block;
  padding: 6px 1px;
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--brand-mid), var(--accent));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--brand-dark);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  transform: scaleX(1);
}

/* ---------- Products dropdown ---------- */
.has-dropdown {
  display: flex;
  align-items: center;
}
.nav-drop-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  position: relative;
}
.nav-link-main {
  position: relative;
  display: inline-block;
  padding: 6px 1px;
}
.nav-link-main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--brand-mid), var(--accent));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-link-main:hover,
.nav-link-main.active {
  color: var(--brand-dark);
}
.nav-link-main:hover::after,
.nav-link-main.active::after,
.has-dropdown:hover .nav-link-main::after,
.has-dropdown.open .nav-link-main::after {
  transform: scaleX(1);
}
.has-dropdown:hover .nav-link-main,
.has-dropdown.open .nav-link-main {
  color: var(--brand-dark);
}

.nav-drop-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--muted);
  border-radius: 5px;
  transition:
    color 0.2s,
    background 0.2s,
    transform 0.3s ease;
}
.nav-drop-caret svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.nav-drop-caret:hover,
.nav-drop-caret:focus-visible {
  color: var(--brand-dark);
  background: var(--brand-ultra);
}
.has-dropdown:hover .nav-drop-caret svg,
.has-dropdown.open .nav-drop-caret svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(16, 104, 8, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 200;
  transition:
    opacity 0.25s ease,
    transform 0.25s cubic-bezier(0.65, 0, 0.35, 1),
    visibility 0.25s;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-mid);
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
}
.dropdown-menu a::after {
  display: none;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a.active {
  background: var(--brand-ultra);
  color: var(--brand-dark);
  padding-left: 20px;
}

@media (min-width: 901px) {
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu,
  .has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
.nav-cta {
  background: var(--brand-dark);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--brand-mid);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO (home) */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 130px 5% 60px;
  max-width: 1600px;
  margin: 0 auto;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background:
    radial-gradient(circle at 80% 20%, rgba(74, 239, 59, 0.1), transparent 55%),
    linear-gradient(160deg, var(--brand-ultra) 0%, var(--brand-pale) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-left {
  position: relative;
  z-index: 1;
  padding-right: 5%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(120deg, var(--accent-ultra), var(--brand-pale));
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  border: 1px solid var(--accent-light);
  box-shadow: 0 4px 14px rgba(74, 239, 59, 0.18);
}
.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(74, 239, 59, 0.25);
}
.hero h1 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--brand-dark);
}
.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  color: white;
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 104, 8, 0.22);
  transition:
    transform 0.25s cubic-bezier(0.65, 0, 0.35, 1),
    box-shadow 0.25s ease,
    background 0.25s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--ink-mid), var(--brand-dark));
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 104, 8, 0.3);
}
.btn-ghost {
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.btn-ghost:hover {
  gap: 12px;
}
.hero-right {
  position: relative;
  z-index: 1;
  padding-left: 6%;
}
.hero-right::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -30px;
  width: 340px;
  height: 340px;
  background-image: url("../images/ndrx-bg-molecule.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  mix-blend-mode: multiply;
  opacity: 0.16;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-right::before { display: none; }
}
.hero-visual {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 34px;
  box-shadow: 0 24px 60px rgba(16, 104, 8, 0.14);
  position: relative;
  overflow: hidden;
}
.hero-visual::after {
  content: "";
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-pale), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

/* ============================================
   REACH AT A GLANCE — compact sidebar panel
   ============================================ */
.rag-panel {
  --rag-gold: #c9a24b;
  --rag-gold-light: #e6c877;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(201, 162, 75, 0.10), transparent 55%),
    radial-gradient(90% 90% at 0% 100%, rgba(74, 239, 59, 0.08), transparent 55%);
}
.rag-bg-dots {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  height: 220px;
  z-index: -1;
  background-image: radial-gradient(rgba(16, 27, 46, 0.07) 1.4px, transparent 1.4px);
  background-size: 14px 14px;
  mask-image: radial-gradient(ellipse 70% 65% at 20% 15%, #000 0%, transparent 75%);
  opacity: 0.7;
}

.rag-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.rag-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--brand-pale);
  background: var(--brand-ultra);
  color: var(--brand-dark);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rag-badge-icon { font-size: 14px; }
.rag-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rag-gold);
}
.rag-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-light);
  box-shadow: 0 0 0 0 rgba(74, 239, 59, 0.5);
  animation: ragLivePulse 2.2s ease-out infinite;
}
@keyframes ragLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 239, 59, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(74, 239, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 239, 59, 0); }
}
.rag-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.rag-heading {
  font-family: "DM Sans", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 0;
}
.rag-heading em {
  position: relative;
  font-style: normal;
  background: linear-gradient(120deg, var(--brand-dark), var(--brand-mid) 70%, var(--rag-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rag-total {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--brand-dark), var(--brand-mid) 130%);
  border: 1px solid var(--rag-gold);
  box-shadow: 0 12px 24px rgba(16, 104, 8, 0.22);
}
.rag-total-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--white);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06));
  border: 1.5px solid var(--rag-gold-light);
}
.rag-total-icon svg { width: 16px; height: 16px; }
.rag-total-body { min-width: 0; }
.rag-total-value {
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  white-space: nowrap;
}
.rag-total-label {
  margin-top: 1px;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}
.rag-rule {
  display: block;
  width: 54px;
  height: 3px;
  border-radius: 4px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--brand-light), var(--rag-gold));
}
.rag-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 22px;
}

/* ---- Stat cards: tilted, alternating dark/light, gold-edged ---- */
.rag-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.rag-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 14px 17px;
  border-radius: 14px;
  overflow: hidden;
  transform: rotate(calc((var(--rag-i, 0) % 2) * 1deg - 0.6deg)) translateY(10px);
  opacity: 0;
  border: 1px solid var(--rag-gold);
  box-shadow: 0 10px 20px rgba(16, 40, 20, 0.10);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1.2), box-shadow 0.3s ease;
}
.rag-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--rag-gold), var(--rag-gold-light), var(--rag-gold));
}
.rag-card::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -30%;
  width: 60%;
  height: 220%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(20deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.rag-card:hover::after { transform: rotate(20deg) translateX(160%); }
.rag-card-wide { grid-column: span 2; }
#reachGlance.is-visible .rag-card {
  opacity: 1;
  transform: rotate(calc((var(--rag-i, 0) % 2) * 1deg - 0.6deg)) translateY(0);
  transition-delay: calc(var(--rag-i, 0) * 80ms + 100ms);
}
.rag-card:hover {
  transform: rotate(0deg) translateY(-3px) scale(1.015);
  box-shadow: 0 16px 28px rgba(16, 104, 8, 0.18);
  z-index: 2;
}
.rag-card-dark {
  background: linear-gradient(150deg, var(--brand-dark), var(--brand-mid) 130%);
  color: var(--white);
}
.rag-card-light {
  background: var(--white);
  color: var(--ink);
}
.rag-card-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--rag-gold-light);
}
.rag-card-dark .rag-card-icon { background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)); color: var(--white); }
.rag-card-light .rag-card-icon { background: linear-gradient(145deg, var(--brand-ultra), var(--white)); color: var(--brand-dark); }
.rag-card-icon svg { width: 17px; height: 17px; position: relative; z-index: 1; }
.rag-card-body { min-width: 0; }
.rag-card-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1px;
}
.rag-card-value {
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}
.rag-card-value.rag-static { font-size: 21px; }
.rag-plus { font-size: 0.6em; opacity: 0.85; margin-left: 1px; }
.rag-card-dark .rag-card-value { color: var(--white); }
.rag-card-light .rag-card-value { color: var(--brand-dark); }
.rag-card-label {
  margin-top: 1px;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.3;
}
.rag-card-dark .rag-card-label { opacity: 0.88; }
.rag-card-light .rag-card-label { color: var(--muted); }
.rag-card-dots {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 18px;
  height: 18px;
  background-image: radial-gradient(currentColor 1.1px, transparent 1.1px);
  background-size: 5px 5px;
  opacity: 0.25;
}
.rag-card-dark .rag-card-dots { color: var(--white); }
.rag-card-light .rag-card-dots { color: var(--brand-dark); }

/* ---- Trust strip ---- */
.rag-trust {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(120deg, var(--brand-dark), var(--brand-mid) 140%);
  border: 1px solid var(--rag-gold);
  box-shadow: 0 12px 26px rgba(16, 104, 8, 0.2);
  overflow: hidden;
}
.rag-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(160px 60px at 15% 0%, rgba(255, 255, 255, 0.14), transparent 70%);
  pointer-events: none;
}
.rag-trust-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.rag-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid var(--rag-gold-light);
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .rag-cards { grid-template-columns: repeat(2, 1fr); }
  .rag-header { flex-direction: column; align-items: flex-start; }
  .rag-total { width: 100%; }
}
@media (max-width: 480px) {
  .rag-heading { font-size: 26px; }
  .rag-cards { grid-template-columns: 1fr; }
  .rag-card { transform: none !important; }
  .rag-trust { border-radius: 16px; }
}


.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--brand-pale);
  color: var(--brand-mid);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.tag.gold {
  background: var(--accent-ultra);
  color: var(--accent);
}

/* MARQUEE */
.marquee-strip {
  background: var(--brand-dark);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 20s linear infinite;
}
.marquee-inner span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 40px;
}
.marquee-inner span.dot {
  color: var(--accent-light);
  padding: 0;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* SECTION SHARED */
section {
  padding: 25px 5%;
}
.section-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-mid);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--brand-mid);
  display: inline-block;
}
.section-title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
}

/* PAGE TITLE BAR (shared light breadcrumb header — used by Contact and any
   interior page that needs a simple title instead of a full hero) */
.page-title-bar {
  background: linear-gradient(120deg, var(--brand-pale), #dcf0db 60%, var(--accent-ultra));
  border-bottom: 1px solid var(--border);

  /* Navbar ke just niche */
  margin-top: 80px;
  padding: 30px 5% 30px;
}

.page-title-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.page-title-bar h1 {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--ink);
}

.page-title-bar .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.page-title-bar .breadcrumb a {
  color: var(--brand-mid);
  text-decoration: none;
  font-weight: 500;
}

.page-title-bar .breadcrumb a:hover {
  text-decoration: underline;
}

.page-title-bar .breadcrumb span[aria-hidden] {
  color: var(--border);
}

.page-title-bar .breadcrumb .current {
  color: var(--ink-mid);
}
@media (max-width: 600px) {
  .page-title-bar { padding: 104px 6% 18px; }
}

/* ABOUT (home teaser section) */
.about {
  background: white ;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1440px;
}
.about-left .section-desc {
  margin-bottom: 36px;
}
.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.6;
}
.val-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.val-icon svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-right-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.about-right-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--brand-pale);
  z-index: 0;
}
.mission-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-mid);
  font-weight: 600;
  margin-bottom: 14px;
}
.mission-text {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.founder-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  color: white;
  font-size: 16px;
  font-weight: 600;
}
.founder-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.founder-title {
  font-size: 12px;
  color: var(--muted);
}

/* MISSION / VISION cards (About page) */
.mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.mv-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(16, 104, 8, 0.1);
}
.mv-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--brand-pale);
  z-index: 0;
}
.mv-card.accent::after {
  background: var(--accent-ultra);
}
.mv-card > * {
  position: relative;
  z-index: 1;
}
.mv-card h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 26px;
  margin-bottom: 18px;
  color: var(--ink);
}
.mv-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 14px;
}
.mv-card p:last-of-type {
  margin-bottom: 0;
}
.mv-card .section-tag {
  margin-bottom: 10px;
}
.mv-card.accent .section-tag {
  color: var(--accent);
}
.mv-card.accent .section-tag::before {
  background: var(--accent);
}

/* ==========================================================
                        FOOTER
   Compact, left-aligned, premium corporate footer.
========================================================== */

footer {
  background: var(--off-white);
  color: var(--muted);
  padding: 64px 5% 0;
  border-top: 1px solid var(--border);
  position: relative;
  text-align: left;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-mid), var(--accent), var(--brand-light));
}

/* ==========================================================
                    GRID
========================================================== */

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  text-align: left;
  padding-bottom: 40px;
}

.footer-top > * {
  min-width: 0;
}

/* ==========================================================
                    BRAND
========================================================== */

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 320px;
}

.footer-brand .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  margin-bottom: 0;
}

.logo-mark {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
}

.logo-mark img {
  width: 168px;
  height: auto;
  display: block;
}

.footer-brand-text {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.02em;
  margin-top: 10px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

/* ==========================================================
                    COLUMNS
========================================================== */

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 2px;
}

.footer-col h4 {
  color: var(--ink);
  font-size: 13px;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 13px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  transition:
    color 0.2s,
    padding-left 0.2s;
  width: fit-content;
}

.footer-col a:last-child {
  margin-bottom: 0;
}

.footer-col a:hover {
  color: var(--brand-mid);
  padding-left: 4px;
}

/* ==========================================================
                    BOTTOM
========================================================== */

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  text-align: left;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.footer-green {
  color: var(--brand-dark);
  font-weight: 600;
}

/* ==========================================================
                    TABLET
========================================================== */

@media (max-width: 992px) {
  footer {
    padding: 56px 6% 0;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 32px;
  }

  .footer-brand {
    grid-column: 1/-1;
    max-width: 420px;
    margin: 0;
  }
}

/* ==========================================================
                    MOBILE
========================================================== */

@media (max-width: 768px) {
  footer {
    padding: 48px 6% 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-col {
    align-items: flex-start;
  }

  .logo-mark img {
    width: 148px;
  }

  .footer-brand p {
    font-size: 13.5px;
  }

  .footer-col h4 {
    font-size: 12.5px;
    margin-bottom: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 18px 0 24px;
  }

  .footer-bottom p {
    font-size: 12.5px;
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-left > * {
  animation: fadeUp 0.7s ease both;
}
.hero-badge {
  animation-delay: 0.1s;
}
.hero h1 {
  animation-delay: 0.22s;
}
.hero-desc {
  animation-delay: 0.34s;
}
.hero-actions {
  animation-delay: 0.46s;
}
.hero-right {
  animation: fadeUp 0.9s 0.3s ease both;
}
.cs-inner > * {
  animation: fadeUp 0.7s ease both;
}
.cs-inner > *:nth-child(2) {
  animation-delay: 0.1s;
}
.cs-inner > *:nth-child(3) {
  animation-delay: 0.2s;
}
.cs-inner > *:nth-child(4) {
  animation-delay: 0.3s;
}
.cs-inner > *:nth-child(5) {
  animation-delay: 0.4s;
}
.cs-inner > *:nth-child(6) {
  animation-delay: 0.5s;
}

/* SCROLL TOP BUTTON */
#topBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--brand-dark);
  color: white;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(16, 104, 8, 0.25);
  transition: background 0.2s;
}
#topBtn:hover {
  background: var(--brand-mid);
}
#topBtn svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }
  .hero::before {
    display: none;
  }
  .hero-right {
    padding-left: 0;
    margin-top: 40px;
  }
  .about-grid,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mv-row {
    grid-template-columns: 1fr;
  }
  nav .nav-links {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(16, 104, 8, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    padding: 0 6%;
    transition:
      max-height 0.3s ease,
      opacity 0.25s ease,
      padding 0.3s ease;
  }
  nav .nav-links.open {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    padding: 10px 6% 20px;
  }
  nav .nav-links li {
    width: 100%;
  }
  nav .nav-links > li > a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  nav .nav-links > li:last-child > a {
    border-bottom: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .mobile-cta-item {
    display: block !important;
    margin-top: 8px;
  }
  .mobile-cta-item a {
    background: var(--brand-dark) !important;
    color: white !important;
    text-align: center;
    border-radius: 8px;
    border-bottom: none !important;
    padding: 13px !important;
    font-weight: 500;
  }

  /* Products dropdown becomes an inline accordion on mobile */
  .has-dropdown {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-drop-wrap {
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding: 4px 0;
  }
  .nav-link-main {
    flex: 1;
    padding: 10px 0;
    border-bottom: none;
    font-size: 15px;
  }
  .nav-drop-caret {
    width: 36px;
    height: 36px;
  }
  .nav-drop-caret svg {
    width: 14px;
    height: 14px;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    background: var(--brand-ultra);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .dropdown-menu::before {
    display: none;
  }
  .has-dropdown.open .dropdown-menu {
    max-height: 260px;
    border-bottom: 1px solid var(--border);
  }
  .dropdown-menu a {
    padding: 12px 0 12px 22px;
    border-radius: 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(217, 227, 238, 0.6);
  }
  .dropdown-menu li:last-child a {
    border-bottom: none;
  }
  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible,
  .dropdown-menu a.active {
    padding-left: 28px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 70px 6%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-brand .logo-mark img {
    width: 130px;
  }
  nav .logo-mark img {
    width: 160px;
  }
}

/* ============================================================
   FORM CONTROLS — shared base for Contact page + Get In Touch modal
   (Loaded globally so the popup form looks right on every page.)
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group:has(input:required) label::after,
.form-group:has(textarea:required) label::after {
  content: " *";
  color: var(--brand-mid);
  font-weight: 700;
}
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px ;
  font-family: "DM Sans", sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--off-white);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #96a3b7;
}
.form-group input:hover,
.form-group textarea:hover {
  border-color: var(--brand-light);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 4px var(--brand-pale);
  background: white;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* ============================================================
   GET IN TOUCH — MODAL POPUP
   ============================================================ */
body.modal-open {
  overflow: hidden;
}

.ndrx-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(9, 15, 30, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}
.ndrx-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.ndrx-modal {
  position: relative;
  background: white;
  background-image: url("../images/reach-hero-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 480px;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 16px;
  padding: 26px 24px 22px;
  box-shadow: 0 30px 80px rgba(9, 15, 30, 0.35);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.9, 0.3, 1.2),
    opacity 0.28s ease;
}
.ndrx-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  border-radius: inherit;
  z-index: 0;
}
.ndrx-modal > * {
  position: relative;
  z-index: 1;
}
.ndrx-modal-overlay.open .ndrx-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ndrx-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--off-white);
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.ndrx-modal-close:hover {
  background: var(--brand-ultra);
  color: var(--brand-dark);
  transform: rotate(90deg);
}

.ndrx-modal h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
  padding-right: 26px;
}
.ndrx-modal-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.ndrx-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ndrx-modal-form .form-group {
  margin-bottom: 0;
}
.ndrx-modal-form .form-group input.invalid,
.ndrx-modal-form .form-group textarea.invalid,
.contact-form .form-group input.invalid,
.contact-form .form-group textarea.invalid {
  border-color: #c6432f;
  background: #fbeae6;
}
.ndrx-modal-form .form-group input.invalid:focus,
.ndrx-modal-form .form-group textarea.invalid:focus,
.contact-form .form-group input.invalid:focus,
.contact-form .form-group textarea.invalid:focus {
  box-shadow: 0 0 0 3px rgba(198, 67, 47, 0.15);
}
.field-error {
  display: block;
  font-size: 12.5px;
  color: #c6432f;
  min-height: 2px;
  margin-top: -2px;
  font-weight: 500;
}
.ndrx-modal-form textarea {
  min-height: 64px;
}
.ndrx-modal-submit,
.contact-form .btn-primary {
  box-shadow: 0 12px 26px rgba(16, 104, 8, 0.18);
}
.ndrx-modal-submit:hover,
.contact-form .btn-primary:hover {
  box-shadow: 0 14px 30px rgba(16, 104, 8, 0.24);
}

.ndrx-modal-status,
.contact-form-status {
  display: none;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  line-height: 1.5;
}
.ndrx-modal-status.success,
.contact-form-status.success {
  display: block;
  background: var(--accent-ultra);
  color: var(--accent);
  border: 1px solid var(--accent-light);
}
.ndrx-modal-status.error,
.contact-form-status.error {
  display: block;
  background: #fbeae6;
  color: #c6432f;
  border: 1px solid #f0b8ab;
}

.ndrx-modal-submit,
.contact-form .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 160px;
}
.ndrx-modal-submit[disabled],
.contact-form .btn-primary[disabled] {
  opacity: 0.75;
  cursor: not-allowed;
}
.btn-spinner {
  display: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: white;
  animation: btnSpin 0.7s linear infinite;
}
.ndrx-modal-submit.loading .btn-spinner,
.contact-form .btn-primary.loading .btn-spinner {
  display: inline-block;
}
.ndrx-modal-submit.loading .btn-label,
.contact-form .btn-primary.loading .btn-label {
  opacity: 0.85;
}
@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 560px) {
  .ndrx-modal {
    padding: 22px 18px 18px;
    border-radius: 14px;
  }
  .ndrx-modal h3 {
    font-size: 17px;
  }
}

/* ============================================================
   SITE-WIDE MEDICINE EFFECT
   Handful of capsules/tablets gently drifting/rotating down over
   the whole viewport on every page. Purely decorative — non-interactive.
   ============================================================ */
.medicine-field {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
.medicine {
  position: absolute;
  top: -8%;
  opacity: 0;
  animation-name: medicine-fall, medicine-wobble;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-direction: normal, alternate;
  will-change: transform, top, opacity;
}
.medicine img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(16, 27, 46, 0.22));
}
.medicine-far {
  filter: blur(1.4px);
}
.medicine-far img { opacity: 0.55; }
.medicine-mid img { opacity: 0.78; }
.medicine-near img { opacity: 0.95; }

@keyframes medicine-fall {
  0% {
    top: -8%;
    opacity: 0;
    transform: translateX(0) rotate(0deg);
  }
  8% {
    opacity: 1;
  }
  50% {
    transform: translateX(var(--drift)) rotate(calc(var(--spin) * 0.5));
  }
  92% {
    opacity: 1;
  }
  100% {
    top: 108%;
    opacity: 0;
    transform: translateX(0) rotate(var(--spin));
  }
}
@keyframes medicine-wobble {
  from { margin-left: -6px; }
  to { margin-left: 6px; }
}

@media (max-width: 700px) {
  .medicine-field {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .medicine-field {
    display: none;
  }
}
