/* ---------------------------------------------------------------------------
   Dhanlaxmi Medical Agency — one stylesheet for every page.
   Shared rather than inlined per page: five pages that must look like one site
   is exactly the case a stylesheet is for, and it means a colour is changed in
   one place. Palette sampled from the logo, so the site and the letterhead are
   the same brand rather than an approximation of it.
--------------------------------------------------------------------------- */

:root {
  --teal:      #009084;
  --teal-deep: #007A70;
  --teal-wash: #E8F5F3;
  --blue:      #0054A8;
  --blue-wash: #E9F1FA;
  --red:       #E4000C;
  --ink:       #14302D;
  --body:      #3F5250;
  --muted:     #6B7C7A;
  --rule:      #DCE8E6;
  --ground:    #F5F9F8;
  --surface:   #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(20,48,45,.06), 0 6px 20px -12px rgba(20,48,45,.25);
  --shadow-lg: 0 2px 4px rgba(20,48,45,.05), 0 24px 48px -28px rgba(20,48,45,.35);
  --radius:    14px;
}

* { box-sizing: border-box; }

/* The browser's own [hidden] { display: none } is a UA rule, so any author rule
   that sets display — .field { display: grid }, say — outranks it and the
   "hidden" element shows anyway. This puts it back. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--body);
  font-family: 'Source Sans 3', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  letter-spacing: -.02em;
  text-wrap: balance;
  margin: 0;
}

a { color: var(--teal-deep); }
img { max-width: 100%; }

.wrap { width: min(1140px, 100% - 40px); margin-inline: auto; }
.tabular { font-variant-numeric: tabular-nums; }

/* ---- header --------------------------------------------------------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.bar { display: flex; align-items: center; gap: 16px; padding: 12px 0; }

/* A horizontal lockup built from the circular mark plus the name in type.
   The full logo stacks its wordmark under the mark, so at any height that fits
   a header the words shrink to an illegible smudge. */
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand img { height: 40px; width: 40px; display: block; }
@media (min-width: 700px) { .brand img { height: 46px; width: 46px; } }
.brand-text { line-height: 1.08; }
.brand-name {
  display: block;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 20px;
  color: var(--teal); letter-spacing: -.025em;
}
.brand-sub {
  display: block;
  font-size: 10.5px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted);
}
@media (max-width: 360px) { .brand-text { display: none; } }

.nav-wide { display: none; gap: 24px; }
@media (min-width: 1000px) { .nav-wide { display: flex; } }
.nav-wide a {
  color: var(--body); text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav-wide a:hover { color: var(--teal-deep); border-bottom-color: var(--teal); }
/* The page you are on, marked in the menu rather than left for you to work out. */
.nav-wide a[aria-current="page"] { color: var(--teal-deep); border-bottom-color: var(--teal); }

/* Written as .bar .call-btn, not .call-btn: .btn below sets display:inline-flex
   with the same specificity and comes later in the file, so a bare .call-btn
   rule loses and the button stays on a narrow screen, crowding out the name. */
.bar .call-btn { display: none; }
@media (min-width: 620px) { .bar .call-btn { display: inline-flex; } }

/* Narrow-screen menu. Built on <details> so it opens with the stylesheet alone
   — on a multi-page site a menu that needs JavaScript to open is a site that
   cannot be navigated if the script fails. */
.menu { position: relative; }
@media (min-width: 1000px) { .menu { display: none; } }
.menu > summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 16px; border-radius: 999px;
  border: 1.5px solid var(--rule); background: var(--surface);
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; color: var(--ink);
}
.menu > summary::-webkit-details-marker { display: none; }
.menu > summary::marker { content: ''; }
.menu > summary:hover { border-color: var(--teal); color: var(--teal-deep); }
.menu[open] > summary { border-color: var(--teal); color: var(--teal-deep); }
.menu .bars { width: 18px; height: 14px; position: relative; flex: none; }
.menu .bars::before, .menu .bars::after, .menu .bars span {
  content: ""; position: absolute; left: 0; right: 0; height: 2px;
  background: currentColor; border-radius: 2px;
}
.menu .bars::before { top: 0; }
.menu .bars span { top: 6px; }
.menu .bars::after { bottom: 0; }
.menu[open] .bars::before { top: 6px; transform: rotate(45deg); }
.menu[open] .bars span { opacity: 0; }
.menu[open] .bars::after { bottom: 6px; transform: rotate(-45deg); }

.menu-panel {
  position: absolute; right: 0; top: calc(100% + 12px);
  min-width: 250px; padding: 10px;
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: 16px; box-shadow: var(--shadow-lg);
  display: grid; gap: 2px;
}
.menu-panel a {
  display: block; padding: 11px 14px; border-radius: 10px;
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 16px;
}
.menu-panel a:hover { background: var(--ground); color: var(--teal-deep); }
.menu-panel a[aria-current="page"] { background: var(--teal-wash); color: var(--teal-deep); }
.menu-panel hr { border: 0; border-top: 1px solid var(--rule); margin: 8px 6px; }

/* ---- buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 20px; border-radius: 999px; text-decoration: none;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px;
  white-space: nowrap; border: 1.5px solid transparent;
  transition: transform .12s ease, box-shadow .2s ease, background-color .2s ease;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-deep); }
.btn-wa { background: #1FA855; color: #fff; box-shadow: var(--shadow-sm); }
.btn-wa:hover { background: #17914a; }
.btn-ghost { border-color: var(--rule); color: var(--ink); background: var(--surface); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-deep); }
.btn-light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-light:hover { background: rgba(255,255,255,.26); }
.btn svg { width: 17px; height: 17px; flex: none; }

/* ---- home hero ------------------------------------------------------ */
.hero { position: relative; overflow: hidden; background: var(--ground); }
.hero::before {
  content: ""; position: absolute; inset: -30% -20% auto 40%;
  height: 130%; background:
    radial-gradient(closest-side, rgba(0,144,132,.16), transparent 70%),
    radial-gradient(closest-side, rgba(0,84,168,.13), transparent 70%);
  background-position: 0 0, 30% 40%; background-repeat: no-repeat;
  background-size: 62% 62%, 55% 55%;
  pointer-events: none;
}
.hero-inner {
  position: relative; display: grid; gap: 44px; align-items: center;
  padding: 64px 0 72px;
}
@media (min-width: 940px) {
  .hero-inner { grid-template-columns: 1.15fr .85fr; padding: 88px 0 96px; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-deep); background: var(--teal-wash);
  padding: 6px 14px; border-radius: 999px;
}
.hero h1 { font-size: clamp(34px, 5.6vw, 56px); font-weight: 800; line-height: 1.06; margin-top: 20px; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero p.lead { font-size: clamp(17px, 2vw, 20px); max-width: 34ch; margin: 20px 0 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 16px; font-size: 14.5px; color: var(--muted); }

.hero-card {
  background: var(--surface); border: 1px solid var(--rule); border-radius: 22px;
  padding: 30px 28px; box-shadow: var(--shadow-lg); text-align: center;
}
.hero-card img { width: min(280px, 100%); height: auto; margin-inline: auto; display: block; }
.hero-card .est {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--rule);
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}

/* ---- inner-page masthead -------------------------------------------- */
/* Every page other than the home page opens with this, so you always know
   which page you landed on and what it is for. */
.masthead { background: var(--ground); border-bottom: 1px solid var(--rule); }
.masthead-inner { padding: 52px 0 56px; max-width: 68ch; }
@media (min-width: 900px) { .masthead-inner { padding: 68px 0 72px; } }
.masthead h1 { font-size: clamp(30px, 4.6vw, 46px); font-weight: 800; line-height: 1.08; margin-top: 14px; }
.masthead p { font-size: clamp(16.5px, 1.8vw, 19px); margin: 16px 0 0; max-width: 56ch; }
.masthead .hero-cta { margin-top: 26px; }

.crumbs { font-size: 14px; color: var(--muted); padding-top: 20px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--teal-deep); text-decoration: underline; }
.crumbs span { padding: 0 6px; }

/* ---- facts strip ----------------------------------------------------- */
.facts { border-block: 1px solid var(--rule); background: var(--surface); }
.facts-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--rule);
}
@media (min-width: 860px) { .facts-grid { grid-template-columns: repeat(4, 1fr); } }
.fact { background: var(--surface); padding: 26px 22px; }
.fact dt {
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 26px;
  color: var(--ink); letter-spacing: -.02em;
}
.fact dd { margin: 4px 0 0; font-size: 14.5px; color: var(--muted); }

/* ---- sections -------------------------------------------------------- */
section { padding: 72px 0; }
section.tinted { background: var(--ground); }
section.tight { padding: 56px 0; }
.sec-head { max-width: 62ch; margin-bottom: 40px; }
.sec-head h2 { font-size: clamp(27px, 3.4vw, 38px); font-weight: 800; line-height: 1.15; }
.sec-head p { margin: 14px 0 0; font-size: 17.5px; }
.kicker {
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--teal);
  display: block; margin-bottom: 12px;
}

.cards { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.cards.two { grid-template-columns: 1fr; }
@media (min-width: 760px) { .cards.two { grid-template-columns: repeat(2, 1fr); } }
.card {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
section.tinted .card { box-shadow: var(--shadow-sm); }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: #CBDEDB; }
.card .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--teal-wash); color: var(--teal-deep); margin-bottom: 16px;
}
.card .ico.blue { background: var(--blue-wash); color: var(--blue); }
.card .ico svg { width: 23px; height: 23px; }
.card h3 { font-size: 19px; font-weight: 700; }
.card p { margin: 9px 0 0; font-size: 16px; }
.card .more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14.5px;
  color: var(--teal-deep); text-decoration: none;
}
.card .more:hover { text-decoration: underline; }

/* A plain list of what is in a category — no invented brand names, just the
   shapes of stock a distributor actually carries. */
.tick-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.tick-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; }
.tick-list svg { width: 19px; height: 19px; flex: none; margin-top: 3px; color: var(--teal); }

/* ---- ordering -------------------------------------------------------- */
.order-list { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .order-list { grid-template-columns: repeat(3, 1fr); } }
.order {
  position: relative; background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: 26px 24px 24px;
  display: flex; flex-direction: column;
}
.order .num {
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 13px;
  color: var(--teal); letter-spacing: .1em;
}
.order h3 { margin-top: 8px; font-size: 19px; font-weight: 700; }
.order p { margin: 8px 0 16px; font-size: 15.5px; }
.order .btn { margin-top: auto; align-self: flex-start; }

/* ---- about ----------------------------------------------------------- */
.about-grid { display: grid; gap: 12px 56px; grid-template-columns: 1fr; margin-bottom: 40px; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.about-grid h2 { font-size: clamp(27px, 3.4vw, 38px); font-weight: 800; line-height: 1.15; }
.about-copy p { margin: 0 0 14px; font-size: 17px; }
.about-copy p:last-child { margin-bottom: 0; }

.talk {
  display: grid; gap: 20px; align-items: center;
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
@media (min-width: 720px) { .talk { grid-template-columns: 1fr auto; } }
.talk .role {
  display: block;
  font-family: 'Manrope', sans-serif; font-size: 11.5px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
}
.talk a.tel {
  display: inline-block; margin-top: 4px;
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: clamp(26px, 4vw, 34px); color: var(--teal-deep); text-decoration: none;
  letter-spacing: -.02em;
}
.talk a.tel:hover { text-decoration: underline; }
.talk-note { margin: 8px 0 0; font-size: 15.5px; color: var(--muted); }
.talk-cta { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---- closing call to action ------------------------------------------ */
.cta-band {
  background: linear-gradient(120deg, var(--teal-deep), #05655D 55%, var(--blue));
  color: #fff;
}
.cta-band .wrap {
  padding: 56px 0; display: grid; gap: 24px; align-items: center;
}
@media (min-width: 860px) { .cta-band .wrap { grid-template-columns: 1fr auto; padding: 64px 0; } }
.cta-band h2 { color: #fff; font-size: clamp(25px, 3.2vw, 34px); font-weight: 800; }
.cta-band p { margin: 12px 0 0; color: rgba(255,255,255,.86); font-size: 17px; max-width: 52ch; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band .btn-ghost { background: #fff; border-color: #fff; color: var(--teal-deep); }
.cta-band .btn-ghost:hover { background: #F0FBF9; color: var(--teal-deep); }

/* ---- steps ----------------------------------------------------------- */
.steps { display: grid; gap: 22px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { padding-top: 20px; border-top: 3px solid var(--teal); }
.step .n {
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 13px;
  letter-spacing: .12em; color: var(--teal); text-transform: uppercase;
}
.step h3 { margin-top: 6px; font-size: 18.5px; font-weight: 700; }
.step p { margin: 8px 0 0; font-size: 16px; }

/* ---- onboarding form -------------------------------------------------- */
.form-shell {
  display: grid; gap: 32px; align-items: start;
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: 20px; padding: 32px 28px; box-shadow: var(--shadow-lg);
}
@media (min-width: 980px) {
  .form-shell { grid-template-columns: .8fr 1.2fr; gap: 52px; padding: 44px; }
}
.form-intro h2 { font-size: clamp(24px, 3vw, 31px); font-weight: 800; line-height: 1.15; }
.form-intro p { margin: 14px 0 0; font-size: 16.5px; }
.form-how {
  background: var(--teal-wash); border-radius: 12px; padding: 14px 16px;
  font-size: 15px !important; color: var(--ink);
}

.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field-row { display: grid; gap: 0 16px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label {
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 13.5px; color: var(--ink);
}
.field input, .field textarea {
  font: inherit; font-size: 16px; color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--rule); border-radius: 10px;
  padding: 11px 13px; width: 100%; resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,144,132,.15);
}
.field input.bad, .field textarea.bad { border-color: var(--red); }
.field .hint { font-size: 13.5px; color: var(--muted); }

/* The one question that is not a box to type in: do you have a Pharmarack
   registered number. Everything else about a buyer is the same either way. */
fieldset.choice { border: 0; margin: 0 0 16px; padding: 0; }
fieldset.choice legend {
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 13.5px; color: var(--ink);
  padding: 0; margin-bottom: 8px;
}
.choices { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.choice-opt {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  border: 1.5px solid var(--rule); border-radius: 12px; padding: 12px 14px;
  font-size: 16px; background: var(--surface);
  transition: border-color .15s ease, background-color .15s ease;
}
.choice-opt:hover { border-color: #BFD8D4; }
.choice-opt input { accent-color: var(--teal); width: 18px; height: 18px; margin: 0; flex: none; }
.choice-opt:has(input:checked) { border-color: var(--teal); background: var(--teal-wash); }
.choice-opt:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(0,144,132,.15); }
fieldset.choice.bad .choice-opt { border-color: var(--red); }

.form-error {
  margin: 4px 0 14px; padding: 11px 14px; border-radius: 10px;
  background: #FDECEC; color: #9B1B15; font-size: 15px;
}
.form-submit { width: 100%; padding: 14px 20px; font-size: 16px; }
.form-fallback { margin: 14px 0 0; font-size: 15px; color: var(--muted); }

/* ---- contact --------------------------------------------------------- */
.contact-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.addr { display: flex; gap: 16px; align-items: flex-start; }
.addr .ico {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-wash); color: var(--blue);
}
.addr .ico svg { width: 21px; height: 21px; }
.addr h3 { font-size: 16px; font-weight: 700; }
.addr p { margin: 4px 0 0; font-size: 16.5px; }
.addr a { color: var(--body); text-decoration: none; }
.addr a:hover { color: var(--teal-deep); text-decoration: underline; }
.stack { display: grid; gap: 24px; }

/* ---- footer ---------------------------------------------------------- */
footer { background: var(--ink); color: #B9CFCC; padding: 48px 0 34px; }
.foot-top { display: grid; gap: 26px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 800px) { .foot-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
footer h4 {
  font-family: 'Manrope', sans-serif; color: #fff; font-size: 13px;
  letter-spacing: .13em; text-transform: uppercase; margin: 0 0 12px;
}
footer a { color: #B9CFCC; text-decoration: none; }
footer a:hover { color: #fff; text-decoration: underline; }
footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 15.5px; }
.foot-brand { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 21px; color: #fff; }
.foot-note { font-size: 15.5px; margin: 10px 0 0; max-width: 42ch; }
.foot-bottom {
  margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 14px; color: #93AFAC;
}

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--teal); color: #fff; padding: 10px 16px; z-index: 100; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }
