:root{
  --navy:#0F2A43;
  --navy-light:#1E4266;
  --teal:#1C7C72;
  --teal-light:#e8f3f1;
  --amber:#E2A33B;
  --amber-dark:#c4832a;
  --bg:#F6F7F5;
  --ink:#16232E;
  --ink-soft:#4B5A66;
  --border:#DCE2E2;
  --white:#ffffff;
  --radius:14px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Public Sans', sans-serif;
  background:var(--bg);
  color:var(--ink);
  font-size:1.06rem;
  line-height:1.6;
}
h1,h2,h3,.font-display{
  font-family:'Fraunces', serif;
  color:var(--navy);
  letter-spacing:-0.01em;
}
.mono{
  font-family:'IBM Plex Mono', monospace;
  font-variant-numeric: tabular-nums;
}
a{color:inherit;}

/* ---------- NAVBAR ---------- */
.navbar-custom{
  background:var(--white);
  border-bottom:1px solid var(--border);
  padding:.85rem 0;
}
.brand-mark{
  font-family:'Fraunces', serif;
  font-weight:600;
  font-size:1.4rem;
  color:var(--navy);
  display:flex;
  align-items:center;
  gap:.5rem;
  text-decoration:none;
}
.brand-mark .leaf{ color:var(--teal); font-size:1.15rem; }
.nav-link-custom{
  font-weight:600;
  font-size:.95rem;
  color:var(--ink-soft) !important;
  padding:.5rem 1rem !important;
  position:relative;
}
.nav-link-custom:hover{ color:var(--navy) !important; }
.nav-link-custom.active{ color:var(--navy) !important; }
.nav-link-custom.active::after{
  content:"";
  position:absolute;
  left:1rem; right:1rem; bottom:.15rem;
  height:2px;
  background:var(--amber);
  border-radius:2px;
}
.btn-cta{
  background:var(--amber);
  border:none;
  color:var(--navy);
  font-weight:700;
  padding:.6rem 1.4rem;
  border-radius:999px;
  transition:.15s ease;
}
.btn-cta:hover{ background:var(--amber-dark); color:var(--white); }
.btn-outline-navy{
  border:1.5px solid var(--navy);
  color:var(--navy);
  font-weight:700;
  padding:.55rem 1.35rem;
  border-radius:999px;
  background:transparent;
}
.btn-outline-navy:hover{ background:var(--navy); color:var(--white); }

/* ---------- PAGE HERO (shared, image + text) ---------- */
.page-hero{ padding:3.5rem 0 4rem; position:relative; overflow:hidden; }
.page-hero::before{
  content:"";
  position:absolute; top:-120px; right:-160px;
  width:480px; height:480px;
  background:radial-gradient(circle, rgba(28,124,114,.10) 0%, rgba(28,124,114,0) 70%);
}
.eyebrow{
  display:inline-flex; align-items:center; gap:.5rem;
  background:var(--teal-light); color:var(--teal);
  font-weight:700; font-size:.8rem; letter-spacing:.06em; text-transform:uppercase;
  padding:.4rem .9rem; border-radius:999px; margin-bottom:1.4rem;
}
.page-hero h1{ font-size:clamp(2.1rem, 3.6vw, 3rem); font-weight:600; line-height:1.12; margin-bottom:1.2rem; }
.page-hero .lead-text{ font-size:1.12rem; color:var(--ink-soft); max-width:520px; margin-bottom:1.8rem; }
.hero-illustration{ max-width:460px; margin:0 auto; display:block; }

.trust-row{ display:flex; flex-wrap:wrap; gap:1.5rem; margin-top:2rem; }
.trust-row .item{ display:flex; align-items:center; gap:.5rem; font-size:.86rem; font-weight:600; color:var(--ink-soft); }
.trust-row .item i{ color:var(--teal); }

/* ---------- TRUST STRIP ---------- */
.trust-strip{ background:var(--navy); padding:1.4rem 0; }
.trust-strip .badge-item{ color:#cfe0ea; font-size:.88rem; font-weight:600; display:flex; align-items:center; gap:.55rem; justify-content:center; }
.trust-strip .badge-item i{ color:var(--amber); }

/* ---------- SECTIONS ---------- */
.section{ padding:5rem 0; }
.section-tag{ color:var(--teal); font-weight:700; font-size:.8rem; letter-spacing:.08em; text-transform:uppercase; }
.section h2{ font-size:clamp(1.6rem, 2.4vw, 2.2rem); font-weight:600; margin-top:.5rem; margin-bottom:1rem; }
.section .sub{ color:var(--ink-soft); max-width:560px; }

/* ---------- ICON BADGES (used everywhere instead of stock photos) ---------- */
.icon-badge{
  width:56px; height:56px; border-radius:16px;
  background:var(--teal-light); color:var(--teal);
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; margin-bottom:1.1rem;
}
.icon-badge.amber{ background:#fbeed9; color:var(--amber-dark); }
.icon-badge.navy{ background:#e7edf2; color:var(--navy); }
.icon-badge.round{ border-radius:50%; }

/* ---------- STEP / FEATURE CARDS ---------- */
.step-card, .feature-card{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius);
  padding:2rem 1.8rem; height:100%; position:relative;
}
.step-num{
  font-family:'IBM Plex Mono', monospace; font-size:.85rem; font-weight:600; color:var(--teal);
  background:var(--teal-light); width:34px; height:34px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; margin-bottom:1.2rem;
}
.step-card h3, .feature-card h3{ font-size:1.15rem; font-weight:600; margin-bottom:.6rem; }
.step-card p, .feature-card p{ color:var(--ink-soft); font-size:.96rem; margin:0; }

/* ---------- PRICE LABEL (signature element) ---------- */
.price-label{
  background:var(--white); border-radius:var(--radius); border:1.5px solid var(--border);
  box-shadow:0 20px 45px -20px rgba(15,42,67,.25); max-width:420px; margin-left:auto;
  position:relative; overflow:hidden;
}
.price-label::before,.price-label::after{
  content:""; position:absolute; width:26px; height:26px; background:var(--bg);
  border-radius:50%; top:50%; transform:translateY(-50%); border:1.5px solid var(--border);
}
.price-label::before{ left:-13px; }
.price-label::after{ right:-13px; }
.price-label .perforation{ border-top:2px dashed var(--border); margin:0; }
.price-label .head{ background:var(--navy); color:#fff; padding:1.1rem 1.5rem; display:flex; align-items:center; justify-content:space-between; }
.price-label .head span{ font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; opacity:.75; }
.price-label .med-name{ font-family:'Fraunces', serif; font-size:1.15rem; font-weight:600; }
.price-label .body{ padding:1.6rem 1.5rem 1.8rem; }
.price-row{ display:flex; align-items:baseline; justify-content:space-between; padding:.55rem 0; }
.price-row .label{ font-size:.82rem; font-weight:700; color:var(--ink-soft); display:flex; align-items:center; gap:.4rem; }
.price-row .amount{ font-size:1.15rem; font-weight:600; }
.price-row.us .amount{ color:#9aa5ab; text-decoration:line-through; text-decoration-color:#c3999a; text-decoration-thickness:2px; }
.price-row.ca .amount{ color:var(--teal); font-size:1.7rem; font-weight:700; }
.savings-tag{ background:var(--amber); color:var(--navy); font-weight:800; font-size:.85rem; text-align:center; padding:.6rem; border-radius:10px; margin-top:1rem; }

/* ---------- MEDICATION CARDS ---------- */
.med-card{ background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:1.6rem; height:100%; transition:.15s ease; }
.med-card:hover{ border-color:var(--teal); box-shadow:0 12px 30px -18px rgba(15,42,67,.3); transform:translateY(-2px); }
.med-card .cat{ font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-soft); }
.med-card h3{ font-size:1.2rem; font-weight:600; margin:.35rem 0 1rem; }
.med-card .med-icon{
  width:52px; height:52px; border-radius:14px; background:var(--teal-light); color:var(--teal);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:1rem;
}
.med-compare{ display:flex; align-items:center; justify-content:space-between; border-top:1px dashed var(--border); padding-top:1rem; }
.med-compare small{ display:block; font-size:.72rem; color:var(--ink-soft); font-weight:600; }
.med-compare .us .val{ color:#9aa5ab; text-decoration:line-through; font-weight:600; }
.med-compare .ca .val{ color:var(--teal); font-weight:700; font-size:1.25rem; }
.med-compare i{ color:var(--border); }
.filter-pill{
  border:1.5px solid var(--border); background:var(--white); color:var(--ink-soft);
  font-weight:600; font-size:.85rem; padding:.45rem 1.1rem; border-radius:999px; transition:.15s ease;
}
.filter-pill.active, .filter-pill:hover{ border-color:var(--teal); color:var(--teal); background:var(--teal-light); }

/* ---------- TESTIMONIALS ---------- */
.testimonial-card{ background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:1.8rem; height:100%; }
.testimonial-card .stars{ color:var(--amber); margin-bottom:.9rem; font-size:.9rem; }
.testimonial-card .who{ font-size:.85rem; font-weight:700; color:var(--navy); }
.testimonial-card .where{ font-size:.8rem; color:var(--ink-soft); }

/* ---------- FAQ ---------- */
.accordion-item{ background:transparent; border:none; border-bottom:1px solid var(--border); }
.accordion-button{
  font-family:'Fraunces', serif; font-weight:600; font-size:1.05rem; color:var(--navy);
  background:transparent; padding:1.3rem .2rem; box-shadow:none !important;
}
.accordion-button:not(.collapsed){ color:var(--teal); background:transparent; }
.accordion-button::after{ filter:hue-rotate(120deg) saturate(1.5); }
.accordion-body{ color:var(--ink-soft); padding:0 .2rem 1.5rem; }

/* ---------- CTA BANNER ---------- */
.cta-banner{
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius:20px; padding:3.2rem; color:#fff; position:relative; overflow:hidden;
}
.cta-banner::after{
  content:""; position:absolute; right:-60px; bottom:-60px; width:220px; height:220px;
  border-radius:50%; background:rgba(226,163,59,.15);
}
.cta-banner h2{ color:#fff; }
.cta-banner p{ color:#cfe0ea; max-width:480px; }

/* ---------- CONTACT / FORMS ---------- */
.contact-card{ background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:2rem; height:100%; }
.form-control, .form-select{
  border:1.5px solid var(--border); padding:.65rem .9rem; border-radius:10px; font-size:.95rem;
}
.form-control:focus, .form-select:focus{ border-color:var(--teal); box-shadow:0 0 0 .2rem rgba(28,124,114,.12); }
.form-label{ font-weight:600; font-size:.88rem; color:var(--navy); margin-bottom:.4rem; }

/* ---------- FOOTER ---------- */
footer{ background:var(--navy); color:#a9bcc9; padding:3.5rem 0 1.5rem; font-size:.9rem; }
footer h6{ color:#fff; font-weight:700; font-size:.85rem; letter-spacing:.05em; text-transform:uppercase; margin-bottom:1rem; }
footer a{ color:#a9bcc9; text-decoration:none; }
footer a:hover{ color:#fff; }
footer ul{ list-style:none; padding:0; margin:0; }
footer li{ margin-bottom:.6rem; }
.footer-disclaimer{ border-top:1px solid rgba(255,255,255,.12); margin-top:2.5rem; padding-top:1.8rem; font-size:.78rem; color:#7f93a1; line-height:1.7; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); margin-top:1.5rem; padding-top:1.3rem; display:flex; justify-content:space-between; flex-wrap:wrap; gap:1rem; font-size:.8rem; }

.back-to-top{
  position:fixed;
  right:1.25rem;
  bottom:1.25rem;
  z-index:1100;
  width:3rem;
  height:3rem;
  border:none;
  border-radius:50%;
  background:var(--teal);
  color:var(--white);
  box-shadow:0 12px 30px -12px rgba(15,42,67,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition:opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--navy); }

.chatbot-toggle{
  position:fixed;
  right:1.25rem;
  bottom:5.9rem;
  z-index:1100;
  width:3.2rem;
  height:3.2rem;
  border:none;
  border-radius:50%;
  background:linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  color:var(--white);
  box-shadow:0 14px 35px -12px rgba(15,42,67,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
}
.chatbot-toggle:hover{ transform:translateY(-2px); }

.chatbot-panel{
  position:fixed;
  right:1.25rem;
  bottom:6.6rem;
  z-index:1100;
  width:min(360px, calc(100vw - 2rem));
  max-height:min(520px, calc(100vh - 7rem));
  background:var(--white);
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:0 20px 45px -20px rgba(15,42,67,.35);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.chatbot-panel.show{ opacity:1; visibility:visible; transform:translateY(0); }
.chatbot-header{ padding:1rem 1rem .8rem; border-bottom:1px solid var(--border); display:flex; align-items:flex-start; justify-content:space-between; gap:1rem; }
.chatbot-header h3{ font-size:1rem; margin:0 0 .2rem; }
.chatbot-header p{ margin:0; font-size:.8rem; color:var(--ink-soft); }
.chatbot-close{ border:none; background:transparent; color:var(--ink-soft); font-size:1rem; }
.chatbot-messages{ padding:1rem; display:flex; flex-direction:column; gap:.75rem; overflow-y:auto; background:linear-gradient(180deg, #f9fcfc 0%, #f4f8f8 100%); }
.chat-bubble{ max-width:85%; padding:.7rem .85rem; border-radius:14px; font-size:.92rem; line-height:1.45; }
.chat-bubble.bot{ background:var(--white); color:var(--ink); border:1px solid var(--border); align-self:flex-start; }
.chat-bubble.user{ background:var(--teal); color:var(--white); align-self:flex-end; }
.chatbot-suggestions{ display:flex; flex-wrap:wrap; gap:.5rem; padding:0 1rem 1rem; }
.chat-suggestion{ border:1px solid var(--border); background:var(--white); color:var(--navy); border-radius:999px; padding:.45rem .8rem; font-size:.8rem; font-weight:600; }
.chatbot-form{ display:flex; gap:.6rem; padding:1rem; border-top:1px solid var(--border); }
.chatbot-form input{ flex:1; border:1px solid var(--border); border-radius:999px; padding:.7rem .9rem; font-size:.92rem; }
.chatbot-form button{ border:none; background:var(--teal); color:var(--white); width:2.6rem; height:2.6rem; border-radius:50%; display:flex; align-items:center; justify-content:center; }

@media (max-width:991px){
  .price-label{ margin:2.5rem auto 0; }
  .section{ padding:3.5rem 0; }
  .hero-illustration{ max-width:340px; margin-top:2rem; }
}
