/* ==========================================================================
   OnlineCare AI — Core stylesheet
   1. Tokens & fonts      5. Footer
   2. Base & layout       6. Home page sections
   3. Buttons & atoms     7. Download modal
   4. Navbar              8. Responsive
   ========================================================================== */

/* ==========================================================================
   1. Tokens & fonts
   ========================================================================== */

:root {
  --bg: #02091c;
  --bg2: #06102a;
  --panel: #0a1533;
  --panel2: #101a3c;

  --text: #f6f7ff;
  --muted: #aab3cb;
  --line: #24365f;

  --cyan: #10d5d6;
  --blue: #3385ff;
  --purple: #8f3fff;
  --pink: #f261bf;
  --red: #ff5368;
  --green: #3fe6b0;

  --grad-brand: linear-gradient(90deg, #832eff, #385fff, #04bfc6);
  --grad-purple: linear-gradient(90deg, #7b23df, #9240ff);
  --grad-teal: linear-gradient(90deg, #068d9b, #08c9cb);
  --grad-text: linear-gradient(90deg, #ae39ff 4%, #5d66ff 48%, #00c8c6 100%);

  --r-sm: 12px;
  --r-md: 15px;
  --r-lg: 20px;
  --r-xl: 26px;

  --shadow: 0 22px 70px rgba(0, 0, 0, .38);
  --shadow-sm: 0 12px 32px rgba(0, 0, 0, .22);

  --gap: clamp(16px, 1.6vw, 24px);
  --sec-y: clamp(30px, 5.2vw, 25px);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

@font-face {
  font-family: 'Font_Rodona';
  src: url('../fonts/Font_Rodona-Regular.woff2') format('woff2'),
       url('../fonts/Font_Rodona-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   2. Base & layout
   ========================================================================== */

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* `clip` (not `hidden`) so reveal animations can't create a horizontal
     scrollbar while position:sticky on the navbar keeps working. */
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 16%, rgba(112, 53, 255, .14), transparent 24%),
    radial-gradient(circle at 87% 30%, rgba(0, 205, 220, .12), transparent 22%),
    linear-gradient(180deg, #02091b 0%, #03102a 53%, #02091b 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: clip;
}

img { max-width: 100%; }
a { text-decoration: none; color: inherit; }

.text-muted-oc { color: var(--muted) !important; }

.container-oc {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: clamp(16px, 2.4vw, 26px);
}

.glass {
  background: linear-gradient(180deg, rgba(16, 28, 62, .88), rgba(6, 16, 39, .9));
  border: 1px solid rgba(113, 149, 215, .24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03), var(--shadow);
  border-radius: 22px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2000;
  /* translate rather than a fixed offset, so it stays hidden however the text wraps */
  transform: translate(-50%, -120%);
  padding: 12px 22px;
  border-radius: 0 0 12px 12px;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

:focus-visible {
  outline: 2px solid #7fd8ff;
  outline-offset: 3px;
  border-radius: 6px;
}

/* ==========================================================================
   3. Buttons & atoms
   ========================================================================== */

.btn-grad,
.btn-teal,
.btn-purple,
.btn-ghost {
  border: 0;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--r-md);
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  text-align: center;
  transition: transform .25s var(--ease), filter .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), border-color .25s var(--ease);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.btn-grad { background: var(--grad-brand); padding: 13px 22px; font-weight: 600; }
.btn-teal { background: var(--grad-teal); padding: 11px 28px; }
.btn-purple { background: var(--grad-purple); }
.btn-ghost {
  background: rgba(11, 21, 48, .7);
  border: 1px solid rgba(120, 152, 214, .34);
  font-weight: 600;
}

.btn-grad:hover, .btn-teal:hover, .btn-purple:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 18px 38px rgba(80, 40, 190, .28);
}
.btn-ghost:hover {
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(140, 190, 255, .6);
  background: rgba(19, 33, 70, .88);
}
.btn-grad:active, .btn-teal:active, .btn-purple:active, .btn-ghost:active { transform: translateY(0); }

.pill {
  border: 1px solid rgba(66, 220, 220, .24);
  border-radius: 999px;
  padding: 9px 18px;
  color: #e6f8fa;
  background: #051128;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}
.pill img { width: 18px; height: 18px; }

.badge-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid #7d42c9;
  border-radius: 14px;
  color: #d8b7ff;
  letter-spacing: 2.6px;
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title {
  text-align: center;
  font-size: clamp(30px, 3.8vw, 58px);
  font-family: Font_Rodona, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin: 0;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.65;
  margin: 12px auto 0;
  max-width: 760px;
}

.titleChange { font-weight: 800; font-family: Font_Rodona, Inter, sans-serif; }

/* ==========================================================================
   4. Navbar
   ========================================================================== */

.navbar-oc {
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(2, 9, 28, .74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
}
.navbar-oc.is-scrolled {
  padding: 6px 0;
  background: rgba(2, 9, 28, .95);
  border-bottom-color: #16264a;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .38);
}

.brand { display: inline-flex; align-items: center; }
.brand img { height: 60px; width: auto; transition: height .3s var(--ease); }
.navbar-oc.is-scrolled .brand img { height: 50px; }

.navbar-oc .nav-link {
  color: #e9ebf6 !important;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px !important;
  position: relative;
  transition: color .2s var(--ease);
}
.navbar-oc .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.navbar-oc .nav-link:hover { color: #77f7f0 !important; }
.navbar-oc .nav-link:hover::after,
.navbar-oc .nav-item.is-active > .nav-link::after { transform: scaleX(1); }
.navbar-oc .nav-item.is-active > .nav-link { color: #fff !important; }

.navbar-toggler { border: 1px solid #2b3e6c; border-radius: 10px; padding: 7px 10px; }
.navbar-toggler:focus { box-shadow: none; }

/* Bootstrap zeroes the outline on .nav-link and swaps in a low-contrast ring — put it back */
.navbar-oc .nav-link:focus-visible {
  outline: 2px solid #7fd8ff;
  outline-offset: 2px;
  box-shadow: none;
}

.nav-drop { position: relative; }
.nav-drop > .nav-link { display: inline-flex; align-items: center; gap: 7px; background: none; border: 0; }
.nav-drop > .nav-link i { font-size: 11px; transition: transform .28s var(--ease); }
.nav-drop.is-open > .nav-link i { transform: rotate(180deg); }

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  z-index: 40;
  width: min(640px, 76vw);
  padding: 14px;
  transform: translate(-50%, 10px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border: 1px solid rgba(113, 149, 215, .3);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13, 24, 55, .99), rgba(5, 13, 34, .99));
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
}
.nav-drop.is-open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-drop-menu a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.nav-drop-menu a:hover {
  background: rgba(31, 47, 95, .6);
  border-color: rgba(133, 96, 226, .4);
  transform: translateX(3px);
}
.nav-drop-menu i {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-size: 15px;
  color: #cbb4ff;
  background: linear-gradient(145deg, rgba(126, 48, 233, .3), rgba(39, 85, 214, .3));
}
.nav-drop-menu strong { display: block; font-size: 14px; font-weight: 600; }
.nav-drop-menu span { display: block; font-size: 12px; color: var(--muted); line-height: 1.45; }

/* ==========================================================================
   5. Footer
   ========================================================================== */

.footer {
  padding: clamp(34px, 4vw, 54px) 0 16px;
  background: rgba(2, 10, 28, .62);
  border-top: 1px solid #172c54;
}
.footer .brand img { height: 54px; }
.footer .ftr-h { font-size: 15px; font-weight: 700; letter-spacing: .3px; margin-bottom: 4px; }
.footer a {
  display: block;
  color: #9fa9c3;
  margin: 10px 0;
  font-size: 14px;
  width: fit-content;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.footer a:hover { color: #77f7f0; transform: translateX(3px); }
.footer .border-start { border-left-color: #0d1c37 !important; }
.footer .ftr_inner { padding-left: clamp(0px, 1.6vw, 25px); }
.footer-bottom {
  border-top: 1px solid #162749;
  margin-top: 26px;
  padding-top: 20px;
  color: #8994af;
  font-size: 13px;
}
.footer-bottom a { display: inline-block; margin: 0; }

.social-icons a {
  border: 1px solid #003f8a;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 0;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.social-icons a:hover { background: var(--grad-brand); border-color: transparent; transform: translateY(-3px); }

.downloadFtr img{height: auto;width: 146px; margin-bottom: 10px; }

/* ==========================================================================
   6. Home page sections
   ========================================================================== */

/* --- Hero --- */
.hero { padding: clamp(22px, 3vw, 40px) 0 26px; position: relative; }
.hero h1 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.14;
  font-weight: 600;
  font-family: Font_Rodona, Inter, sans-serif;
  margin: 18px 0;
}
.hero p { font-size: clamp(15px, 1.2vw, 20px); line-height: 1.6; color: var(--muted); }

.bannerIcons { margin-bottom: 0; }
.bannerIcons li { margin-bottom: 18px; }
.bannerIcons .bi-label { margin-bottom: 2px; font-size: clamp(15px, 1.1vw, 18px); font-weight: 600; color: var(--text); }
.bannerIcons p { margin-bottom: 0; font-size: 14px; }
.bannerIcons img { width: 40px; height: 40px; flex: 0 0 40px; }

.hero-photo { position: relative; }
.photo-person img {
  width: 100%;
  min-height: 340px;
  max-height: 560px;
  object-fit: cover;
  border-radius: 25px;
  border: 1px solid transparent;
  background: linear-gradient(90deg, #832eff, #385fff);
}

.overlay-card {
  position: absolute;
  background: #08132f;
  border: 1px solid #3c4b77;
  border-radius: 18px;
  padding: 6px 11px;
  box-shadow: var(--shadow);
}
.overlay-listening { top: 42px; left: 18px; width: 200px; display: flex; gap: 6px; align-items: center; }
.overlay-listening strong { font-size: 15px; font-weight: 500; }
.overlay-language { top: 42px; right: 20px; width: 205px; }
.overlay-language .languageBox {
  border: 1px solid #707070;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 13px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.overlay-language img { width: 20px; height: 20px; }
.overlay-next { right: 16px; bottom: 40px; width: 226px; padding-top: 8px; }
.overlay-next img { width: 40px; }

.btmicon {
  background-color: #0f1629;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border: 1px solid #0e192f;
  border-radius: 8px;
  padding-inline: 6px;
  margin-bottom: 5px;
  font-size: 12.5px;
}
.btmicon img { width: 20px !important; }

/* --- Clearer path --- */
.oc-path-section { position: relative; padding: clamp(48px, 5vw, 70px) 0 28px; overflow: hidden; }

.oc-path-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 325px;
  gap: 40px;
  align-items: center;
}
.oc-steps-area { position: relative; }

.oc-path-heading {
  position: absolute;
  top: -38px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48%;
  transform: translateX(-50%);
}
.oc-path-heading h2 {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  margin: 0;
  padding: 0 22px;
  color: #f4f5fb;
  background: #02091c;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}
.oc-heading-line {
  position: relative;
  display: block;
  flex: 1;
  height: 27px;
  border-top: 2px solid #7549b8;
}
.oc-heading-line-left { border-left: 2px solid #7549b8; border-top-left-radius: 20px; }
.oc-heading-line-right { border-right: 2px solid #5260bb; border-top-right-radius: 20px; }
.oc-heading-line::after {
  position: absolute;
  bottom: -5px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: #735aff;
  box-shadow: 0 0 12px rgba(115, 90, 255, .8);
}
.oc-heading-line-left::after { left: -6px; }
.oc-heading-line-right::after { right: -6px; background: #536eff; }

.oc-step-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  height: 100%;
  min-height: 130px;
  padding: 20px 15px;
  border: 1px solid #283d68;
  border-radius: 17px;
  background: linear-gradient(120deg, rgba(10, 23, 54, .98), rgba(5, 14, 37, .98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), 0 20px 45px rgba(0, 0, 0, .22);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.oc-step-card:hover { transform: translateY(-4px); border-color: #4a68b8; }

.oc-step-number {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  margin-right: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #7c2ae8, #5315c6);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, .12), 0 0 20px rgba(118, 38, 234, .35);
  font-size: 27px;
  font-weight: 700;
}
.oc-step-number-cyan {
  background: linear-gradient(145deg, #0788a1, #00647e);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, .12), 0 0 20px rgba(0, 191, 219, .28);
}
.oc-step-content { padding-right: 46px; }
.oc-step-content h3 { margin: 2px 0 10px; color: #f4f5fb; font-size: 15px; font-weight: 400; line-height: 1.35; }
.oc-step-content p { max-width: 100%; margin: 0; color: #aeb7cc; font-size: 13px; line-height: 1.65; }

.oc-step-icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(132, 85, 231, .25);
  border-radius: 50%;
  color: #a669ff;
  background: radial-gradient(circle at center, rgba(109, 50, 207, .25), rgba(25, 22, 65, .9));
  font-size: 24px;
}
.oc-step-connector {
  position: absolute;
  top: 50%;
  right: -25px;
  z-index: 4;
  width: 25px;
  height: 2px;
  background: linear-gradient(90deg, #7438cc, #4b67ff);
  transform: translateY(-50%);
}
.oc-step-connector::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: #5268ff;
  box-shadow: 0 0 10px rgba(82, 104, 255, .9);
  transform: translateY(-50%);
}

.oc-trust-card {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 148px;
  padding: 20px 15px;
  border: 1px solid #7541d0;
  border-radius: 19px;
  background: linear-gradient(130deg, rgba(15, 22, 57, .96), rgba(4, 18, 45, .96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 20px 50px rgba(0, 0, 0, .25);
}
.oc-trust-icon {
  display: grid;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle, #6557ff 0%, #4e35df 47%, rgba(58, 36, 169, .25) 70%);
  box-shadow: 0 0 0 6px rgba(100, 71, 255, .12), 0 0 27px rgba(100, 71, 255, .55);
  font-size: 38px;
}
.oc-trust-card h3 { margin: 0 0 9px; color: #f6f7fc; font-size: 17px; font-weight: 400; line-height: 1.4; }
.oc-trust-card p { margin: 0; color: #aeb7cc; font-size: 14px; line-height: 1.65; }

/* --- Mental health strip --- */
.mental-health-section { padding: clamp(34px, 4vw, 50px) 0; }

.mental-main-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 4vw, 55px) 20px clamp(22px, 3vw, 40px) clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(108, 126, 195, .24);
  border-radius: 28px;
  box-shadow: inset 0 0 35px rgba(63, 83, 171, .07), 0 18px 50px rgba(0, 0, 0, .18);
  background: url(../img/ASCV.webp) no-repeat bottom / cover;
}
.mental-main-title {
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(27px, 2.9vw, 40px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -1.2px;
}
.mental-main-title span { color: #4f9bff; }
.mental-main-description { color: var(--muted); font-size: clamp(15px, 1.05vw, 17px); line-height: 1.75; }
.mental-main-content { max-width: 560px; }

.mental-health-button {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 28px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(100deg, #bd00f5, #752cff, #169df6);
  box-shadow: 0 12px 30px rgba(85, 55, 255, .3);
  font-size: 16px;
  font-weight: 700;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.mental-health-button:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(85, 55, 255, .42); }
.mental-button-arrow { transition: transform .25s var(--ease); }
.mental-health-button:hover .mental-button-arrow { transform: translateX(5px); }

.mental-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 16px;
  border: 1px solid rgba(108, 126, 195, .24);
  border-radius: 26px;
  text-align: center;
  background: radial-gradient(circle at 50% 10%, rgba(86, 51, 184, .12), transparent 45%),
              linear-gradient(145deg, rgba(10, 20, 44, .98), rgba(7, 14, 33, .98));
  box-shadow: inset 0 0 30px rgba(56, 72, 139, .06), 0 12px 32px rgba(0, 0, 0, .13);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.mental-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(136, 79, 255, .48);
  box-shadow: inset 0 0 30px rgba(75, 60, 180, .1), 0 18px 40px rgba(0, 0, 0, .23);
}
.mental-feature-icon { width: 62px; height: 62px; margin-bottom: 10px; object-fit: contain; }
.mental-feature-card h3 { margin: 0 0 5px; color: #fff; font-size: 18px; line-height: 1.4; font-weight: 700; }
.mental-feature-card p { margin: 0; color: #adb6ca; font-size: 14px; line-height: 1.6; }

/* --- Medication flow --- */
.medication-top {
  padding: clamp(20px, 2.4vw, 30px) clamp(20px, 2.6vw, 36px);
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 420px;
  gap: clamp(20px, 2.4vw, 30px);
  align-items: center;
}
.medication-top h2 { font-size: clamp(22px, 2.1vw, 30px); line-height: 1.25; }
.med-visual { display: grid; place-items: center; background: radial-gradient(circle, rgba(14, 229, 216, .25), transparent 65%); }
.med-bottle { filter: drop-shadow(0 0 16px #1bcfd3); }
.retail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.retail {
  padding: 16px;
  border: 1px solid #2e3d60;
  border-radius: 12px;
  background: #0a1430;
  display: grid;
  place-items: center;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.retail:hover { border-color: #4f6ba8; transform: translateY(-3px); }
.retail img { max-height: 56px; object-fit: contain; }

.process-title {
  max-width: 520px;
  margin: 14px auto 6px;
  padding: 8px 24px;
  border: 1px solid #108b8c;
  background: #054753;
  border-radius: 12px;
  text-align: center;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 800;
  font-family: Font_Rodona, Inter, sans-serif;
}
.process-row { display: flex; gap: 18px; align-items: center; }
.process-row > i { color: #7c849a; font-size: 24px; flex: 0 0 auto; }
.process-card {
  padding: 18px;
  border: 1px solid #324365;
  background: #0b1733;
  border-radius: 15px;
  width: 100%;
  min-height: 96px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.process-card:hover { border-color: #4a68b8; transform: translateY(-3px); }
.process-card .n img { min-width: 54px; width: 54px; }
.process-card strong { font-family: Font_Rodona, Inter, sans-serif; }

.arrows { width: clamp(90px, 13vw, 200px); position: relative; top: 18px; }

.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 7px; }
.option-box { padding: 18px 18px 24px; border-radius: 18px; }
.option-box.a { border: 1px solid #00d9d5; background: linear-gradient(180deg, rgba(0, 87, 91, .35), rgba(4, 20, 42, .8)); }
.option-box.b { position: relative; border: 1px solid #a147ff; background: linear-gradient(180deg, rgba(89, 30, 129, .34), rgba(13, 13, 47, .8)); }
.option-title { text-align: center; font-size: clamp(17px, 1.5vw, 22px); font-weight: 800; margin-bottom: 14px; }

.mini-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mini-process > div {
  position: relative;
  padding: 14px 10px;
  border: 1px solid rgba(107, 132, 178, .34);
  border-radius: 12px;
  min-height: 130px;
}
.mini-process span {
  background: #015f67;
  min-width: 30px;
  min-height: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 13px;
}
.arowmain { position: absolute; right: -15px; top: 40%; color: #08c9cb; }
.option-box.b .arowmain { color: #bd62ff; }

.refrenceBoxbtm{
    border: 2px solid #a147ff;
    display: flex;
    background: #0d0d2f;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: absolute;
    padding: 10px 15px;
    top: 98%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
}
.med-step { font-size: 13.5px; color: #b8c2d9; }

/* --- Services --- */
.service-hero-card {
  padding: clamp(22px, 2.4vw, 30px) clamp(22px, 2.6vw, 34px);
  border-radius: 20px;
  min-height: 175px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  border: 1px solid;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-hero-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0, 0, 0, .3); }
.service-hero-card.purple { background: linear-gradient(120deg, #2d196e, #1f1b72); border-color: #6641cf; }
.service-hero-card.teal { background: linear-gradient(120deg, #063c57, #0a6773); border-color: #148998; }
.service-hero-card h2 { font-size: clamp(22px, 2vw, 30px); }
.service-hero-card .btn-teal,
.service-hero-card .btn-grad {
  min-width: min(260px, 100%);
  padding: 13px 20px;
  border-radius: 18px;
  justify-content: space-between;
}

.icon-orb {
  min-width: 96px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 44px;
  background: radial-gradient(circle at 35% 30%, #6e61ff 0 11%, #6e61ff 13% 38%, #2b1769 72%);
  box-shadow: 0 0 32px rgba(92, 92, 255, .44);
}
.icon-orb.teal { background: radial-gradient(circle at 35% 30%, #3bd3d0 0 10%, #3bd3d0 11% 38%, #06475f 73%); }

.service-column h3 { font-size: clamp(19px, 1.7vw, 23px); margin: 18px 0 14px; display: flex; align-items: center; gap: 8px; }
.service-item {
  padding: 16px 18px;
  border-radius: 15px;
  background: rgba(16, 28, 61, .88);
  border: 1px solid #33456b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.service-item:hover { border-color: #5a76c4; transform: translateX(4px); background: rgba(21, 36, 78, .94); }
.service-item .ico { width: 76px; flex: 0 0 76px; display: grid; place-items: center; }
.service-item h4 { font-size: 17px; margin: 0 0 5px; }
.service-item p { margin: 0; color: #b5bed5; font-size: 14px; line-height: 1.55; }

/* --- Trust strip --- */
.trust-strip { padding: 22px 26px; margin: 26px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item { display: flex; gap: 14px; align-items: center; }
.trust-item .ico { flex: 0 0 auto; }
.trust-item strong { font-size: 14px; font-weight: 600; }
.trust-item .small { font-size: 12.5px; line-height: 1.5; }

/* --- FAQ (home) --- */
.faq-wrap { max-width: 1230px; margin: 0 auto; }
.faq-grid { display: grid; grid-template-columns: 2.3fr .85fr; gap: 18px; align-items: start; }
.faq-panel { padding: clamp(20px, 2.2vw, 26px); }
.faq-panel h2 { font-size: clamp(21px, 2vw, 28px); }
.faq-item { border: 1px solid #294065; border-radius: 10px; margin: 10px 0; overflow: hidden; }
.faq-q {
  width: 100%;
  padding: 15px 18px;
  background: #0a1633;
  color: #fff;
  border: 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  cursor: pointer;
  transition: background .25s var(--ease);
}
.faq-q:hover { background: #10204a; }
.faq-q .sym { flex: 0 0 auto; font-size: 20px; color: #48d7d5; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  background: #071b35;
  color: #b6bfd5;
  line-height: 1.65;
  font-size: 14.5px;
  transition: grid-template-rows .34s var(--ease);
}
.faq-a > span { overflow: hidden; display: block; padding: 0 18px; }
.faq-item.active { border-color: #0cbebd; }
.faq-item.active .faq-a { grid-template-rows: 1fr; }
.faq-item.active .faq-a > span { padding: 4px 18px 18px; }

.help-card { padding: clamp(20px, 2.2vw, 26px); text-align: center; }
.help-card h2 { font-family: Font_Rodona, Inter, sans-serif; font-size: clamp(21px, 1.9vw, 26px); }
.help-icon { font-size: 54px; color: #13d5d2; }

/* --- Health conversation band --- */
.health-conversation-section { position: relative; padding: 20px 0; }
.health-conversation-box {
  position: relative;
  min-height: 138px;
  border: 1px solid #35457c;
  border-radius: 16px;
  background: linear-gradient(100deg, #2c1267 0%, #17165b 31%, #071e54 67%, #06356e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 18px 50px rgba(0, 0, 0, .25);
}
.health-conversation-left {
  display: flex;
  min-height: 138px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 95px 22px 40px;
}
.health-text { max-width: 430px; }
.health-text h2 { margin: 0 0 5px; color: #fff; font-size: clamp(21px, 2vw, 29px); font-weight: 700; line-height: 1.25; }
.health-text p { max-width: 420px; margin: 0; color: #b7bad3; font-size: 14.5px; line-height: 1.55; }
.health-action { flex: 0 0 auto; text-align: center; }

.live-ai-btn {
  display: inline-flex;
  min-width: 230px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 0;
  border-radius: 9px;
  color: #7134d4;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
  font-size: 15px;
  font-weight: 700;
  transition: .25s var(--ease);
}
.live-ai-btn i { color: #8d3df1; font-size: 19px; }
.live-ai-btn:hover { color: #7134d4; background: #f4f1ff; transform: translateY(-2px); }
.health-free-text { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 10px; color: #aeb3ce; font-size: 12px; }
.health-free-text i { color: #9860ff; }

.health-mobile-image { position: absolute; top: 50%; left: 50%; z-index: 10; width: 140px; transform: translate(-50%, -50%); }
.health-mobile-image img { display: block; width: 100%; height: auto; filter: drop-shadow(0 15px 22px rgba(0, 0, 0, .45)); }

.health-benefits { min-height: 138px; padding: 16px 35px 16px 105px; border-left: 1px solid rgba(255, 255, 255, .12); }
.health-benefit-item {
  display: grid;
  grid-template-columns: 42px 170px minmax(0, 1fr);
  align-items: center;
  min-height: 35px;
  gap: 12px;
  margin-bottom: 10px;
}
.benefit-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #e6eaff;
  background: linear-gradient(145deg, rgba(110, 58, 255, .9), rgba(34, 105, 226, .8));
  box-shadow: 0 0 16px rgba(73, 89, 255, .35);
  font-size: 17px;
}
.health-benefit-item strong { color: #f6f7ff; font-size: 14px; font-weight: 600; }
.health-benefit-item span { color: #a9b2ca; font-size: 12px; }

/* --- Medical emergency --- */
.medical-emergency-section { position: relative; padding: 16px 0; }
.medical-emergency-box {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  min-height: 132px;
  overflow: hidden;
  border: 1px solid rgba(255, 55, 90, .5);
  border-radius: 18px;
  background: radial-gradient(circle at 8% 50%, rgba(255, 29, 70, .12), transparent 23%),
              linear-gradient(100deg, rgba(44, 8, 35, .88), rgba(14, 17, 43, .96) 48%, rgba(36, 10, 39, .88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), 0 20px 50px rgba(0, 0, 0, .22);
}
.medical-emergency-left { display: flex; align-items: center; gap: 26px; padding: 22px clamp(20px, 2.4vw, 34px); }
.emergency-main-icon img {
  width: 92px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 46, 79, .06), 0 0 28px rgba(255, 42, 72, .38);
}
.emergency-copy h2 { margin: 0 0 2px; color: #fff; font-size: clamp(20px, 1.9vw, 25px); font-weight: 700; line-height: 1.2; }
.emergency-copy h3 { margin: 0 0 7px; color: #fff; font-size: clamp(16px, 1.4vw, 19px); font-weight: 600; line-height: 1.3; }
.emergency-copy p { max-width: 520px; margin: 0; color: #9fa8bf; font-size: 12.5px; line-height: 1.5; }

.medical-emergency-right { position: relative; padding: 18px clamp(20px, 2.4vw, 35px) 12px; border-left: 1px solid rgba(255, 255, 255, .1); }
.emergency-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 58px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.emergency-call-wrap { display: flex; justify-content: center; padding-right: 24px; border-right: 1px solid rgba(255, 255, 255, .1); }
.emergency-call-btn {
  display: inline-flex;
  min-width: 215px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid #ff5269;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(180deg, #dd3654, #b91538);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 9px 23px rgba(187, 20, 54, .22);
  font-size: 18px;
  font-weight: 700;
  transition: .25s var(--ease);
}
.emergency-call-btn svg { width: 21px; height: 21px; }
.emergency-call-btn:hover { color: #fff; background: linear-gradient(180deg, #ed4864, #c8183d); transform: translateY(-2px); }

.emergency-outside { padding-left: 30px; }
.emergency-outside > span { display: block; margin-bottom: 2px; color: #f2f3f8; font-size: 13px; font-weight: 600; }
.emergency-outside a { display: inline-flex; align-items: center; gap: 9px; color: #ff4059; font-size: 13px; font-weight: 600; }
.emergency-outside a svg { width: 17px; height: 17px; }
.emergency-outside a:hover { color: #ff7688; }

.emergency-symptoms { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 49px; align-items: center; }
.emergency-symptom-item { display: flex; align-items: center; justify-content: center; gap: 13px; min-height: 35px; color: #cbd0de; font-size: 13px; }
.emergency-symptom-item:not(:last-child) { border-right: 1px solid rgba(255, 255, 255, .1); }
.symptom-icon { display: grid; width: 34px; height: 34px; place-items: center; color: #ff4059; }
.symptom-icon svg { width: 29px; height: 29px; }

/* ==========================================================================
   7. Download modal
   ========================================================================== */

#downloadModal .djmodal { max-width: min(1100px, 94vw); }
.auth-modal .modal-content { overflow: hidden; border: 0; border-radius: 24px; box-shadow: 0 24px 70px rgba(35, 29, 83, .2); }
.auth-modal .auth-modal__close {
  position: absolute;
  z-index: 3;
  top: 17px;
  right: 17px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f3f1fb;
  color: #5e6181;
  transition: .2s var(--ease);
}
.auth-modal .auth-modal__close:hover { background: #fff; transform: rotate(90deg); }
.auth-modal .modal-body {
  position: relative;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 40px) clamp(22px, 3vw, 32px);
  background: radial-gradient(circle at 18% 16%, rgba(112, 53, 255, .14), transparent 24%),
              radial-gradient(circle at 87% 30%, rgba(0, 205, 220, .12), transparent 22%),
              linear-gradient(180deg, #02091b 0%, #03102a 53%, #02091b 100%);
  color: #fff;
}
#downloadModal .modal-body h2 { font-size: clamp(22px, 2.4vw, 34px); font-weight: 700; }
#downloadModal .app_btn { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; }
#downloadModal .app_btn li img { max-width: 140px; margin-bottom: 5px; }

/* ==========================================================================
   8. Responsive
   ========================================================================== */

@media (min-width: 1600px) {
  .oc-step-card { min-height: 154px; padding: 28px; }
  .oc-step-content h3 { font-size: 18px; }
  .oc-step-content p { font-size: 15px; }
}

@media (max-width: 1399.98px) {
  .medication-top { grid-template-columns: 200px minmax(0, 1fr); }
  .retail-grid { grid-column: 1 / -1; grid-template-columns: repeat(4, 1fr); }
  .health-conversation-left { padding: 22px 80px 22px 28px; }
  .health-benefits { padding-left: 84px; padding-right: 24px; }
  .health-benefit-item { grid-template-columns: 40px 150px minmax(0, 1fr); }
}

@media (max-width: 1199.98px) {
  .oc-path-layout { grid-template-columns: 1fr; gap: 30px; }
  .oc-trust-card { max-width: 560px; margin: 0 auto; }
  .oc-path-heading { width: 62%; }
  .medical-emergency-box { grid-template-columns: 1fr; }
  .medical-emergency-right { border-top: 1px solid rgba(255, 255, 255, .1); border-left: 0; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .service-hero-card { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 991.98px) {
  /* the brand + toggler sit in a flex row; the panel must drop below them at full width */
  .navbar-oc .container-oc > .d-flex { flex-wrap: wrap; }
  .navbar-oc .navbar-collapse {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    margin-top: 14px;
    padding: 16px;
    border: 1px solid rgba(113, 149, 215, .26);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(11, 22, 51, .99), rgba(4, 12, 32, .99));
    box-shadow: var(--shadow);
    max-height: calc(100vh - 150px);
    overflow-y: auto;
  }
  .navbar-oc .navbar-nav { width: 100%; margin: 0 !important; }
  .navbar-oc .nav-link { padding: 12px 8px !important; width: 100%; justify-content: space-between; }
  .navbar-oc .nav-link::after { display: none; }
  .navbar-oc .nav-cta { width: 100%; margin-top: 10px; }
  .navbar-oc .nav-cta .btn-grad { width: 100%; }

  .nav-drop-menu {
    position: static;
    width: 100%;
    transform: none;
    grid-template-columns: 1fr;
    padding: 6px 0 4px;
    border: 0;
    background: transparent;
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-drop.is-open .nav-drop-menu { display: grid; transform: none; animation: navDropIn .3s var(--ease); }
  .nav-drop-menu a { padding: 10px; background: rgba(17, 30, 66, .55); margin-bottom: 5px; }

  .oc-path-heading { position: relative; top: auto; left: auto; width: 100%; margin-bottom: 25px; transform: none; }
  /* the solid mask is only needed to break the desktop bracket line */
  .oc-path-heading h2 { flex: 1 1 auto; min-width: 0; padding: 0 12px; background: transparent; font-size: 15px; white-space: normal; text-align: center; }

  /* the three-across medication flows get too tight before the tablet breakpoint */
  .options-grid, .mini-process { grid-template-columns: 1fr; }
  .mini-process > div { min-height: auto; }
  .arowmain { right: 50%; top: auto; bottom: -22px; transform: translateX(50%) rotate(90deg); }
  .process-row { flex-direction: column; align-items: stretch; }
  .process-row > i { transform: rotate(90deg); align-self: center; }
  .arrows { display: none; }
  .process-card { max-width: none; }
  .oc-heading-line { height: 1px; border: 0; background: linear-gradient(90deg, transparent, #7250bf); }
  .oc-heading-line-right { background: linear-gradient(90deg, #5260bb, transparent); }
  .oc-heading-line::after { display: none; }
  .oc-step-connector {
    top: auto;
    right: 50%;
    bottom: -25px;
    width: 2px;
    height: 25px;
    background: linear-gradient(180deg, #7438cc, #4b67ff);
    transform: translateX(50%);
  }
  .oc-step-connector::after { top: auto; right: 50%; bottom: -5px; transform: translateX(50%); }

  .health-conversation-box { padding: 30px 20px; }
  .health-conversation-left { flex-direction: column; min-height: auto; padding: 10px; text-align: center; }
  .health-text { max-width: 600px; }
  .health-text p { margin-inline: auto; }
  .health-mobile-image { position: relative; top: auto; left: auto; width: 132px; margin: 30px auto; transform: none; }
  .health-benefits { min-height: auto; padding: 20px 0 0; border-top: 1px solid rgba(255, 255, 255, .12); border-left: 0; }
  .health-benefit-item { grid-template-columns: 44px 180px minmax(0, 1fr); margin-bottom: 12px; }

  .mental-main-card { min-height: auto; }
  .mental-main-content { text-align: center; }
  .mental-main-description { margin-inline: auto; }
}

@media (max-width: 991.98px) and (min-width: 768px) {
  .overlay-listening { transform: scale(.9); transform-origin: top left; }
  .overlay-language { transform: scale(.9); transform-origin: top right; }
  .overlay-next { transform: scale(.9); transform-origin: bottom right; }
}

@media (max-width: 767.98px) {
  .brand img { height: 48px; }
  .navbar-oc.is-scrolled .brand img { height: 42px; }
  .hero { padding-top: 16px; }
  .photo-person img { min-height: 300px; }

  /* overlay cards stack under the photo instead of covering it */
  .hero-photo { display: flex; flex-direction: column; gap: 12px; }
  .overlay-card { position: static; width: 100%; }
  .overlay-language .wavesmain { max-height: 70px; overflow: hidden; }

  .medication-top { grid-template-columns: 1fr; padding: 20px; text-align: center; }
  .medication-top h2 br, .medication-top p br { display: none; }
  .med-visual img { max-width: 190px; }
  .retail-grid { grid-template-columns: 1fr 1fr; }
  .medication-top .btn-teal { margin-inline: auto; }

  .service-hero-card .btn-teal,
  .service-hero-card .btn-grad { width: 100%; min-width: 0; }
  .service-item { align-items: flex-start; }
  .service-item .ico { width: 56px; flex-basis: 56px; }

  .trust-strip { grid-template-columns: 1fr; padding: 20px; }

  .medical-emergency-left { align-items: flex-start; padding: 24px 20px; }
  .emergency-main-icon img { width: 62px; }
  .emergency-top-row { grid-template-columns: 1fr; }
  .emergency-call-wrap { padding: 5px 0 18px; border-right: 0; }
  .emergency-outside { padding: 18px 0; text-align: center; border-top: 1px solid rgba(255, 255, 255, .08); }
  .emergency-symptoms { grid-template-columns: 1fr; }
  .emergency-symptom-item { justify-content: flex-start; padding: 12px 4px; }
  .emergency-symptom-item:not(:last-child) { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }

  .footer { text-align: center; }
  .footer .border-start { border-left: 0 !important; }
  .footer .ftr_inner { padding-left: 0; }
  .footer a { margin-inline: auto; }
  .footer-bottom { justify-content: center !important; text-align: center; }
  .social-icons { display: flex; justify-content: center; gap: 8px; }

  .mental-main-title br { display: none; }
}

@media (max-width: 575.98px) {
  .oc-path-section { padding-bottom: 15px; }
  .oc-step-card { min-height: auto; padding: 22px 18px; }
  .oc-step-number { flex-basis: 46px; width: 46px; height: 46px; margin-right: 14px; font-size: 22px; }
  .oc-step-content { padding-right: 0; }
  .oc-step-content h3 { padding-right: 46px; font-size: 15px; }
  .oc-step-content p { font-size: 13.5px; }
  .oc-step-icon { top: 18px; right: 16px; bottom: auto; width: 38px; height: 38px; font-size: 19px; }
  .oc-trust-card { align-items: flex-start; padding: 22px 18px; }
  .oc-trust-icon { flex-basis: 58px; width: 58px; height: 58px; font-size: 29px; }
  .oc-trust-card h3 { font-size: 16px; }

  .medical-emergency-left { flex-direction: column; gap: 18px; }
  .medical-emergency-right { padding: 18px 20px; }
  .emergency-call-btn { width: 100%; min-width: 0; font-size: 16px; }

  .health-conversation-section { padding: 12px 0; }
  .health-conversation-box { padding: 25px 15px; }
  .live-ai-btn, .health-action { width: 100%; min-width: 0; }
  .health-free-text { flex-wrap: wrap; }
  .health-benefit-item { grid-template-columns: 42px minmax(0, 1fr); gap: 5px 12px; padding: 8px 0; }
  .health-benefit-item span { grid-column: 2; }
  .health-mobile-image { width: 120px; }

  .mental-feature-card { border-radius: 20px; padding: 22px 14px; }
  .mental-feature-icon { width: 54px; height: 54px; }
  .mental-feature-card h3 { font-size: 17px; }
  .mental-feature-card p { font-size: 13.5px; }
  .mental-feature-card p br, .mental-feature-card h3 br { display: none; }

  .btn-grad, .btn-teal, .btn-purple, .btn-ghost { width: 100%; }
  .hero .pill { width: 100%; justify-content: center; }
  .refrenceBoxbtm { font-size: 12px; }
  .process-title { font-size: 15px; padding: 8px 16px; }
}

@keyframes navDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
