/* =============================================
   AA Medical Supply — Revamp layer (loaded after styles.css)
   Modern visuals + lively motion. Layered so it's reversible.
   ============================================= */

:root {
  --accent:     #16b8c4;                /* lively teal accent */
  --accent-dk:  #0e93a0;
  --grad-hero:  linear-gradient(135deg, #143a55 0%, #1f4e6e 45%, #2e6890 100%);
  --grad-accent:linear-gradient(120deg, #2e6890 0%, #16b8c4 100%);
  --ease-out:   cubic-bezier(.22,.61,.36,1);
  --shadow-pop: 0 18px 50px -18px rgba(20,58,85,.45);
}

/* ---------- Reveal system (hidden only when JS is on) ---------- */
.js-anim [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}
.js-anim [data-reveal].in { opacity: 1; transform: none; }
.js-anim [data-reveal="scale"]      { transform: scale(.94); }
.js-anim [data-reveal="left"]       { transform: translateX(-40px); }
.js-anim [data-reveal="right"]      { transform: translateX(40px); }
.js-anim [data-reveal="scale"].in,
.js-anim [data-reveal="left"].in,
.js-anim [data-reveal="right"].in   { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js-anim [data-reveal] { opacity: 1 !important; transform: none !important; }
  .blob, .float-chip, .hero-pulse { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Inline SVG sizing (icons must not blow up) ---------- */
.btn svg { width: 1.05em; height: 1.05em; vertical-align: -.16em; margin-left: 6px; display: inline-block; }
.ct-arrow svg { width: 22px; height: 22px; display: block; }
.t-badge svg, .float-chip svg, .hc-step svg { flex-shrink: 0; }

/* ---------- Sticky nav elevation ---------- */
.main-nav { position: sticky; top: 0; z-index: 200; transition: box-shadow .25s, background .25s; }
.main-nav.scrolled { box-shadow: 0 6px 22px rgba(20,58,85,.13); backdrop-filter: saturate(1.2) blur(2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero-revamp {
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  padding: 88px 0 92px;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-bg .blob {
  position: absolute; border-radius: 50%; filter: blur(46px); opacity: .5;
}
.blob-1 { width: 460px; height: 460px; top: -140px; right: -80px;
  background: radial-gradient(circle at 30% 30%, #16b8c4, transparent 70%); animation: drift1 18s ease-in-out infinite; }
.blob-2 { width: 420px; height: 420px; bottom: -160px; left: -120px;
  background: radial-gradient(circle at 60% 40%, #3a78a0, transparent 70%); animation: drift2 22s ease-in-out infinite; }
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 75%);
}
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,40px) scale(1.08)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(40px,-30px) scale(1.1)} }

.hero-revamp .hero-inner { position: relative; z-index: 1; align-items: center; }
.hero-revamp .hero-tag {
  background: rgba(22,184,196,.18); border: 1px solid rgba(22,184,196,.5);
  color: #aef0f5; display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(4px); text-transform: none; letter-spacing: .3px; font-size: .82rem;
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(22,184,196,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(22,184,196,.6)} 70%{box-shadow:0 0 0 10px rgba(22,184,196,0)} 100%{box-shadow:0 0 0 0 rgba(22,184,196,0)} }
.hero-revamp h1 { font-size: 3.1rem; line-height: 1.08; letter-spacing: -.5px; }
.hero-revamp h1 .grad {
  background: linear-gradient(100deg, #7fe3ec, #c9eef2 60%, #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-revamp p { max-width: 540px; font-size: 1.15rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; }
.hero-trust .t-badge { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; font-weight: 600; color: #dceaf2; }
.hero-trust .t-badge svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); }

/* hero right visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card.glass {
  position: relative; width: 100%; max-width: 380px;
  background: rgba(255,255,255,.97); border: 1px solid rgba(255,255,255,.6);
  border-radius: 20px; padding: 26px; box-shadow: var(--shadow-pop);
}
.hero-card .hc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.hero-card .hc-badge { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-accent); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.hero-card .hc-badge svg { width: 26px; height: 26px; }
.hero-card .hc-head h3 { margin: 0; font-size: 1.1rem; color: var(--navy); line-height: 1.2; }
.hero-card .hc-head span { font-size: .82rem; color: var(--gray); }
.hc-steps { display: flex; flex-direction: column; gap: 12px; }
.hc-step { display: flex; align-items: center; gap: 12px; font-size: .95rem; color: var(--gray-dk); }
.hc-step .n { width: 26px; height: 26px; border-radius: 50%; background: var(--blue-bg); color: var(--navy); font-weight: 800; font-size: .85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hc-cta { display: block; text-align: center; margin-top: 20px; }

.float-chip {
  position: absolute; background: #fff; color: var(--navy); font-weight: 800; font-size: .9rem;
  padding: 10px 16px; border-radius: 14px; box-shadow: 0 10px 30px -8px rgba(0,0,0,.35);
  display: flex; align-items: center; gap: 8px;
}
.float-chip svg { width: 18px; height: 18px; color: var(--accent); }
.chip-1 { top: -18px; left: -24px; animation: floaty 5s ease-in-out infinite; }
.chip-2 { bottom: 24px; right: -28px; animation: floaty 6s ease-in-out infinite .6s; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* Redesigned hero tag (v2) */
.hero-revamp .hero-tag-v2 {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.3);
  color: #fff; padding: 6px 18px 6px 6px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .82rem; letter-spacing: .4px; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.hero-tag-v2 .ht-check {
  width: 24px; height: 24px; border-radius: 50%; background: var(--grad-accent);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(22,184,196,.18);
}
.hero-tag-v2 .ht-check svg { width: 14px; height: 14px; color: #fff; }

/* Floating medical icons in hero background */
.hero-ico { position: absolute; color: #fff; opacity: .08; z-index: 0; }
.hero-ico svg { width: 100%; height: 100%; }
.hi-1 { width: 88px; height: 88px; top: 20%; left: 5%; animation: floaty 7s ease-in-out infinite; }
.hi-2 { width: 60px; height: 60px; top: 64%; left: 15%; animation: floaty 9s ease-in-out infinite 1s; }
.hi-3 { width: 72px; height: 72px; top: 26%; left: 40%; opacity: .05; animation: floaty 8s ease-in-out infinite .5s; }
.hi-4 { width: 120px; height: 120px; bottom: 8%; right: 34%; opacity: .05; animation: floaty 11s ease-in-out infinite; }
@media (max-width: 768px) { .hero-ico { display: none; } }

/* ============================================================
   SECONDARY-PAGE HERO (about / contact / insurance / cgm / shop)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--grad-hero); padding: 72px 0;
}
.page-hero::before, .page-hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(54px); z-index: -1; opacity: .5;
}
.page-hero::before { width: 360px; height: 360px; top: -130px; right: -50px; background: radial-gradient(circle, #16b8c4, transparent 70%); }
.page-hero::after  { width: 320px; height: 320px; bottom: -150px; left: -40px; background: radial-gradient(circle, #3a78a0, transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.6rem; letter-spacing: -.5px; animation: heroUp .7s var(--ease-out) both; }
.page-hero p  { animation: heroUp .7s var(--ease-out) .12s both; }
.page-hero .breadcrumb { animation: heroUp .6s var(--ease-out) both; }
@keyframes heroUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .page-hero h1, .page-hero p, .page-hero .breadcrumb { animation: none; } }

/* ============================================================
   STATS BAR (count-up)
   ============================================================ */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 34px 16px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 28%; height: 44%; width: 1px; background: var(--border); }
.stat .num { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { font-size: .9rem; color: var(--gray); margin-top: 8px; font-weight: 600; }

/* ============================================================
   SECTION HEADERS + accent
   ============================================================ */
.section-label { color: var(--accent-dk); position: relative; display: inline-block; }
.section-title .grad { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============================================================
   CATEGORY CARDS (icon tiles)
   ============================================================ */
.cat-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-tile {
  position: relative; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 24px; overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
  display: flex; align-items: flex-start; gap: 16px;
}
.cat-tile::after {
  content: ""; position: absolute; inset: 0; background: var(--grad-accent);
  opacity: 0; transition: opacity .35s; z-index: 0;
}
.cat-tile > * { position: relative; z-index: 1; }
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); border-color: transparent; }
.cat-tile:hover::after { opacity: 1; }
.cat-tile:hover h4, .cat-tile:hover p { color: #fff; }
.cat-tile:hover .ct-ico { background: rgba(255,255,255,.2); color: #fff; }
.ct-ico {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  background: var(--blue-bg); color: var(--navy);
  display: flex; align-items: center; justify-content: center; transition: all .35s;
}
.ct-ico svg { width: 28px; height: 28px; }
.cat-tile h4 { font-size: 1.08rem; font-weight: 800; color: var(--navy); margin: 2px 0 5px; transition: color .35s; }
.cat-tile p  { font-size: .9rem; color: var(--gray); transition: color .35s; line-height: 1.5; }
.cat-tile .ct-arrow { margin-left: auto; align-self: center; color: var(--accent); transition: transform .35s, color .35s; }
.cat-tile:hover .ct-arrow { transform: translateX(4px); color: #fff; }

/* ============================================================
   WHY CARDS
   ============================================================ */
.why-grid-r { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.why-card-r {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 24px; text-align: center;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.why-card-r:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }
.why-card-r .wi {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 18px;
  background: var(--grad-accent); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px -8px rgba(22,184,196,.6);
}
.why-card-r .wi svg { width: 32px; height: 32px; }
.why-card-r h4 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.why-card-r p { font-size: .92rem; color: var(--gray); line-height: 1.6; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: var(--grad-hero); color: #fff; border-radius: 22px; padding: 54px 40px; text-align: center; }
.cta-band .blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .45; }
.cta-band .blob-a { width: 360px; height: 360px; top: -120px; left: -60px; background: radial-gradient(circle,#16b8c4,transparent 70%); }
.cta-band .blob-b { width: 320px; height: 320px; bottom: -140px; right: -40px; background: radial-gradient(circle,#3a78a0,transparent 70%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.cta-band p { opacity: .9; max-width: 560px; margin: 0 auto 24px; font-size: 1.1rem; }

/* ============================================================
   PARALLAX BAND (fixed background reveals on scroll)
   ============================================================ */
.parallax {
  position: relative;
  background-image: linear-gradient(rgba(20,58,85,.80), rgba(20,58,85,.86)), url('parallax-care.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;          /* the "image stays while you scroll over it" effect */
  color: #fff;
  text-align: center;
  padding: 110px 20px;
  overflow: hidden;
}
.parallax .section-label { color: #aef0f5; }
.parallax h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 14px; line-height: 1.15; }
.parallax h2 .grad { background: linear-gradient(100deg,#7fe3ec,#fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.parallax p { max-width: 620px; margin: 0 auto 26px; font-size: 1.15rem; opacity: .94; }
.parallax-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 40px; }
.parallax-stats .ps { text-align: center; }
.parallax-stats .ps b { display: block; font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
.parallax-stats .ps span { font-size: .9rem; opacity: .85; }
@media (max-width: 768px) {
  .parallax { background-attachment: scroll; padding: 68px 20px; }   /* fixed bg is unreliable on iOS — fall back to static cover */
  .parallax h2 { font-size: 1.85rem; }
  .parallax-stats { gap: 30px; }
  .parallax-stats .ps b { font-size: 1.7rem; }
}

/* ============================================================
   TESTIMONIALS polish
   ============================================================ */
.testi-card { transition: transform .35s var(--ease-out), box-shadow .35s; }
.testi-card:hover { transform: translateY(-5px); }

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.feat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); border-color: transparent; }
.feat-img { aspect-ratio: 4 / 3; background: var(--gray-lt); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.feat-img img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform .4s var(--ease-out); }
.feat-card:hover .feat-img img { transform: scale(1.06); }
.feat-cgm .feat-img { background: linear-gradient(135deg, #e8f7f9, #f3f5f7); }
.feat-body { padding: 18px 20px 20px; display: flex; flex-direction: column; }
.feat-tag { align-self: flex-start; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--accent-dk); background: var(--blue-bg); padding: 3px 10px; border-radius: 20px; margin-bottom: 8px; }
.feat-tag.hot { color: #fff; background: var(--grad-accent); }
.feat-body h4 { font-size: 1.08rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.feat-body p { font-size: .88rem; color: var(--gray); }
.feat-link { margin-top: 10px; font-size: .85rem; font-weight: 700; color: var(--accent-dk); }

/* ============================================================
   REVIEWS CTA
   ============================================================ */
.reviews-box { max-width: 720px; margin: 0 auto; text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: 22px; padding: 46px 32px; box-shadow: var(--shadow-lg); }
.rc-stars { color: #fbbf24; font-size: 1.7rem; letter-spacing: 4px; margin-bottom: 12px; }
.reviews-box h2 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.reviews-box p { color: var(--gray); max-width: 540px; margin: 0 auto 24px; }
.rc-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CLICK-TO-CALL FAB (all pages, injected by anim.js)
   ============================================================ */
.call-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  background: var(--grad-accent); color: #fff; font-weight: 800;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 22px; border-radius: 999px; box-shadow: 0 12px 30px -6px rgba(22,184,196,.6);
  transition: transform .2s, box-shadow .2s;
}
.call-fab svg { width: 20px; height: 20px; }
.call-fab:hover { transform: translateY(-2px) scale(1.03); color: #fff; box-shadow: 0 16px 38px -6px rgba(22,184,196,.72); }
@media (max-width: 768px) {
  .call-fab { right: 14px; bottom: 14px; padding: 15px; }
  .call-fab span { display: none; }     /* icon-only bubble on phones */
  .call-fab svg { width: 24px; height: 24px; }
}
@media (prefers-reduced-motion: reduce) { .call-fab { transition: none; } }

/* ============================================================
   MOBILE TOP BAR — declutter on small screens
   ============================================================ */
@media (max-width: 768px) {
  .top-bar .top-bar-left span:nth-child(2) { display: none; }   /* hide email, keep phone */
  .top-bar .years-tag { display: none !important; }
  .top-bar .container { gap: 8px; flex-wrap: wrap; }
  .top-bar-right { gap: 6px; }
}

@media (max-width: 900px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .featured-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--accent); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 700; color: var(--navy); font-size: 1.05rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-dk); }
.faq-ico { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-ico::before, .faq-ico::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .25s, opacity .25s; }
.faq-ico::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-ico::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] .faq-ico::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 22px 22px; color: var(--gray); line-height: 1.7; }
.faq-a a { color: var(--accent-dk); font-weight: 700; }

/* ============================================================
   AUTH (login / signup) — two-panel
   ============================================================ */
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: 940px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: var(--white); }
.auth-card { padding: 46px 42px; }
.auth-card .auth-ico { width: 62px; height: 62px; border-radius: 16px; background: var(--grad-accent); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 10px 24px -8px rgba(22,184,196,.6); }
.auth-card .auth-ico svg { width: 30px; height: 30px; }
.auth-card h2 { font-size: 1.55rem; color: var(--navy); margin-bottom: 8px; }
.auth-card .sub { color: var(--gray); margin-bottom: 24px; font-size: .95rem; }
.auth-security { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 11px; }
.auth-security .sec-row { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--gray); }
.auth-security .sec-row svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.auth-aside { background: var(--grad-hero); color: #fff; padding: 46px 42px; position: relative; overflow: hidden; isolation: isolate; }
.auth-aside::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; filter: blur(50px); background: radial-gradient(circle,#16b8c4,transparent 70%); opacity: .5; top: -80px; right: -60px; z-index: -1; }
.auth-aside h3 { font-size: 1.25rem; margin-bottom: 22px; }
.auth-benefits { display: flex; flex-direction: column; gap: 18px; }
.auth-benefit { display: flex; gap: 13px; align-items: flex-start; }
.auth-benefit .ab-ico { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.auth-benefit .ab-ico svg { width: 21px; height: 21px; color: #aef0f5; }
.auth-benefit b { display: block; font-size: .98rem; margin-bottom: 2px; }
.auth-benefit span { font-size: .85rem; opacity: .86; line-height: 1.5; }
@media (max-width: 768px) { .auth-grid { grid-template-columns: 1fr; } .auth-aside { display: none; } }

/* ============================================================
   PRESCRIPTION REFILL TRACKER (account page)
   ============================================================ */
.refill-card { border: 1px solid var(--border); border-left: 4px solid var(--border); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 12px; }
.refill-card.ready { border-left-color: #e0892e; background: #fff8f0; }
.refill-card.soon  { border-left-color: var(--accent); background: #f0fbfc; }
.refill-card.ok    { border-left-color: #3fae6a; }
.refill-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.refill-top b { color: var(--navy); font-size: 1.02rem; }
.refill-badge { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 3px 10px; border-radius: 20px; background: var(--blue-bg); color: var(--accent-dk); white-space: nowrap; }
.refill-card.ready .refill-badge { background: #e0892e; color: #fff; }
.refill-card.soon  .refill-badge { background: var(--grad-accent); color: #fff; }
.refill-bar { height: 7px; background: var(--gray-lt); border-radius: 6px; overflow: hidden; margin: 11px 0 8px; }
.refill-bar span { display: block; height: 100%; background: var(--grad-accent); border-radius: 6px; transition: width .6s var(--ease-out); }
.refill-card.ready .refill-bar span { background: #e0892e; }
.refill-meta { font-size: .85rem; color: var(--gray); }
.refill-actions { display: flex; gap: 16px; margin-top: 11px; flex-wrap: wrap; }
.refill-actions button, .refill-actions a { font-size: .82rem; font-weight: 700; color: var(--accent-dk); background: none; border: none; cursor: pointer; padding: 0; }
.refill-actions .rm { color: var(--gray); }
.refill-add { background: var(--gray-lt); border-radius: var(--radius); padding: 16px; margin-top: 10px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .why-grid-r { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-revamp { padding: 56px 0 64px; }
  .hero-revamp h1 { font-size: 2.3rem; }
  .hero-revamp .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 36px; }
  .float-chip { display: none; }
}
@media (max-width: 560px) {
  .cat-tiles { grid-template-columns: 1fr; }
  .why-grid-r { grid-template-columns: 1fr; }
  .stat .num { font-size: 2rem; }
}
