/* =========================================================
   Red Button Telecare, Redesign
   Design system + page styles
   ========================================================= */

:root{
  /* Brand */
  --red:#cd1932;
  --red-dark:#a9142a;
  --red-soft:#fbe9ec;
  --navy:#205f99;
  --navy-dark:#184b78;
  --navy-deep:#163f63;

  /* Neutrals (warm) */
  --ink:#1c2233;
  --body:#454b5c;
  --muted:#6b7280;
  --line:#e7e3dc;
  --cream:#fbf7f2;
  --cream-2:#f4eee5;
  --white:#ffffff;

  /* Accents */
  --gold:#f2b705;
  --green:#1f9d57;
  --green-soft:#e7f6ee;

  /* UI */
  --radius:18px;
  --radius-sm:12px;
  --radius-lg:28px;
  --shadow-sm:0 2px 10px rgba(24,33,60,.06);
  --shadow:0 18px 45px -22px rgba(24,33,60,.35);
  --shadow-lg:0 40px 80px -30px rgba(24,33,60,.45);
  --maxw:1180px;
  --font-head:"Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --font-body:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

/* ----------------------------- Reset ----------------------------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--font-body);
  color:var(--body);
  background:var(--white);
  font-size:18px;            /* large, senior-friendly base */
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul{ list-style:none; }

h1,h2,h3,h4{ font-family:var(--font-head); color:var(--ink); line-height:1.15; font-weight:700; }
h1{ font-size:clamp(2.3rem,5.2vw,3.7rem); letter-spacing:-.02em; }
h2{ font-size:clamp(1.9rem,3.8vw,2.85rem); letter-spacing:-.015em; }
h3{ font-size:clamp(1.2rem,2vw,1.5rem); }
p{ margin:0 0 1rem; }

.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:24px; }
.section{ padding:clamp(56px,8vw,108px) 0; }
.section--cream{ background:var(--cream); }
.section--navy{ background:var(--navy); color:#dfe5f3; }
.section--navy h2,.section--navy h3{ color:#fff; }

.center{ text-align:center; }
.eyebrow{
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--font-head); font-weight:600; font-size:.82rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--red);
  background:var(--red-soft); padding:.45rem 1rem; border-radius:100px;
  margin-bottom:1.1rem;
}
.section--navy .eyebrow{ background:rgba(255,255,255,.1); color:#ffd2d4; }
.pro-band .eyebrow{ background:rgba(255,255,255,.12); color:#cfe0f0; }
.lead{ font-size:clamp(1.05rem,1.6vw,1.25rem); color:var(--body); max-width:62ch; }
.center .lead{ margin-inline:auto; }
.section-head{ max-width:760px; margin:0 auto clamp(38px,5vw,60px); }

/* ----------------------------- Buttons ----------------------------- */
.btn{
  --bg:var(--red); --fg:#fff;
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  background:var(--bg); color:var(--fg);
  font-family:var(--font-head); font-weight:600; font-size:1.05rem;
  padding:1rem 1.7rem; border:2px solid transparent; border-radius:100px;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow:0 14px 26px -12px rgba(205,25,50,.6);
  line-height:1;
}
.btn:hover{ transform:translateY(-2px); background:var(--red-dark); box-shadow:0 20px 34px -12px rgba(205,25,50,.7); }
.btn--lg{ font-size:1.15rem; padding:1.15rem 2.1rem; }
.btn--ghost{
  background:transparent; color:var(--navy); border-color:var(--navy);
  box-shadow:none;
}
.btn--ghost:hover{ background:var(--navy); color:#fff; }
.btn--navy{ background:var(--navy); box-shadow:0 14px 26px -12px rgba(32,95,153,.55); }
.btn--navy:hover{ background:var(--navy-deep); }
.btn--white{ background:#fff; color:var(--navy); box-shadow:var(--shadow); }
.btn--white:hover{ background:#fff; color:var(--red); }
.btn--block{ width:100%; }

/* Order button with stacked label + arrow */
.btn--order{ padding:.6rem .65rem .6rem 1.05rem; gap:.6rem; }
.btn--order__lbl{ display:flex; flex-direction:column; align-items:flex-start; line-height:1.1; text-align:left; }
.btn--order__lbl strong{ font-family:var(--font-head); font-weight:600; font-size:1.05rem; }
.btn--order__lbl small{ font-size:.74rem; font-weight:500; opacity:.85; letter-spacing:.01em; }
.btn--order__arrow{
  width:34px; height:34px; flex:none; border-radius:50%;
  background:rgba(255,255,255,.18); color:#fff; display:grid; place-items:center;
  transition:transform .2s ease, background .2s ease;
}
.btn--order:hover .btn--order__arrow{ transform:translateX(3px); background:rgba(255,255,255,.28); }

.btn-call{
  display:inline-flex; align-items:center; gap:.55rem;
  font-family:var(--font-head); font-weight:700; color:var(--navy);
  font-size:1.05rem; white-space:nowrap;
}
.btn-call svg{ flex:none; }
.btn-call strong{ color:var(--red); }

/* ----------------------------- Header ----------------------------- */
.topbar{
  position:relative;
  background:linear-gradient(90deg,#0d2b46 0%, #1b4a73 50%, #0d2b46 100%);
  color:#c9d5e4;
  border-bottom:1px solid rgba(255,255,255,.06);
  box-shadow:inset 0 -1px 0 rgba(0,0,0,.22);
}
/* fine gold hairline along the top edge for a premium finish */
.topbar::before{ content:""; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg, transparent 0%, rgba(233,201,135,.45) 18%, #f0d49a 50%, rgba(233,201,135,.45) 82%, transparent 100%); }
.topbar .container{ max-width:1280px; display:flex; gap:1.5rem; align-items:center; justify-content:space-between; padding-block:.7rem; }
.topbar__left{ display:flex; align-items:center; }
.topbar__right{ display:flex; align-items:center; gap:1.6rem; }
.topbar__link{ position:relative; display:inline-flex; align-items:center; gap:.5rem; font-size:.76rem; font-weight:600; color:#bdc9da; letter-spacing:.085em; text-transform:uppercase; white-space:nowrap; transition:color .18s ease; }
.topbar__link svg{ width:15px; height:15px; flex:none; color:#ecca85; opacity:1; }
.topbar__link:hover{ color:#fff; }
a.topbar__link::after{ content:""; position:absolute; left:0; right:0; bottom:-4px; height:1.5px; background:linear-gradient(90deg,#e9c987,#f3d9a3); transform:scaleX(0); transform-origin:left; transition:transform .22s ease; border-radius:2px; }
a.topbar__link:hover::after{ transform:scaleX(1); }
.topbar__link strong{ font-size:.85rem; color:#f3d9a3; font-weight:700; letter-spacing:.03em; }
.topbar__div{ width:1px; height:18px; background:linear-gradient(180deg, transparent, rgba(233,201,135,.3), transparent); flex:none; }
/* Reviews.io rating badge (temporary) */
.rating-badge{ display:inline-flex; align-items:center; gap:.5rem; background:rgba(255,255,255,.07); border-radius:100px; padding:.32rem .8rem; line-height:1; border:1px solid rgba(236,202,133,.32); box-shadow:none; transition:background .18s ease, border-color .18s ease; }
.rating-badge:hover{ background:rgba(255,255,255,.13); border-color:rgba(240,212,154,.6); }
.rating-badge .stars{ color:#ecca85; font-size:.84rem; letter-spacing:1.5px; }
.rating-badge b{ color:#fff; font-family:var(--font-head); font-size:.88rem; font-weight:700; }
.rating-badge img{ height:13px; width:auto; display:block; margin-left:.2rem; filter:brightness(0) invert(1); opacity:.82; }
@media (max-width:900px){ .topbar__right > :nth-child(1), .topbar__right > :nth-child(2){ display:none; } }
@media (max-width:730px){ .topbar__right > :nth-child(4), .topbar__right > :nth-child(5){ display:none; } }

.site-header{
  position:sticky; top:0; z-index:60; background:rgba(255,255,255,.92);
  backdrop-filter:saturate(150%) blur(12px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .25s ease;
}
.site-header.scrolled{ box-shadow:var(--shadow-sm); }
.site-header .container{ max-width:1280px; }
.nav{ display:flex; align-items:center; justify-content:space-between; gap:clamp(.8rem,1.6vw,1.7rem); padding-block:.7rem; }
.nav__logo{ flex:none; }
.nav__logo img{ height:44px; width:auto; display:block; }
.nav__menu{ display:flex; align-items:center; gap:clamp(.75rem,1.2vw,1.25rem); }
.nav__menu a{
  font-family:var(--font-head); font-weight:500; font-size:1.02rem; color:var(--ink);
  position:relative; padding:.35rem 0; white-space:nowrap;
}
.nav__menu a::after{
  content:""; position:absolute; left:0; right:0; bottom:-3px; height:2px; width:0; margin:0 auto;
  background:var(--red); border-radius:2px; transition:width .22s ease;
}
.nav__menu a:hover{ color:var(--red); }
.nav__menu a:hover::after{ width:100%; }

.nav__actions{ display:flex; align-items:center; gap:.78rem; flex:none; }

/* Phone pill in header */
.nav__phone{
  display:inline-flex; align-items:center; gap:.6rem; white-space:nowrap;
  padding-right:1.1rem; border-right:1px solid var(--line);
}
.nav__phone__ic{
  width:42px; height:42px; border-radius:50%; flex:none;
  background:var(--red-soft); color:var(--red); display:grid; place-items:center;
}
.nav__phone__txt{ display:flex; flex-direction:column; line-height:1.1; }
.nav__phone__txt small{
  font-family:var(--font-body); font-weight:500; font-size:.72rem; letter-spacing:.02em;
  color:var(--muted); text-transform:uppercase;
}
.nav__phone__txt strong{ font-family:var(--font-head); font-weight:700; font-size:1.12rem; color:var(--navy); }
.nav__phone:hover .nav__phone__txt strong{ color:var(--red); }

.nav__toggle{
  display:none; background:none; border:0; width:46px; height:46px; border-radius:12px;
  align-items:center; justify-content:center; color:var(--navy);
}
.nav__toggle:hover{ background:var(--cream); }

/* ----------------------------- Hero ----------------------------- */
.hero{
  position:relative; overflow:hidden;
  background:
    radial-gradient(1100px 600px at 88% -10%, rgba(205,25,50,.10), transparent 60%),
    radial-gradient(900px 700px at -5% 110%, rgba(32,95,153,.10), transparent 55%),
    var(--cream);
}
.hero__grid{
  display:grid; grid-template-columns:1.06fr 1fr; gap:clamp(30px,4vw,60px);
  align-items:center; padding:clamp(44px,5vw,76px) 0 clamp(48px,5vw,84px);
}
.hero h1{ margin-bottom:1.1rem; }
.hero h1 .accent{ color:var(--red); }
.hero__sub{ font-size:clamp(1.1rem,1.7vw,1.32rem); color:var(--body); max-width:34ch; margin-bottom:1.7rem; }
.hero__cta{ display:flex; align-items:center; gap:1.1rem; flex-wrap:wrap; margin-bottom:1.7rem; }
.hero__points{ display:flex; flex-direction:column; gap:.65rem; align-items:flex-start; }
.hero__points li{ display:flex; align-items:center; gap:.6rem; font-weight:600; color:var(--ink); font-size:1.02rem; }
.hero__points svg{ color:var(--green); flex:none; }

.hero__media{ position:relative; }
.hero__media-link{ display:block; transition:transform .25s ease; }
.hero__media-link:hover{ transform:translateY(-3px); }
.hero__media img{
  position:relative; z-index:1;
  width:100%; object-fit:cover; aspect-ratio:1.25;
  border-radius:34px 34px 34px 96px;
  border:6px solid #fff;
  box-shadow:var(--shadow-lg);
}
/* soft organic colour wash behind the photo */
.hero__media::before{
  content:""; position:absolute; z-index:0; inset:-8% -7% -10% -8%;
  background:
    radial-gradient(58% 58% at 24% 18%, rgba(205,25,50,.16), transparent 62%),
    radial-gradient(62% 62% at 86% 86%, rgba(32,95,153,.18), transparent 62%);
  border-radius:48% 52% 44% 56% / 56% 46% 54% 44%;
}
/* dotted accent peeking from behind */
.hero__media::after{
  content:""; position:absolute; z-index:0; width:132px; height:108px; left:-28px; bottom:54px;
  background-image:radial-gradient(rgba(32,95,153,.30) 2.3px, transparent 2.4px);
  background-size:16px 16px; border-radius:12px; opacity:.65;
}
.hero__badge{
  position:absolute; left:-14px; bottom:24px; background:#fff; border-radius:var(--radius);
  box-shadow:var(--shadow); padding:.9rem 1.15rem; display:flex; align-items:center; gap:.8rem;
  max-width:250px;
}
.hero__badge .pulse{
  width:46px; height:46px; border-radius:50%; background:var(--green-soft); color:var(--green);
  display:grid; place-items:center; flex:none; position:relative;
}
.hero__badge .pulse::after{
  content:""; position:absolute; inset:0; border-radius:50%; border:2px solid var(--green);
  animation:pulse 2.2s ease-out infinite; opacity:0;
}
@keyframes pulse{ 0%{ transform:scale(1); opacity:.7;} 100%{ transform:scale(1.7); opacity:0;} }
.hero__badge b{ display:block; color:var(--ink); font-family:var(--font-head); font-size:1.02rem; line-height:1.2; }
.hero__badge span{ font-size:.86rem; color:var(--muted); }

/* Careline-style hero refinements */
.hero h1{ font-size:clamp(2.4rem,4.7vw,3.5rem); }
/* ----- Referral "how it works" steps ----- */
.howsteps{ display:grid; gap:16px; position:relative; }
.howsteps::before{ content:""; position:absolute; left:48px; top:38px; bottom:38px; width:2px; background:repeating-linear-gradient(to bottom, var(--line) 0 6px, transparent 6px 13px); z-index:0; }
.howstep{ position:relative; z-index:1; display:flex; gap:1.1rem; align-items:center; background:#fff; border:1px solid var(--line); border-radius:18px; padding:20px 22px; box-shadow:var(--shadow-sm); transition:transform .2s ease, box-shadow .2s ease; }
.howstep:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.howstep__num{ width:52px; height:52px; flex:none; border-radius:15px; display:grid; place-items:center; font-family:var(--font-head); font-weight:700; font-size:1.45rem; color:#fff; background:linear-gradient(135deg,var(--red),var(--red-dark)); box-shadow:0 10px 22px -8px rgba(205,25,50,.6); }
.howstep:nth-child(2) .howstep__num{ background:linear-gradient(135deg,var(--navy),var(--navy-deep)); box-shadow:0 10px 22px -8px rgba(32,95,153,.55); }
.howstep__main{ flex:1; }
.howstep__main h3{ margin-bottom:.2rem; font-size:1.2rem; }
.howstep__main p{ margin:0; color:var(--body); font-size:.98rem; }
.howstep__ic{ width:46px; height:46px; flex:none; border-radius:13px; background:var(--red-soft); color:var(--red); display:grid; place-items:center; }
.howstep:nth-child(2) .howstep__ic{ background:#e9edf7; color:var(--navy); }
.howstep--prize{ background:linear-gradient(135deg,var(--navy),var(--navy-deep)); border-color:transparent; box-shadow:0 26px 50px -24px rgba(22,36,77,.7); }
.howstep--prize .howstep__main h3{ color:#fff; }
.howstep--prize .howstep__main p{ color:#c5cee6; }
.howstep--prize .howstep__num{ background:linear-gradient(135deg,#ffd24a,#e9a400); color:#3a2a00; box-shadow:0 10px 22px -8px rgba(242,183,5,.7); }
.howstep--prize .howstep__ic{ background:rgba(255,255,255,.14); color:#ffd84a; }
.howstep--prize .pound{ color:#ffd24a; }

.hero-rating{ display:inline-block; margin-bottom:1.4rem; }
.hero-rating .review-badge{ margin-bottom:0; }
.hero-rating img{ max-height:68px; width:auto; height:auto; }
.review-badge{ display:inline-flex; align-items:center; gap:.55rem; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow-sm); border-radius:100px; padding:.5rem .95rem; margin-bottom:1.4rem; }
.review-badge .stars{ color:#1f9d57; letter-spacing:1px; font-size:1.02rem; line-height:1; }
.review-badge b{ font-family:var(--font-head); color:var(--ink); font-size:.92rem; }
.review-badge span{ font-size:.84rem; color:var(--muted); }
.hero__tag{ font-size:clamp(1.1rem,1.7vw,1.32rem); color:var(--body); margin-bottom:1.7rem; max-width:40ch; }
.hero__tag strong{ color:var(--ink); }
.hero__stat{
  position:absolute; z-index:2; right:22px; bottom:22px; background:rgba(32,95,153,.86); backdrop-filter:blur(6px);
  color:#fff; border-radius:16px; padding:.85rem 1.15rem; display:flex; align-items:center; gap:.75rem; max-width:250px;
  box-shadow:var(--shadow); border:1px solid rgba(255,255,255,.12);
}
.hero__stat svg{ flex:none; opacity:.9; }
.hero__stat b{ font-family:var(--font-head); font-size:1.25rem; display:block; line-height:1.1; }
.hero__stat span{ font-size:.82rem; opacity:.9; }

/* Quiz popup */
.rb-pop-scrim{ position:fixed; inset:0; background:rgba(16,24,48,.45); z-index:84; opacity:0; pointer-events:none; transition:opacity .3s ease; }
.rb-pop-scrim.show{ opacity:1; pointer-events:auto; }
.rb-pop{ position:fixed; left:50%; top:50%; z-index:85; width:360px; max-width:calc(100vw - 32px); background:#fff; border-radius:18px; box-shadow:var(--shadow-lg); border:1px solid var(--line); padding:24px; transform:translate(-50%,-46%); opacity:0; pointer-events:none; transition:opacity .3s ease, transform .3s ease; }
.rb-pop.show{ opacity:1; transform:translate(-50%,-50%); pointer-events:auto; }
.rb-pop__close{ position:absolute; top:10px; right:10px; width:28px; height:28px; border-radius:50%; border:0; background:var(--cream); color:var(--navy); font-size:1.1rem; line-height:1; display:grid; place-items:center; cursor:pointer; }
.rb-pop__close:hover{ background:var(--red-soft); color:var(--red); }
.rb-pop__ic{ width:46px; height:46px; border-radius:12px; background:var(--red-soft); color:var(--red); display:grid; place-items:center; margin-bottom:.7rem; }
.rb-pop b{ font-family:var(--font-head); font-size:1.12rem; color:var(--ink); display:block; margin-bottom:.3rem; }
.rb-pop p{ margin:0 0 1rem; font-size:.93rem; color:var(--body); }
.rb-pop .btn{ width:100%; }
@media (max-width:620px){ .rb-pop{ left:16px; right:16px; width:auto; max-width:none; transform:translate(0,-44%); } .rb-pop.show{ transform:translate(0,-50%); } }

/* ----------------------------- Trust bar ----------------------------- */
.trustbar{ background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trustbar .container{ display:flex; flex-direction:column; align-items:center; gap:1.1rem; padding-block:1.6rem; }
.trustbar__lead{ margin:0; text-align:center; color:var(--navy); font-weight:500; font-size:1rem; max-width:760px; }
.trustbar__lead strong{ color:var(--ink); font-weight:700; }
.trustbar__logos{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:22px 46px; }
.trustbar__logos img{ height:66px; width:auto; object-fit:contain; }
.trustbar__logos img.sm{ height:52px; }
.trustbar__legacy{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; flex-wrap:wrap; }
.trustbar__item{ display:flex; align-items:center; gap:.7rem; color:var(--navy); font-weight:600; font-family:var(--font-head); font-size:.98rem; }
.trustbar__item svg{ color:var(--red); flex:none; }
.trustbar__item small{ display:block; font-weight:400; color:var(--muted); font-family:var(--font-body); font-size:.78rem; letter-spacing:.02em; }

/* ----------------------------- Video ----------------------------- */
.video-wrap{ position:relative; max-width:900px; margin:0 auto; aspect-ratio:16/9; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); background:#000; }
.video-wrap iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

/* ----------------------------- Stat strip ----------------------------- */
.stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; text-align:center; }
.stat__num{ font-family:var(--font-head); font-weight:700; font-size:clamp(2rem,4vw,3rem); color:var(--red); line-height:1; }
.section--navy .stat__num{ color:#fff; }
.stat__label{ font-weight:500; color:var(--body); margin-top:.4rem; }
.section--navy .stat__label{ color:#c3cbe2; }

/* ----------------------------- Empathy / problem ----------------------------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(34px,5vw,72px); align-items:center; }
.split__media img{ border-radius:var(--radius-lg); box-shadow:var(--shadow); width:100%; aspect-ratio:4/3; object-fit:cover; display:block; }
.checklist{ display:grid; gap:1rem; margin-top:1.5rem; }
.checklist li{ display:flex; gap:.85rem; align-items:flex-start; font-size:1.05rem; }
.checklist .tick{ flex:none; width:30px; height:30px; border-radius:50%; background:var(--green-soft); color:var(--green); display:grid; place-items:center; margin-top:2px; }

/* ----------------------------- Packages ----------------------------- */
.packages{ display:grid; grid-template-columns:repeat(2,1fr); gap:30px; align-items:stretch; }
.pkg{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:0; overflow:hidden; display:flex; flex-direction:column;
  box-shadow:var(--shadow-sm); transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position:relative;
}
.pkg:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:#dcd6cc; }
.pkg--featured{ border-color:var(--red); box-shadow:0 30px 60px -28px rgba(205,25,50,.4); }
.pkg__flag{
  position:absolute; top:18px; right:18px; background:var(--red); color:#fff;
  font-family:var(--font-head); font-weight:600; font-size:.78rem; letter-spacing:.04em;
  padding:.4rem .9rem; border-radius:100px;
}
.pkg__media{ aspect-ratio:16/10; overflow:hidden; background:var(--cream); }
.pkg__media img{ width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
.pkg:hover .pkg__media img{ transform:scale(1.05); }
.pkg--has-media .pkg__head{ padding-top:18px; }
.pkg--has-media .pkg__icon{ margin-top:-54px; border:4px solid #fff; box-shadow:var(--shadow-sm); position:relative; z-index:1; }
.pkg__vat{ display:inline-flex; align-items:center; gap:.4rem; background:var(--green-soft); color:#176b3d; font-family:var(--font-head); font-weight:600; font-size:.84rem; padding:.4rem .85rem; border-radius:100px; margin-top:.7rem; }
.pkg__vat svg{ flex:none; }
.pkg__head{ padding:30px 30px 0; }

/* VAT highlight banner */
.vat-banner{ display:flex; gap:1.15rem; align-items:flex-start; max-width:860px; margin-left:auto; margin-right:auto; background:linear-gradient(118deg,#edf9f1,#f7fcf9); border:1px solid #c8e8d5; border-radius:18px; padding:20px 24px; box-shadow:0 14px 36px -26px rgba(31,157,87,.55); }
.vat-banner__ic{ width:52px; height:52px; flex:none; border-radius:15px; background:linear-gradient(135deg,#2cb972,#159a55); color:#fff; display:grid; place-items:center; box-shadow:0 10px 20px -8px rgba(21,154,85,.6); }
.vat-banner__ic svg{ width:25px; height:25px; }
.vat-banner h3{ margin-bottom:.3rem; color:#114b2c; font-size:1.2rem; }
.vat-banner p{ margin:0; color:#2a6b48; font-size:.95rem; line-height:1.55; max-width:80ch; }
.vat-banner a{ color:#117a43; font-weight:700; white-space:nowrap; }
.vat-banner a:hover{ text-decoration:underline; }
@media (max-width:560px){ .vat-banner{ flex-direction:column; align-items:center; text-align:center; } }
.pkg__icon{ width:58px; height:58px; border-radius:16px; background:var(--red-soft); color:var(--red); display:grid; place-items:center; margin-bottom:1rem; }
.pkg--featured .pkg__icon{ background:var(--navy); color:#fff; }
.pkg__name{ font-size:1.5rem; margin-bottom:.3rem; }
.pkg__tag{ color:var(--muted); font-size:1rem; margin-bottom:1.2rem; }
.pkg__price{ display:flex; align-items:baseline; gap:.4rem; flex-wrap:wrap; }
.pkg__price .amt{ font-family:var(--font-head); font-weight:700; font-size:2.6rem; color:var(--ink); line-height:1; }
.pkg__price .per{ color:var(--muted); font-weight:500; }
.pkg__sub{ font-size:.95rem; color:var(--muted); margin-top:.4rem; }
.pkg__divider{ height:1px; background:var(--line); margin:24px 30px; }
.pkg__feats{ padding:0 30px; display:grid; gap:.8rem; flex:1; }
.pkg__feats li{ display:flex; gap:.7rem; align-items:flex-start; font-size:1rem; color:var(--body); }
.pkg__feats .tick{ flex:none; width:24px; height:24px; border-radius:50%; background:var(--green-soft); color:var(--green); display:grid; place-items:center; margin-top:1px; }
.pkg__feats .opt{ color:var(--muted); }
.pkg__foot{ padding:26px 30px 30px; }
.pkg__note{ text-align:center; font-size:.85rem; color:var(--muted); margin-top:.8rem; }
.pkg-aside{ text-align:center; margin-top:2.4rem; color:var(--muted); }

/* ----------------------------- Steps ----------------------------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; counter-reset:step; }
.step{ position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:30px 24px; text-align:center; }
.section--cream .step{ box-shadow:var(--shadow-sm); }
.step__num{
  width:54px; height:54px; margin:0 auto 1rem; border-radius:50%;
  background:var(--navy); color:#fff; font-family:var(--font-head); font-weight:700; font-size:1.3rem;
  display:grid; place-items:center;
}
.step:nth-child(1) .step__num{ background:var(--red); }
.step h3{ margin-bottom:.5rem; }
.step p{ font-size:.98rem; margin:0; color:var(--body); }

/* ----------------------------- Feature grid ----------------------------- */
.features{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.feature{ position:relative; overflow:hidden; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:32px 28px; text-align:center; transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature::before{ content:""; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--red),var(--navy)); transform:scaleX(0); transform-origin:left; transition:transform .35s ease; }
.feature:hover{ transform:translateY(-6px); box-shadow:0 22px 44px -22px rgba(16,24,48,.30); border-color:#ecd2d7; }
.feature:hover::before{ transform:scaleX(1); }
.feature__ic{ width:60px; height:60px; border-radius:18px; background:var(--red-soft); color:var(--red); display:grid; place-items:center; margin:0 auto 1.1rem; box-shadow:0 8px 16px -10px rgba(0,0,0,.18); transition:transform .25s ease; }
.feature:hover .feature__ic{ transform:scale(1.09) translateY(-2px); }
.feature h3{ margin-bottom:.5rem; transition:color .2s ease; }
.feature:hover h3{ color:var(--red); }
.feature p{ margin:0 auto; font-size:1rem; max-width:30ch; }

/* ----------------------------- How it works (4 steps) ----------------------------- */
.howto{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:980px; margin-inline:auto; }
@media (max-width:860px){ .howto{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .howto{ grid-template-columns:1fr; } }
.howto__step{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px 22px; text-align:center; transition:transform .2s ease, box-shadow .2s ease; }
.howto__step:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.howto__n{ width:42px; height:42px; border-radius:12px; background:var(--red); color:#fff; font-family:var(--font-head); font-weight:700; font-size:1.15rem; display:grid; place-items:center; margin:0 auto 14px; box-shadow:0 8px 18px -8px rgba(205,25,50,.6); }
.howto__step h3{ font-size:1.06rem; margin-bottom:.35rem; }
.section--navy .howto__step h3{ color:var(--ink); }
.howto__step p{ margin:0; color:var(--body); font-size:.95rem; line-height:1.5; }

/* ----------------------------- Conversion bits (guarantee, delivery countdown, annual saving) ----------------------------- */
.delivery-countdown{ display:inline-flex; align-items:center; gap:.5rem; background:#eef9f1; border:1px solid #c8e8d5; color:#1a6b3f; border-radius:100px; padding:.45rem .9rem; font-size:.9rem; font-weight:600; }
.delivery-countdown svg{ color:#1f9d57; flex:none; }
.delivery-countdown b{ color:#13713f; }
.guarantee-badge{ display:inline-flex; align-items:center; gap:.55rem; background:var(--cream); border:1px solid var(--line); border-radius:12px; padding:.6rem .9rem; font-size:.9rem; font-weight:600; color:var(--ink); }
.guarantee-badge svg{ color:var(--green); flex:none; }
.pkg-trustrow{ display:flex; flex-wrap:wrap; gap:.7rem; justify-content:center; margin-top:1.4rem; }
@media (max-width:560px){
  .pkg-trustrow{ flex-direction:column; align-items:stretch; }
  .pkg-trustrow > *{ width:100%; justify-content:center; text-align:center; }
}
.save-callout{ display:inline-block; background:#eef9f1; border:1px solid #c8e8d5; border-radius:10px; padding:.5rem .8rem; font-size:.88rem; color:#1a6b3f; line-height:1.45; }
.save-callout svg{ vertical-align:-3px; margin-right:.4rem; color:#1f9d57; }
.save-callout b{ color:#13713f; }
/* Monthly / Annual billing switch */
.bill-switch{ display:flex; gap:6px; background:var(--cream); border:1px solid var(--line); border-radius:100px; padding:5px; margin-bottom:1.1rem; }
.bill-opt{ flex:1; border:0; background:transparent; border-radius:100px; padding:.6rem .5rem; font-family:var(--font-head); font-weight:600; font-size:.95rem; color:var(--muted); cursor:pointer; display:flex; align-items:center; justify-content:center; gap:.4rem; transition:background .2s ease, color .2s ease; }
.bill-opt.active{ background:#fff; color:var(--ink); box-shadow:var(--shadow-sm); }
.bill-save{ font-size:.68rem; font-weight:700; background:var(--green-soft); color:#1a6b3f; padding:.1rem .45rem; border-radius:100px; white-space:nowrap; }
.bill-opt.active .bill-save{ background:var(--green); color:#fff; }
.pro-band{ background:linear-gradient(120deg,#163f63,#205f99); color:#fff; }
.pro-band .container{ display:grid; grid-template-columns:1.3fr 1fr; gap:clamp(28px,4vw,56px); align-items:center; }
@media (max-width:820px){ .pro-band .container{ grid-template-columns:1fr; } }
.pro-band h2{ color:#fff; }
.pro-band p{ color:#d7e2f0; }
.pro-band__list{ display:grid; gap:.7rem; margin:1.2rem 0 0; }
.pro-band__list li{ display:flex; gap:.7rem; align-items:flex-start; color:#eaf1f8; }
.pro-band__list svg{ color:#7fd1a3; flex:none; margin-top:3px; }
.trustbar__reviews{ display:inline-flex; align-items:center; }
.trustbar__reviews img{ height:56px; width:auto; }
.trustbar__reviews a{ display:inline-flex; }

/* ----------------------------- Testimonials ----------------------------- */
.quotes{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.quote{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:30px; display:flex; flex-direction:column; gap:1rem; }
.section--cream .quote{ box-shadow:var(--shadow-sm); }
.quote__stars{ display:flex; gap:.2rem; color:var(--gold); }
.quote p{ margin:0; font-size:1.06rem; color:var(--ink); font-weight:500; }
.quote__by{ display:flex; align-items:center; gap:.75rem; margin-top:auto; }
.quote__avatar{ width:44px; height:44px; border-radius:50%; background:var(--navy); color:#fff; display:grid; place-items:center; font-family:var(--font-head); font-weight:600; }
.quote__by b{ color:var(--ink); display:block; font-family:var(--font-head); }
.quote__by span{ font-size:.88rem; color:var(--muted); }

/* ----------------------------- Referral CTA ----------------------------- */
.referral{
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-deep) 100%);
  border-radius:var(--radius-lg); padding:clamp(34px,5vw,60px); color:#dfe5f3;
  display:grid; grid-template-columns:1.3fr .7fr; gap:2rem; align-items:center; position:relative; overflow:hidden;
}
.referral::after{ content:""; position:absolute; right:-40px; top:-40px; width:240px; height:240px; border-radius:50%; background:rgba(205,25,50,.25); filter:blur(10px); }
.referral h2{ color:#fff; }
.referral .gift{ font-size:3rem; }
.referral__amt{ font-family:var(--font-head); font-weight:700; color:var(--gold); }
.referral__media{ text-align:center; position:relative; z-index:1; }
.referral__voucher{
  background:#fff; color:var(--navy); border-radius:var(--radius); padding:1.6rem; box-shadow:var(--shadow-lg);
  display:inline-block; min-width:200px;
}
.referral__voucher .amt{ font-family:var(--font-head); font-weight:700; font-size:2.6rem; color:var(--red); line-height:1; }
.referral__voucher small{ display:block; color:var(--muted); }

/* ----------------------------- FAQ ----------------------------- */
.faq{ max-width:820px; margin-inline:auto; display:grid; gap:14px; }
.faq__item{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-sm); overflow:hidden; }
.faq__q{
  width:100%; background:none; border:0; text-align:left; padding:22px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  font-family:var(--font-head); font-weight:600; font-size:1.12rem; color:var(--ink);
}
.faq__q:hover{ color:var(--red); }
.faq__icon{ flex:none; width:32px; height:32px; border-radius:50%; background:var(--red-soft); color:var(--red); display:grid; place-items:center; transition:transform .25s ease, background .2s ease, color .2s ease; }
.faq__item{ transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.faq__item:hover{ border-color:#f3c9cf; box-shadow:var(--shadow-sm); }
.faq__item.open{ border-color:var(--red); box-shadow:0 14px 32px -18px rgba(205,25,50,.45); }
.faq__item.open .faq__icon{ transform:rotate(45deg); background:var(--red); color:#fff; }
.faq__a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq__a-inner{ padding:0 24px 22px; color:var(--body); }

/* ----------------------------- CTA band ----------------------------- */
.cta-band{
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(205,25,50,.18), transparent 60%),
    var(--navy);
  color:#fff; text-align:center; border-radius:var(--radius-lg);
  padding:clamp(40px,6vw,72px);
}
.cta-band h2{ color:#fff; margin-bottom:1rem; }
.cta-band p{ color:#c7cfe6; max-width:54ch; margin:0 auto 1.8rem; font-size:1.12rem; }
.cta-band__row{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; align-items:center; }
.cta-band__phone{ color:#fff; font-family:var(--font-head); font-weight:700; font-size:1.25rem; display:inline-flex; align-items:center; gap:.5rem; }
.cta-band__phone span{ color:#ffd2d4; }
.cta-band__alt{ background:transparent; color:#fff; border:2px solid rgba(255,255,255,.55); }
.cta-band__alt:hover{ background:rgba(255,255,255,.12); border-color:#fff; color:#fff; }

/* ----------------------------- Footer ----------------------------- */
.footer{ background:#fff; color:var(--body); padding:clamp(48px,6vw,72px) 0 0; font-size:.96rem; border-top:1px solid var(--line); }
.footer__top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:2.4rem; padding-bottom:48px; }
.footer__logo{ height:42px; width:auto; margin-bottom:1.2rem; }
.footer h4{ color:var(--ink); font-size:1rem; letter-spacing:.04em; text-transform:uppercase; margin-bottom:1.1rem; }
.footer a{ color:var(--body); display:inline-block; padding:.25rem 0; }
.footer a:hover{ color:var(--red); }
.footer__contact li{ display:flex; gap:.6rem; align-items:flex-start; margin-bottom:.7rem; }
.footer__contact svg{ color:var(--red); flex:none; margin-top:3px; }
.footer__accred{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top:1rem; }
.footer__badge{ background:var(--cream); border:1px solid var(--line); border-radius:10px; padding:.5rem .8rem; font-size:.78rem; color:var(--ink); font-weight:600; }
.footer__bottom{ border-top:1px solid var(--line); padding:22px 0; display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size:.86rem; color:var(--muted); }
.footer__bottom a{ color:var(--muted); }
.footer__bottom a:hover{ color:var(--red); }
.footer__legal-note{ font-size:.8rem; color:var(--muted); margin-top:.85rem; max-width:36ch; line-height:1.5; }
.beta-bar{ background:#92400e; color:#fff; text-align:center; font-size:.84rem; font-weight:600; padding:.5rem 1rem; display:flex; align-items:center; justify-content:center; gap:.5rem; letter-spacing:.01em; }
.beta-bar svg{ flex:none; }

/* ----------------------------- Mobile sticky call ----------------------------- */
.mobile-call{
  position:fixed; left:0; right:0; bottom:0; z-index:70; display:none;
  background:#fff; border-top:1px solid var(--line); box-shadow:0 -8px 24px -12px rgba(24,33,60,.25);
  padding:.6rem .9rem; gap:.7rem;
}
.mobile-call .btn{ flex:1; padding:.85rem; font-size:1rem; }

/* ----------------------------- Reveal animation ----------------------------- */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ----------------------------- Responsive ----------------------------- */
/* Compact the order sub-label on narrower desktops to buy the inline menu more room */
@media (max-width:1320px){
  .btn--order__lbl small{ display:none; }
}
/* Collapse the desktop menu to the hamburger once the full inline header would overflow */
@media (max-width:1280px){
  .nav__menu{ display:none; }
  .nav__toggle{ display:flex; }
  .nav__phone{ border-right:0; padding-right:0; }
  .nav__phone__txt small{ display:none; }
}
@media (max-width:980px){
  .hero__grid{ grid-template-columns:1fr; }
  .hero__media{ order:-1; }
  .hero__media img{ aspect-ratio:16/10; }
  .split{ grid-template-columns:1fr; }
  .split__media{ order:-1; }
  .packages{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .features{ grid-template-columns:1fr 1fr; }
  .quotes{ grid-template-columns:1fr; }
  .referral{ grid-template-columns:1fr; text-align:center; }
  .referral__media{ order:-1; }
  .footer__top{ grid-template-columns:1fr 1fr; }
  .stats{ grid-template-columns:1fr 1fr; gap:2rem 1rem; }
}
@media (max-width:620px){
  body{ font-size:17px; }
  .topbar{ display:none; }
  .nav__phone{ display:none; }
  .nav__actions .btn{ display:none; }
  .features{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .footer__top{ grid-template-columns:1fr; }
  .mobile-call{ display:flex; }
  .hero__stat{ right:12px; bottom:12px; padding:.5rem .75rem; gap:.5rem; max-width:60%; border-radius:12px; }
  .hero__stat svg{ width:22px; height:22px; }
  .hero__stat b{ font-size:1rem; }
  .hero__stat span{ font-size:.72rem; }
  .hero__cta .btn{ width:100%; }
  .hero__cta .btn-call{ width:100%; justify-content:center; }
  body{ padding-bottom:70px; }
}

/* Mobile nav drawer */
.drawer{
  position:fixed; inset:0; z-index:80; background:rgba(22,36,77,.45); backdrop-filter:blur(2px);
  opacity:0; pointer-events:none; transition:opacity .25s ease; overflow:hidden;
}
.drawer.open{ opacity:1; pointer-events:auto; }
.drawer__panel{
  position:absolute; top:0; right:0; height:100%; width:min(320px,84vw); background:#fff;
  padding:24px; transform:translateX(100%); transition:transform .3s ease; display:flex; flex-direction:column; gap:.4rem;
}
.drawer.open .drawer__panel{ transform:none; }
.drawer__close{ align-self:flex-end; background:var(--cream); border:0; width:44px; height:44px; border-radius:12px; color:var(--navy); display:grid; place-items:center; margin-bottom:1rem; }
.drawer__panel a{ font-family:var(--font-head); font-weight:600; font-size:1.2rem; color:var(--ink); padding:.7rem 0; border-bottom:1px solid var(--line); }
.drawer__panel a:hover{ color:var(--red); }
.drawer__panel .btn{ margin-top:1.2rem; }
.drawer__panel .btn-call{ justify-content:center; margin-top:.6rem; font-size:1.2rem; }

@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; }
}

/* =========================================================
   MULTI-PAGE COMPONENTS
   ========================================================= */

/* ---- Cart icon in header ---- */
.cart-link{
  position:relative; width:46px; height:46px; border-radius:50%; flex:none;
  display:grid; place-items:center; color:var(--navy); background:var(--cream);
  transition:background .2s ease, color .2s ease;
}
.cart-link:hover{ background:var(--red-soft); color:var(--red); }
.cart-badge{
  position:absolute; top:-4px; right:-4px; min-width:21px; height:21px; padding:0 5px;
  border-radius:11px; background:var(--red); color:#fff; font-family:var(--font-head);
  font-weight:700; font-size:.72rem; display:grid; place-items:center; border:2px solid #fff;
  transform:scale(0); transition:transform .2s ease;
}
.cart-badge.show{ transform:scale(1); }
.nav__menu a.active{ color:var(--red); }
.nav__menu a.active::after{ width:100%; }

/* ---- Page hero (inner pages) ---- */
.page-hero{
  background:linear-gradient(180deg,#ffffff, var(--cream));
  border-bottom:1px solid var(--line);
}
.page-hero__inner{ padding:clamp(34px,5vw,64px) 0 clamp(38px,5vw,56px); max-width:780px; }
/* inner-page hero with an image */
.page-hero--media .container{ display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(30px,4vw,56px); align-items:center; }
.page-hero--media .page-hero__inner{ max-width:none; }
.page-hero__media{ position:relative; }
.page-hero__media img{
  position:relative; z-index:1; width:100%; aspect-ratio:4/3; object-fit:cover;
  border-radius:26px 26px 26px 72px; border:5px solid #fff; box-shadow:var(--shadow);
}
.page-hero__media::before{
  content:""; position:absolute; z-index:0; inset:-8% -7% -10% -8%;
  background:
    radial-gradient(58% 58% at 82% 86%, rgba(32,95,153,.16), transparent 62%),
    radial-gradient(54% 54% at 16% 14%, rgba(205,25,50,.13), transparent 60%);
  border-radius:48% 52% 44% 56% / 56% 46% 54% 44%;
}
@media (max-width:860px){
  .page-hero--media .container{ grid-template-columns:1fr; }
  .page-hero__media{ max-width:440px; }
}
@media (max-width:620px){ .page-hero__media{ display:none; } }
.page-hero h1{ margin:.4rem 0 1rem; font-size:clamp(2.1rem,4.2vw,3.1rem); }
.page-hero p{ font-size:clamp(1.05rem,1.6vw,1.22rem); color:var(--body); max-width:62ch; margin:0; }
.crumbs{ display:flex; align-items:center; gap:.5rem; font-size:.92rem; color:var(--muted); flex-wrap:wrap; }
.crumbs a{ color:var(--muted); }
.crumbs a:hover{ color:var(--red); }
.crumbs span{ opacity:.5; }
.crumbs b{ color:var(--navy); font-weight:600; }

/* ---- Generic prose ---- */
.prose{ max-width:760px; }
.prose h2{ margin:2.4rem 0 1rem; }
.prose h3{ margin:1.8rem 0 .6rem; }
.prose p{ color:var(--body); }
.prose ul{ display:grid; gap:.6rem; margin:0 0 1.2rem; padding-left:0; }
.prose ul li{ display:flex; gap:.7rem; align-items:flex-start; }
.prose ul li::before{ content:""; flex:none; width:9px; height:9px; border-radius:50%; background:var(--red); margin-top:.55rem; }

/* ---- Product page ---- */
.product{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:clamp(30px,4vw,60px); align-items:start; }
.product__media,.product__info{ min-width:0; }
.product__media{ position:sticky; top:96px; }
.product__photo{
  background:var(--cream); border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden; aspect-ratio:1/1; display:grid; place-items:center;
}
.product__photo img{ width:100%; height:100%; object-fit:cover; }
.product__thumbs{ display:flex; gap:12px; margin-top:14px; }
.product__thumb{
  flex:1 1 0; min-width:0; aspect-ratio:1; max-width:96px; border-radius:14px; overflow:hidden; border:2px solid var(--line);
  background:var(--cream); cursor:pointer; padding:0; transition:border-color .2s ease;
}
.product__thumb img{ width:100%; height:100%; object-fit:cover; }
.product__thumb.active{ border-color:var(--red); }

.product__info h1{ font-size:clamp(1.9rem,3.4vw,2.6rem); margin:.5rem 0 .6rem; }
.product__rating{ display:flex; align-items:center; gap:.5rem; color:var(--gold); margin-bottom:.6rem; }
.product__rating span{ color:var(--muted); font-size:.92rem; }
.product__lede{ font-size:1.1rem; color:var(--body); margin-bottom:1.4rem; }

.buybox{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-sm); padding:24px; }
.buybox__price{ display:flex; align-items:baseline; gap:.5rem; flex-wrap:wrap; }
.buybox__price .amt{ font-family:var(--font-head); font-weight:700; font-size:2.4rem; color:var(--ink); line-height:1; }
.buybox__price .per{ color:var(--muted); font-weight:500; }
.buybox__oneoff{ color:var(--body); margin:.5rem 0 0; font-size:1rem; }
.buybox__vat{ color:var(--muted); font-size:.86rem; margin:.2rem 0 0; }
.vat-tip{ position:relative; display:inline-block; color:var(--red); font-weight:600; cursor:help; border-bottom:1px dashed currentColor; }
.vat-tip__box{ position:absolute; left:0; top:calc(100% + 11px); z-index:40; width:300px; max-width:80vw; background:#fff; color:var(--body); font-weight:400; font-size:.88rem; line-height:1.55; text-align:left; border:1px solid var(--line); border-radius:12px; box-shadow:var(--shadow); padding:14px 16px; opacity:0; visibility:hidden; transform:translateY(6px); transition:opacity .18s ease, transform .18s ease, visibility .18s; }
.vat-tip__box strong{ color:var(--ink); }
.vat-tip__box::before{ content:""; position:absolute; left:18px; top:-7px; width:12px; height:12px; background:#fff; border-left:1px solid var(--line); border-top:1px solid var(--line); transform:rotate(45deg); }
.vat-tip:hover .vat-tip__box, .vat-tip:focus .vat-tip__box, .vat-tip:focus-within .vat-tip__box{ opacity:1; visibility:visible; transform:translateY(0); }
@media (max-width:560px){ .vat-tip__box{ left:auto; right:0; } .vat-tip__box::before{ left:auto; right:18px; } }
.buybox__divider{ height:1px; background:var(--line); margin:20px 0; }
.addon{ display:flex; gap:.85rem; align-items:flex-start; padding:12px 0; border-bottom:1px solid var(--line); cursor:pointer; }
.addon:last-of-type{ border-bottom:0; }
.addon input{ margin-top:4px; width:20px; height:20px; accent-color:var(--red); flex:none; cursor:pointer; }
.addon__txt b{ display:block; color:var(--ink); font-family:var(--font-head); font-weight:600; }
.addon__txt span{ font-size:.92rem; color:var(--muted); }
.addon__price{ margin-left:auto; font-family:var(--font-head); font-weight:600; color:var(--navy); white-space:nowrap; }
.buybox__qty{ display:flex; align-items:center; gap:1rem; margin:6px 0 18px; }
.qty{ display:inline-flex; align-items:center; border:1px solid var(--line); border-radius:100px; overflow:hidden; }
.qty button{ width:42px; height:42px; border:0; background:#fff; font-size:1.4rem; color:var(--navy); line-height:1; }
.qty button:hover{ background:var(--cream); color:var(--red); }
.qty input{ width:46px; text-align:center; border:0; font-family:var(--font-head); font-weight:600; font-size:1.1rem; color:var(--ink); -moz-appearance:textfield; }
.qty input::-webkit-outer-spin-button,.qty input::-webkit-inner-spin-button{ -webkit-appearance:none; }
.buybox__total{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:16px; font-size:1.05rem; }
.buybox__total b{ font-family:var(--font-head); font-size:1.3rem; color:var(--ink); }
.product__assure{ display:grid; gap:.7rem; margin-top:20px; }
.product__assure li{ display:flex; gap:.6rem; align-items:center; color:var(--body); font-size:.98rem; }
.product__assure svg{ color:var(--green); flex:none; }

.spec-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
@media (max-width:860px){ .spec-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .spec-grid{ grid-template-columns:1fr; } }
.spec{ position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:24px; overflow:hidden; transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.spec::after{ content:""; position:absolute; left:0; top:0; height:100%; width:4px; background:var(--red); transform:scaleY(0); transform-origin:top; transition:transform .22s ease; }
.spec:hover{ transform:translateY(-5px); box-shadow:var(--shadow); border-color:#f0d3d8; }
.spec:hover::after{ transform:scaleY(1); }
.spec__ic{ width:48px; height:48px; border-radius:13px; background:var(--red-soft); color:var(--red); display:grid; place-items:center; margin-bottom:14px; transition:background .22s ease, color .22s ease, transform .22s ease; }
.spec:hover .spec__ic{ background:var(--red); color:#fff; transform:scale(1.06) rotate(-4deg); }
.spec__ic svg{ width:24px; height:24px; }
.spec b{ display:block; color:var(--ink); font-family:var(--font-head); font-size:1.08rem; margin-bottom:.3rem; }
.spec span{ color:var(--body); font-size:.96rem; line-height:1.5; }
.whatsin{ display:flex; flex-wrap:wrap; gap:14px; }
.whatsin li{ display:flex; align-items:center; gap:.6rem; background:#fff; border:1px solid var(--line); border-radius:100px; padding:.6rem 1.1rem; font-weight:500; }
.whatsin svg{ color:var(--red); }

/* ---- Toast (added to basket) ---- */
.toast{
  position:fixed; right:22px; bottom:22px; z-index:120; max-width:340px;
  background:#fff; border:1px solid var(--line); border-left:5px solid var(--green);
  border-radius:14px; box-shadow:var(--shadow-lg); padding:16px 18px;
  display:flex; gap:.8rem; align-items:flex-start;
  transform:translateY(140%); opacity:0; transition:transform .35s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
}
.toast.show{ transform:none; opacity:1; }
.toast__ic{ width:34px; height:34px; border-radius:50%; background:var(--green-soft); color:var(--green); display:grid; place-items:center; flex:none; }
.toast b{ color:var(--ink); font-family:var(--font-head); }
.toast a{ color:var(--red); font-weight:600; }
.toast p{ margin:.15rem 0 0; font-size:.92rem; color:var(--body); }

/* ---- Card grids (help / news / stories) ---- */
.card-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.card-grid--2{ grid-template-columns:repeat(2,1fr); }
.card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;
  display:flex; flex-direction:column; transition:transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
.card__img{ aspect-ratio:16/10; overflow:hidden; background:var(--cream); }
.card__img img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.card:hover .card__img img{ transform:scale(1.05); }
.card__body{ padding:24px; display:flex; flex-direction:column; gap:.6rem; flex:1; }
.tag{ align-self:flex-start; font-family:var(--font-head); font-weight:600; font-size:.74rem; letter-spacing:.06em; text-transform:uppercase; color:var(--red); background:var(--red-soft); padding:.35rem .8rem; border-radius:100px; }
.card__date{ color:var(--muted); font-size:.86rem; }
.card h3{ font-size:1.2rem; line-height:1.3; }
.card p{ margin:0; font-size:.98rem; color:var(--body); }
.card__more{ margin-top:auto; color:var(--red); font-weight:600; font-family:var(--font-head); display:inline-flex; align-items:center; gap:.4rem; }
.card:hover .card__more{ gap:.7rem; }

/* ---- Contact ---- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,4vw,56px); align-items:start; }
.contact-cards{ display:grid; gap:16px; }
.contact-card{ display:flex; gap:1rem; align-items:flex-start; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:22px; }
.contact-card__ic{ width:50px; height:50px; flex:none; border-radius:14px; background:var(--red-soft); color:var(--red); display:grid; place-items:center; }
.contact-card b{ display:block; color:var(--ink); font-family:var(--font-head); font-size:1.1rem; }
.contact-card a{ color:var(--red); font-weight:600; }
.contact-card span{ color:var(--body); }

/* ---- Forms ---- */
.form{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:clamp(24px,3vw,36px); box-shadow:var(--shadow-sm); }
.form-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:clamp(24px,3vw,36px); box-shadow:var(--shadow-sm); }
.field{ margin-bottom:18px; }
.field--row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field label{ display:block; font-family:var(--font-head); font-weight:600; color:var(--ink); margin-bottom:.4rem; font-size:.96rem; }
.field label .req{ color:var(--red); }
.input,select.input,textarea.input{
  width:100%; padding:.85rem 1rem; border:1.5px solid var(--line); border-radius:12px;
  font-family:var(--font-body); font-size:1rem; color:var(--ink); background:#fff; transition:border-color .15s ease, box-shadow .15s ease;
}
.input:focus{ outline:0; border-color:var(--red); box-shadow:0 0 0 3px var(--red-soft); }
textarea.input{ min-height:130px; resize:vertical; }
.input.invalid{ border-color:var(--red); }
.field__err{ color:var(--red); font-size:.85rem; margin-top:.35rem; display:none; }
.field.invalid .field__err{ display:block; }
.check{ display:flex; gap:.7rem; align-items:flex-start; }
.check input{ width:20px; height:20px; margin-top:2px; accent-color:var(--red); flex:none; }
/* VAT relief switch (checkout summary) */
.vat-toggle{ display:flex; align-items:center; gap:1rem; justify-content:space-between; background:var(--cream); border:1px solid var(--line); border-radius:12px; padding:.75rem .9rem; margin:1.1rem 0 .3rem; cursor:pointer; }
.vat-toggle__txt{ display:flex; flex-direction:column; }
.vat-toggle__txt b{ font-size:.92rem; color:var(--ink); }
.vat-toggle__txt span{ font-size:.78rem; color:var(--muted); }
.vat-toggle input{ position:absolute; opacity:0; width:0; height:0; pointer-events:none; }
.vat-toggle__track{ flex:none; width:46px; height:26px; border-radius:100px; background:#cdd3dd; position:relative; transition:background .2s ease; }
.vat-toggle__knob{ position:absolute; top:3px; left:3px; width:20px; height:20px; border-radius:50%; background:#fff; box-shadow:0 1px 3px rgba(0,0,0,.3); transition:transform .2s ease; }
.vat-toggle input:checked ~ .vat-toggle__track{ background:var(--green); }
.vat-toggle input:checked ~ .vat-toggle__track .vat-toggle__knob{ transform:translateX(20px); }
.check label{ margin:0; font-weight:500; color:var(--body); font-family:var(--font-body); }

/* ---- Basket ---- */
.cart-layout{ display:grid; grid-template-columns:1.6fr .9fr; gap:clamp(24px,3vw,40px); align-items:start; }
.line{ display:grid; grid-template-columns:108px 1fr auto; gap:18px; padding:22px 0; border-bottom:1px solid var(--line); align-items:start; }
.line:first-child{ padding-top:0; }
.line__img{ width:108px; height:108px; border-radius:14px; overflow:hidden; background:var(--cream); border:1px solid var(--line); }
.line__img img{ width:100%; height:100%; object-fit:cover; }
.line__name{ font-family:var(--font-head); font-weight:600; font-size:1.2rem; color:var(--ink); }
.line__addons{ margin:.5rem 0 0; display:grid; gap:.3rem; }
.line__addons li{ font-size:.92rem; color:var(--muted); display:flex; align-items:center; gap:.4rem; }
.line__addons svg{ color:var(--green); }
.line__remove{ background:none; border:0; color:var(--muted); font-size:.9rem; display:inline-flex; align-items:center; gap:.35rem; margin-top:.8rem; padding:0; }
.line__remove:hover{ color:var(--red); }
.line__pricing{ text-align:right; }
.line__pricing .m{ font-family:var(--font-head); font-weight:700; font-size:1.2rem; color:var(--ink); }
.line__pricing .o{ font-size:.9rem; color:var(--muted); }
.line .qty{ transform:scale(.9); transform-origin:right top; margin-top:.6rem; }

.summary{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow); padding:26px; position:sticky; top:96px; }
.summary h3{ margin-bottom:1rem; }
.summary__row{ display:flex; justify-content:space-between; gap:1rem; padding:.5rem 0; color:var(--body); }
.summary__row.muted{ color:var(--muted); font-size:.94rem; }
.summary__divider{ height:1px; background:var(--line); margin:.6rem 0; }
.summary__today{ display:flex; justify-content:space-between; align-items:baseline; margin-top:.4rem; }
.summary__today b{ font-family:var(--font-head); font-size:1.1rem; color:var(--ink); }
.summary__today .big{ font-size:1.7rem; color:var(--red); }
.summary__then{ background:var(--cream); border-radius:12px; padding:.8rem 1rem; margin:1rem 0; display:flex; justify-content:space-between; align-items:baseline; font-weight:600; color:var(--navy); }
.summary__note{ font-size:.82rem; color:var(--muted); margin:.8rem 0 0; }
.summary .btn{ margin-top:1rem; }
.trust-row{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:1.1rem; color:var(--muted); font-size:.82rem; }
.trust-row span{ display:inline-flex; align-items:center; gap:.35rem; }
.trust-row svg{ color:var(--green); }

.empty-cart{ text-align:center; max-width:480px; margin:0 auto; padding:40px 0; }
.empty-cart__ic{ width:90px; height:90px; border-radius:50%; background:var(--cream); color:var(--navy); display:grid; place-items:center; margin:0 auto 1.4rem; }

/* ---- Checkout ---- */
.steps-bar{ display:flex; align-items:center; justify-content:center; gap:.5rem; flex-wrap:wrap; margin-bottom:2rem; }
.steps-bar .s{ display:inline-flex; align-items:center; gap:.5rem; color:var(--muted); font-family:var(--font-head); font-weight:600; }
.steps-bar .s .n{ width:28px; height:28px; border-radius:50%; background:var(--cream); display:grid; place-items:center; font-size:.9rem; }
.steps-bar .s.active{ color:var(--red); }
.steps-bar .s.active .n{ background:var(--red); color:#fff; }
.steps-bar .s.done .n{ background:var(--green); color:#fff; }
.steps-bar .bar{ width:34px; height:2px; background:var(--line); }
.pay-note{ display:flex; gap:.6rem; align-items:flex-start; background:var(--green-soft); border-radius:12px; padding:.9rem 1.1rem; color:#176b3d; font-size:.92rem; margin-bottom:1.2rem; }
.pay-note svg{ flex:none; color:var(--green); margin-top:2px; }
.card-fields{ display:grid; grid-template-columns:1fr; gap:0; }

/* ---- Order confirmation ---- */
.confirm{ max-width:680px; margin:0 auto; text-align:center; }
.confirm__check{ width:96px; height:96px; border-radius:50%; background:var(--green-soft); color:var(--green); display:grid; place-items:center; margin:0 auto 1.5rem; animation:pop .5s cubic-bezier(.2,.9,.3,1.3); }
@keyframes pop{ 0%{ transform:scale(0);} 100%{ transform:scale(1);} }
.confirm__order{ display:inline-block; background:var(--cream); border:1px dashed var(--navy); border-radius:12px; padding:.7rem 1.4rem; font-family:var(--font-head); font-weight:700; color:var(--navy); margin:1rem 0 1.6rem; letter-spacing:.04em; }
.confirm__box{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-sm); padding:26px; text-align:left; margin:1.6rem 0; }

/* ---- Partner logos ---- */
.partners{ display:flex; flex-wrap:wrap; gap:34px; align-items:center; justify-content:center; }
.partners img{ height:54px; width:auto; opacity:.85; filter:grayscale(.2); transition:opacity .2s ease, filter .2s ease; }
.partners img:hover{ opacity:1; filter:none; }

/* ---- Misc ---- */
.notice{ background:var(--red-soft); border-radius:14px; padding:1rem 1.2rem; color:var(--ink); display:flex; gap:.7rem; align-items:flex-start; }
.notice svg{ color:var(--red); flex:none; margin-top:2px; }
.back-link{ display:inline-flex; align-items:center; gap:.4rem; color:var(--navy); font-weight:600; font-family:var(--font-head); margin-bottom:1.2rem; }
.back-link:hover{ color:var(--red); }

@media (max-width:980px){
  .product{ grid-template-columns:minmax(0,1fr); }
  .product__media{ position:static; }
  .card-grid{ grid-template-columns:1fr 1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .cart-layout{ grid-template-columns:1fr; }
  .summary{ position:static; }
}
@media (max-width:620px){
  .card-grid,.card-grid--2{ grid-template-columns:1fr; }
  .field--row{ grid-template-columns:1fr; }
  .line{ grid-template-columns:80px 1fr; }
  .line__pricing{ grid-column:2; text-align:left; margin-top:.6rem; }
  .line__img{ width:80px; height:80px; }
  .product__photo{ aspect-ratio:4/3; }
}

/* =========================================================
   PACKAGE SELECTOR QUIZ
   ========================================================= */
.quiz{ max-width:740px; margin:0 auto; }
.quiz__progress{ height:9px; background:var(--cream-2); border-radius:99px; overflow:hidden; margin-bottom:.7rem; }
.quiz__progress span{ display:block; height:100%; width:0; background:linear-gradient(90deg,var(--red),var(--red-dark)); border-radius:99px; transition:width .45s cubic-bezier(.3,.8,.3,1); }
.quiz__count{ text-align:center; color:var(--muted); font-size:.9rem; margin-bottom:2rem; font-family:var(--font-head); font-weight:600; letter-spacing:.04em; }
.quiz__q{ text-align:center; margin-bottom:.3rem; }
.quiz__sub{ text-align:center; color:var(--body); margin-bottom:1.6rem; }
.quiz__options{ display:grid; gap:14px; }
.quiz__opt{
  display:flex; gap:1rem; align-items:center; text-align:left; width:100%;
  background:#fff; border:2px solid var(--line); border-radius:var(--radius); padding:18px 20px;
  cursor:pointer; transition:border-color .15s ease, background .15s ease, transform .12s ease;
  font-family:var(--font-body); font-size:1.05rem;
}
.quiz__opt:hover{ border-color:var(--red); background:var(--red-soft); transform:translateY(-2px); }
.quiz__opt.selected{ border-color:var(--red); background:var(--red-soft); }
.quiz__opt .ic{ width:50px; height:50px; border-radius:14px; background:var(--cream); color:var(--navy); display:grid; place-items:center; flex:none; }
.quiz__opt:hover .ic,.quiz__opt.selected .ic{ background:#fff; color:var(--red); }
.quiz__opt b{ font-family:var(--font-head); font-weight:600; color:var(--ink); display:block; }
.quiz__opt small{ color:var(--muted); font-size:.92rem; }
.quiz__nav{ display:flex; justify-content:space-between; align-items:center; margin-top:1.6rem; }
.quiz__back{ background:none; border:0; color:var(--muted); font-weight:600; font-family:var(--font-head); display:inline-flex; align-items:center; gap:.4rem; }
.quiz__back:hover{ color:var(--red); }
.quiz__back[hidden]{ visibility:hidden; }

/* result */
.quiz__result{ text-align:center; }
.quiz__result .eyebrow{ margin-bottom:1rem; }
.quiz__rec{
  display:grid; grid-template-columns:auto 1fr; gap:24px; align-items:center; text-align:left;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow);
  padding:28px; margin:1.4rem 0;
}
.quiz__rec img{ width:150px; height:150px; object-fit:cover; border-radius:var(--radius); background:var(--cream); }
.quiz__rec h3{ font-size:1.6rem; margin-bottom:.3rem; }
.quiz__rec .price{ font-family:var(--font-head); font-weight:700; color:var(--red); font-size:1.2rem; margin:.5rem 0; }
.quiz__why{ display:grid; gap:.6rem; margin:.6rem 0 0; }
.quiz__why li{ display:flex; gap:.55rem; align-items:flex-start; color:var(--body); }
.quiz__why svg{ color:var(--green); flex:none; margin-top:3px; }
.quiz__rec-actions{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* quiz hero "this or that" visual */
.quiz-hero-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(28px,4vw,56px); align-items:center; padding-block:clamp(30px,5vw,56px); }
.quiz-hero{ display:flex; align-items:center; gap:14px; }
.quiz-hero__card{ flex:1; background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; text-align:center; }
.quiz-hero__card img{ width:100%; aspect-ratio:1/1; object-fit:cover; background:var(--cream); display:block; }
.quiz-hero__card figcaption{ padding:.7rem .5rem; font-family:var(--font-head); font-weight:600; color:var(--navy); font-size:.92rem; }
.quiz-hero__vs{ flex:none; width:46px; height:46px; border-radius:50%; background:var(--red); color:#fff; display:grid; place-items:center; font-family:var(--font-head); font-weight:700; box-shadow:0 8px 18px -8px rgba(205,25,50,.7); }
.quiz__opt .ic img{ width:100%; height:100%; object-fit:cover; border-radius:11px; }
.quiz__opt .ic.ic--img{ background:var(--cream); padding:0; overflow:hidden; }
@media (max-width:860px){
  .quiz-hero-grid{ grid-template-columns:1fr; }
  .quiz-hero__media{ order:-1; max-width:420px; }
}

/* =========================================================
   ARTICLE PAGES
   ========================================================= */
.article-meta{ display:flex; gap:.7rem; align-items:center; flex-wrap:wrap; color:var(--muted); font-size:.92rem; margin-bottom:.5rem; }
.article-meta .tag{ margin:0; }
.article__img{ width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:var(--radius-lg); box-shadow:var(--shadow-sm); margin:0 0 1.8rem; }
.article-body{ font-size:1.08rem; }
.article-body h2{ margin:2rem 0 .8rem; }
.article-body h3{ margin:1.6rem 0 .5rem; }
.article-body p{ color:var(--body); margin-bottom:1.1rem; }
.article-body ul{ display:grid; gap:.6rem; margin:0 0 1.3rem; }
.article-body ul li{ display:flex; gap:.7rem; align-items:flex-start; color:var(--body); }
.article-body ul li::before{ content:""; flex:none; width:9px; height:9px; border-radius:50%; background:var(--red); margin-top:.6rem; }
.article-body blockquote{ border-left:4px solid var(--red); background:var(--cream); padding:1rem 1.3rem; border-radius:0 12px 12px 0; margin:1.4rem 0; font-size:1.1rem; color:var(--ink); }

.side-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-sm); padding:24px; position:sticky; top:96px; }
.side-products{ display:grid; gap:.5rem; margin-top:.9rem; }
.side-products__label{ font-family:var(--font-head); font-weight:600; font-size:.78rem; color:var(--muted); text-transform:uppercase; letter-spacing:.04em; }
.side-product{ display:flex; align-items:center; gap:.7rem; padding:.5rem; border:1px solid var(--line); border-radius:12px; transition:border-color .2s ease, background .2s ease; }
.side-product:hover{ border-color:var(--red); background:var(--red-soft); }
.side-product img{ width:48px; height:48px; border-radius:10px; object-fit:cover; flex:none; }
.side-product b{ display:block; font-size:.92rem; color:var(--ink); }
.side-product small{ color:var(--muted); font-size:.8rem; }
.article-cta{ background:linear-gradient(135deg,var(--red-soft),#fff); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(20px,3vw,30px); margin:2rem 0 .5rem; }
.article-cta h3{ margin:0 0 .4rem; }
.article-cta p{ margin:0 0 1rem; color:var(--body); }
.article-cta__btns{ display:flex; gap:.7rem; flex-wrap:wrap; }
.article-body a{ color:var(--red); font-weight:600; text-decoration:underline; text-underline-offset:2px; }
.article-body .article-cta a{ text-decoration:none; }
.article-body .article-cta .btn{ color:#fff; }
.article-body .article-cta .btn--ghost{ color:var(--navy); }
.side-card h3{ margin-bottom:.5rem; }
.side-card p{ color:var(--body); font-size:.96rem; }
.side-card .btn{ margin-top:.6rem; }
.side-card__phone{ display:flex; align-items:center; gap:.5rem; font-family:var(--font-head); font-weight:700; color:var(--navy); margin-top:1rem; justify-content:center; }
.side-card__phone strong{ color:var(--red); }

@media (max-width:980px){
  .article-aside{ display:none; }
  .quiz__rec{ grid-template-columns:1fr; text-align:center; }
  .quiz__rec img{ width:140px; height:140px; margin:0 auto; }
  .quiz__why{ text-align:left; }
}

/* =========================================================
   CHAT WIDGET
   ========================================================= */
.rb-chat-launcher{
  position:fixed; right:24px; bottom:24px; z-index:90;
  display:inline-flex; align-items:center; gap:.6rem;
  background:var(--red); color:#fff; border:0; border-radius:100px;
  padding:.85rem 1.3rem .85rem 1rem; font-family:var(--font-head); font-weight:600; font-size:1rem;
  box-shadow:0 16px 32px -10px rgba(205,25,50,.6); cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.rb-chat-launcher:hover{ transform:translateY(-2px); background:var(--red-dark); }
.rb-chat-launcher svg{ flex:none; }
.rb-chat-launcher .rb-dot{ position:absolute; top:-3px; right:-3px; width:14px; height:14px; border-radius:50%; background:var(--green); border:2px solid #fff; }
.rb-chat-launcher.hide{ transform:scale(0); opacity:0; pointer-events:none; }

.rb-chat-panel{
  position:fixed; right:24px; bottom:24px; z-index:111; width:380px; max-width:calc(100vw - 32px);
  height:600px; max-height:calc(100vh - 48px); background:#fff; border-radius:22px;
  box-shadow:0 40px 90px -30px rgba(16,24,48,.5); display:flex; flex-direction:column; overflow:hidden;
  opacity:0; transform:translateY(20px) scale(.97); pointer-events:none;
  transition:opacity .25s ease, transform .25s cubic-bezier(.2,.8,.2,1);
}
.rb-chat-panel.open{ opacity:1; transform:none; pointer-events:auto; }

.rb-chat-head{ background:linear-gradient(135deg,var(--navy),var(--navy-deep)); color:#fff; padding:18px 20px; display:flex; align-items:center; gap:.8rem; }
.rb-chat-head__av{ width:44px; height:44px; border-radius:50%; background:var(--red); display:grid; place-items:center; flex:none; position:relative; }
.rb-chat-head__av .rb-dot{ position:absolute; bottom:0; right:0; width:12px; height:12px; border-radius:50%; background:var(--green); border:2px solid var(--navy); }
.rb-chat-head b{ font-family:var(--font-head); font-size:1.08rem; display:block; line-height:1.2; }
.rb-chat-head span{ font-size:.82rem; color:#bcc6e4; }
.rb-chat-close{ margin-left:auto; background:rgba(255,255,255,.12); border:0; color:#fff; width:34px; height:34px; border-radius:50%; display:grid; place-items:center; cursor:pointer; }
.rb-chat-close:hover{ background:rgba(255,255,255,.25); }

.rb-chat-body{ flex:1; overflow-y:auto; padding:18px; background:var(--cream); display:flex; flex-direction:column; gap:12px; }
.rb-msg{ max-width:84%; padding:11px 15px; border-radius:16px; font-size:.97rem; line-height:1.5; animation:rbIn .25s ease; }
@keyframes rbIn{ from{ opacity:0; transform:translateY(6px);} to{ opacity:1; transform:none;} }
.rb-msg.bot{ background:#fff; color:var(--ink); border:1px solid var(--line); border-bottom-left-radius:5px; align-self:flex-start; }
.rb-msg.user{ background:var(--navy); color:#fff; border-bottom-right-radius:5px; align-self:flex-end; }
.rb-msg a{ color:var(--red); font-weight:600; text-decoration:underline; }
.rb-msg.user a{ color:#fff; }
.rb-msg p{ margin:0 0 .5rem; } .rb-msg p:last-child{ margin:0; }

.rb-typing{ align-self:flex-start; background:#fff; border:1px solid var(--line); border-radius:16px; border-bottom-left-radius:5px; padding:13px 16px; display:inline-flex; gap:4px; }
.rb-typing span{ width:7px; height:7px; border-radius:50%; background:#b8bdca; animation:rbBounce 1.2s infinite; }
.rb-typing span:nth-child(2){ animation-delay:.2s; } .rb-typing span:nth-child(3){ animation-delay:.4s; }
@keyframes rbBounce{ 0%,60%,100%{ transform:translateY(0); opacity:.5; } 30%{ transform:translateY(-5px); opacity:1; } }

.rb-chips{ display:flex; flex-wrap:wrap; gap:8px; padding:0 2px; }
.rb-chip{ background:#fff; border:1.5px solid var(--line); color:var(--navy); font-family:var(--font-head); font-weight:600; font-size:.86rem; padding:.5rem .85rem; border-radius:100px; cursor:pointer; transition:border-color .15s ease, background .15s ease, color .15s ease; }
.rb-chip:hover{ border-color:var(--red); color:var(--red); background:var(--red-soft); }

.rb-chat-foot{ border-top:1px solid var(--line); background:#fff; padding:12px; display:flex; gap:8px; align-items:center; }
.rb-chat-foot input{ flex:1; border:1.5px solid var(--line); border-radius:100px; padding:.7rem 1rem; font-family:var(--font-body); font-size:.95rem; color:var(--ink); }
.rb-chat-foot input:focus{ outline:0; border-color:var(--red); box-shadow:0 0 0 3px var(--red-soft); }
.rb-chat-send{ flex:none; width:44px; height:44px; border-radius:50%; background:var(--red); color:#fff; border:0; display:grid; place-items:center; cursor:pointer; }
.rb-chat-send:hover{ background:var(--red-dark); }

/* email form inside chat */
.rb-form{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:16px; display:grid; gap:10px; align-self:stretch; animation:rbIn .25s ease; }
.rb-form b{ font-family:var(--font-head); color:var(--ink); }
.rb-form small{ color:var(--muted); display:block; margin-top:-4px; }
.rb-form input,.rb-form textarea{ width:100%; border:1.5px solid var(--line); border-radius:10px; padding:.6rem .8rem; font-family:var(--font-body); font-size:.92rem; color:var(--ink); }
.rb-form input:focus,.rb-form textarea:focus{ outline:0; border-color:var(--red); box-shadow:0 0 0 3px var(--red-soft); }
.rb-form textarea{ min-height:80px; resize:vertical; }
.rb-form .rb-err{ border-color:var(--red); }
.rb-form button{ background:var(--red); color:#fff; border:0; border-radius:100px; padding:.7rem; font-family:var(--font-head); font-weight:600; cursor:pointer; }
.rb-form button:hover{ background:var(--red-dark); }

@media (max-width:620px){
  .rb-chat-launcher{ bottom:84px; right:16px; width:52px; height:52px; padding:0; gap:0; font-size:0; border-radius:50%; justify-content:center; }
  .rb-chat-launcher svg{ width:24px; height:24px; }
  .rb-chat-panel{ bottom:0; right:0; width:100vw; max-width:100vw; height:100dvh; max-height:100dvh; border-radius:0; }
}
@media (prefers-reduced-motion:reduce){ .rb-chat-panel{ transition:opacity .2s ease; } }
