/* ===========================================================
   Biodentic — Feuille de style principale
   =========================================================== */

:root{
  --navy-900:#0c2038;
  --navy-800:#123258;
  --navy-700:#1a3f6e;
  --teal-500:#0e8f9c;
  --teal-400:#2fbfc0;
  --teal-300:#5fd8d1;
  --purple-600:#5a3a99;
  --purple-500:#7346c2;
  --purple-400:#9169d6;

  --ink:#152238;
  --ink-soft:#4c5a70;
  --ink-faint:#8592a6;

  --bg:#ffffff;
  --bg-soft:#f5f8fa;
  --bg-tint:#eef4f5;
  --border:#e2e8ef;
  --border-soft:#edf1f5;

  --brand-gradient:linear-gradient(120deg,var(--teal-400) 0%,var(--teal-500) 35%,var(--navy-700) 68%,var(--purple-600) 100%);
  --brand-gradient-soft:linear-gradient(120deg,rgba(47,191,192,.12) 0%,rgba(26,63,110,.10) 55%,rgba(90,58,153,.12) 100%);

  --shadow-sm:0 1px 2px rgba(12,32,56,.06), 0 1px 1px rgba(12,32,56,.04);
  --shadow-md:0 8px 24px -8px rgba(12,32,56,.18);
  --shadow-lg:0 20px 48px -16px rgba(12,32,56,.24);

  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;

  --container:1200px;
  --font-head:'Poppins',-apple-system,'Segoe UI',sans-serif;
  --font-body:'Inter',-apple-system,'Segoe UI',sans-serif;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{font:inherit;cursor:pointer;border:none;background:none}
h1,h2,h3,h4{font-family:var(--font-head);color:var(--navy-900);line-height:1.18;font-weight:700;letter-spacing:-0.01em}
.container{max-width:var(--container);margin:0 auto;padding:0 28px}

section{position:relative}

/* ---------- Eyebrow / kicker ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-head);font-size:12.5px;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;color:var(--teal-500);
  margin-bottom:14px;
}
.eyebrow::before{content:"";width:22px;height:2px;background:var(--teal-400);border-radius:2px}

.section-head{max-width:680px;margin-bottom:48px}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.section-head h2{font-size:clamp(28px,3.4vw,40px);margin-bottom:14px}
.section-head p{color:var(--ink-soft);font-size:16.5px}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  padding:14px 26px;border-radius:10px;font-family:var(--font-head);
  font-weight:600;font-size:14.5px;letter-spacing:.01em;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease,border-color .18s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--navy-900);color:#fff;box-shadow:var(--shadow-sm);
}
.btn-primary:hover{background:var(--navy-800);transform:translateY(-2px);box-shadow:var(--shadow-md)}
.btn-gradient{
  background:var(--brand-gradient);color:#fff;box-shadow:0 10px 28px -10px rgba(14,143,156,.55);
}
.btn-gradient:hover{transform:translateY(-2px);box-shadow:0 16px 34px -10px rgba(14,143,156,.6)}
.btn-outline{
  background:transparent;color:var(--navy-900);border:1.5px solid var(--border);
}
.btn-outline:hover{border-color:var(--navy-900);transform:translateY(-2px)}
.btn-ghost-light{background:rgba(255,255,255,.12);color:#fff;border:1.5px solid rgba(255,255,255,.35);backdrop-filter:blur(4px)}
.btn-ghost-light:hover{background:rgba(255,255,255,.22);transform:translateY(-2px)}
.btn-sm{padding:10px 18px;font-size:13.5px}
.btn-block{width:100%}
.btn svg{width:16px;height:16px}

/* ===========================================================
   HEADER
   =========================================================== */
.topbar{
  background:var(--navy-900);color:#cfe4e6;font-size:13px;
}
.topbar .container{display:flex;align-items:center;justify-content:space-between;padding-top:9px;padding-bottom:9px}
.topbar-left{display:flex;gap:26px;align-items:center;flex-wrap:wrap}
.topbar a{display:inline-flex;align-items:center;gap:7px;color:#cfe4e6;transition:color .15s}
.topbar a:hover{color:#fff}
.topbar svg{width:14px;height:14px;flex:none;opacity:.85}
.topbar-right{display:flex;gap:18px;align-items:center}

header.site-header{
  position:sticky;top:0;z-index:100;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border-soft);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:14px 0}

.brand{display:flex;align-items:center;gap:12px}
.brand .mark{width:44px;height:38px;flex:none}
.brand .wordmark{display:flex;flex-direction:column;line-height:1}
.brand .wordmark .name{
  font-family:var(--font-head);font-weight:800;font-size:22px;letter-spacing:-.01em;
  background:linear-gradient(90deg,var(--navy-900) 0%,var(--navy-700) 45%,var(--purple-600) 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.brand .wordmark .tag{
  font-family:var(--font-head);font-size:8.4px;font-weight:600;letter-spacing:.24em;
  color:var(--ink-faint);text-transform:uppercase;margin-top:3px;
}

.main-nav{display:flex;align-items:center;gap:6px}
.main-nav a{
  padding:10px 16px;border-radius:8px;font-family:var(--font-head);font-weight:500;
  font-size:14.5px;color:var(--ink-soft);transition:background .15s,color .15s;
}
.main-nav a:hover{background:var(--bg-tint);color:var(--navy-900)}
.main-nav a.active{color:var(--navy-900);font-weight:600}

.header-actions{display:flex;align-items:center;gap:12px}
.header-actions .phone{
  display:flex;flex-direction:column;line-height:1.25;font-family:var(--font-head);
}
.header-actions .phone small{font-size:11px;color:var(--ink-faint);font-weight:500}
.header-actions .phone strong{font-size:15px;color:var(--navy-900)}

.nav-toggle{display:none;width:42px;height:42px;border-radius:9px;border:1px solid var(--border);align-items:center;justify-content:center}
.nav-toggle svg{width:20px;height:20px}

/* ===========================================================
   HERO
   =========================================================== */
.hero{
  background:linear-gradient(180deg,#0c2038 0%,#0e2c4c 55%,#123a5e 100%);
  color:#fff;overflow:hidden;
}
.hero-inner{
  display:grid;grid-template-columns:1.05fr .95fr;gap:40px;align-items:center;
  padding:96px 0 84px;position:relative;
}
.hero-copy .eyebrow{color:var(--teal-300)}
.hero-copy .eyebrow::before{background:var(--teal-300)}
.hero-copy h1{
  color:#fff;font-size:clamp(34px,4.4vw,54px);line-height:1.1;margin-bottom:20px;
}
.hero-copy h1 span{
  background:linear-gradient(90deg,var(--teal-300),var(--purple-400));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero-copy p{font-size:17.5px;color:#c4d3e2;max-width:520px;margin-bottom:34px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:46px}

.hero-trust{display:flex;gap:30px;flex-wrap:wrap}
.hero-trust .item{display:flex;align-items:center;gap:10px}
.hero-trust .item svg{width:20px;height:20px;color:var(--teal-300);flex:none}
.hero-trust .item span{font-size:13.5px;color:#b7c8da;font-weight:500}

.hero-visual{position:relative;height:460px}
.hero-visual .ring{
  position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.14);
}
.hero-visual .ring.r1{width:420px;height:420px;top:20px;right:10px}
.hero-visual .ring.r2{width:320px;height:320px;top:70px;right:60px;border-color:rgba(255,255,255,.1)}
.hero-visual .glow{
  position:absolute;width:420px;height:420px;top:20px;right:10px;border-radius:50%;
  background:radial-gradient(circle at 40% 35%,rgba(47,191,192,.35),transparent 65%);
  filter:blur(10px);
}
.hero-visual .big-mark{
  position:absolute;width:230px;height:auto;top:50%;left:50%;
  transform:translate(-42%,-50%);filter:drop-shadow(0 20px 40px rgba(0,0,0,.35));
}
.hero-visual .chip{
  position:absolute;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(8px);border-radius:12px;padding:12px 16px;display:flex;align-items:center;gap:10px;
  box-shadow:0 12px 30px -10px rgba(0,0,0,.4);
}
.hero-visual .chip svg{width:18px;height:18px;color:var(--teal-300)}
.hero-visual .chip span{font-size:12.5px;font-weight:600;color:#fff;white-space:nowrap}
.hero-visual .chip.c1{top:30px;left:0}
.hero-visual .chip.c2{bottom:70px;left:-10px}
.hero-visual .chip.c3{bottom:10px;right:30px}

/* ===========================================================
   STAT / LOGO STRIP
   =========================================================== */
.strip{background:var(--bg-soft);border-bottom:1px solid var(--border-soft)}
.strip .container{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;
}
.strip .stat{
  padding:30px 20px;text-align:center;border-left:1px solid var(--border-soft);
}
.strip .stat:first-child{border-left:none}
.strip .stat b{display:block;font-family:var(--font-head);font-size:26px;color:var(--navy-900);font-weight:700}
.strip .stat span{font-size:12.5px;color:var(--ink-soft);font-weight:500}

/* ===========================================================
   CATEGORY GRID (home)
   =========================================================== */
.cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.cat-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);
  padding:28px 22px;transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
  position:relative;overflow:hidden;
}
.cat-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:transparent}
.cat-card .icon-wrap{
  width:52px;height:52px;border-radius:12px;display:flex;align-items:center;justify-content:center;
  background:var(--brand-gradient-soft);margin-bottom:18px;
}
.cat-card .icon-wrap svg{width:26px;height:26px;color:var(--teal-500)}
.cat-card h3{font-size:17px;margin-bottom:8px}
.cat-card p{font-size:13.8px;color:var(--ink-soft);margin-bottom:16px}
.cat-card .go{
  font-family:var(--font-head);font-size:13px;font-weight:600;color:var(--navy-900);
  display:inline-flex;align-items:center;gap:6px;
}
.cat-card .go svg{width:14px;height:14px;transition:transform .18s}
.cat-card:hover .go svg{transform:translateX(4px)}

/* ===========================================================
   PRODUCT CARDS
   =========================================================== */
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.product-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;
  transition:box-shadow .22s ease,transform .22s ease,border-color .22s ease;display:flex;flex-direction:column;
}
.product-card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px);border-color:var(--border-soft)}
.product-media{
  aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;position:relative;
  background:#fafcfd;border-bottom:1px solid var(--border-soft);overflow:hidden;
}
.product-media.placeholder{background:var(--brand-gradient-soft)}
.product-media.placeholder::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 30% 25%,rgba(255,255,255,.6),transparent 55%);
}
.product-media img{width:100%;height:100%;object-fit:contain;padding:14px;position:relative}
.product-media.placeholder img{width:36%;height:auto;padding:0;filter:drop-shadow(0 10px 16px rgba(12,32,56,.14))}
.product-tag{
  position:absolute;top:12px;left:12px;background:var(--navy-900);color:#fff;font-size:10.5px;
  font-family:var(--font-head);font-weight:600;letter-spacing:.05em;text-transform:uppercase;
  padding:5px 10px;border-radius:6px;z-index:2;
}
.product-body{padding:20px 20px 22px;display:flex;flex-direction:column;gap:6px;flex:1}
.product-cat{font-size:11px;font-weight:600;letter-spacing:.09em;text-transform:uppercase;color:var(--teal-500)}
.product-body h4{font-size:15.5px;font-family:var(--font-head);font-weight:600;color:var(--navy-900)}
.product-body p{font-size:13px;color:var(--ink-soft);flex:1;margin-bottom:8px}
.product-foot{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:auto}
.product-foot .quote{font-size:12.5px;color:var(--ink-faint);font-weight:500}
.product-foot .btn{padding:9px 16px;font-size:12.5px}

/* ---------- Category filter tabs ---------- */
.filter-bar{
  display:flex;flex-wrap:wrap;gap:10px;margin-bottom:40px;
}
.filter-btn{
  padding:10px 18px;border-radius:999px;border:1.5px solid var(--border);
  font-family:var(--font-head);font-size:13.5px;font-weight:600;color:var(--ink-soft);
  transition:all .18s;
}
.filter-btn:hover{border-color:var(--navy-900);color:var(--navy-900)}
.filter-btn.active{background:var(--navy-900);color:#fff;border-color:var(--navy-900)}

/* ===========================================================
   ABOUT / SPLIT SECTIONS
   =========================================================== */
.split{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}
.split-visual{
  position:relative;background:var(--brand-gradient);border-radius:var(--radius-lg);
  aspect-ratio:4/3.3;display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.split-visual::before{
  content:"";position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,.16) 1.5px,transparent 1.5px);
  background-size:22px 22px;opacity:.5;
}
.split-visual img{width:34%;position:relative;filter:drop-shadow(0 16px 28px rgba(0,0,0,.25))}

.value-list{display:flex;flex-direction:column;gap:22px;margin-top:30px}
.value-item{display:flex;gap:16px}
.value-item .num{
  font-family:var(--font-head);font-weight:700;font-size:14px;color:var(--teal-500);
  width:34px;height:34px;border-radius:9px;border:1.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;flex:none;
}
.value-item h4{font-size:15.5px;margin-bottom:4px}
.value-item p{font-size:13.8px;color:var(--ink-soft)}

.bg-soft-section{background:var(--bg-soft)}

/* ---------- Timeline / why-choose strip ---------- */
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.why-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);padding:30px 26px;
}
.why-card .icon-wrap{
  width:46px;height:46px;border-radius:11px;background:var(--navy-900);
  display:flex;align-items:center;justify-content:center;margin-bottom:18px;
}
.why-card .icon-wrap svg{width:22px;height:22px;color:var(--teal-300)}
.why-card h4{font-size:16px;margin-bottom:8px}
.why-card p{font-size:13.8px;color:var(--ink-soft)}

/* ===========================================================
   CTA BAND
   =========================================================== */
.cta-band{
  background:linear-gradient(120deg,#0c2038 0%,#123a5e 55%,#3a2760 100%);
  border-radius:var(--radius-lg);padding:64px 60px;display:flex;align-items:center;justify-content:space-between;
  gap:40px;color:#fff;position:relative;overflow:hidden;
}
.cta-band::after{
  content:"";position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,.12) 1.5px,transparent 1.5px);
  background-size:20px 20px;opacity:.4;pointer-events:none;
}
.cta-band h2{color:#fff;font-size:clamp(24px,2.8vw,32px);max-width:480px;position:relative}
.cta-band p{color:#c4d3e2;margin-top:10px;font-size:15px;position:relative}
.cta-band .actions{display:flex;gap:14px;flex:none;position:relative;flex-wrap:wrap}

/* ===========================================================
   FAQ
   =========================================================== */
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq-item{border:1px solid var(--border);border-radius:var(--radius-sm);overflow:hidden;background:#fff}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;gap:16px;padding:18px 22px;
  font-family:var(--font-head);font-weight:600;font-size:15px;color:var(--navy-900);
}
.faq-q svg{width:18px;height:18px;flex:none;transition:transform .25s;color:var(--teal-500)}
.faq-item.open .faq-q svg{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .28s ease}
.faq-a p{padding:0 22px 20px;font-size:14px;color:var(--ink-soft);max-width:640px}
.faq-item.open .faq-a{max-height:220px}

/* ===========================================================
   CONTACT PAGE
   =========================================================== */
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:50px;align-items:start}
.contact-card-list{display:flex;flex-direction:column;gap:16px;margin-bottom:28px}
.contact-info-card{
  display:flex;gap:16px;padding:20px;border:1px solid var(--border);border-radius:var(--radius-md);background:#fff;
}
.contact-info-card .icon-wrap{
  width:44px;height:44px;border-radius:10px;background:var(--brand-gradient-soft);
  display:flex;align-items:center;justify-content:center;flex:none;
}
.contact-info-card .icon-wrap svg{width:21px;height:21px;color:var(--teal-500)}
.contact-info-card h4{font-size:14.5px;margin-bottom:4px}
.contact-info-card p{font-size:13.5px;color:var(--ink-soft)}
.contact-info-card a{color:var(--ink-soft);transition:color .15s}
.contact-info-card a:hover{color:var(--teal-500)}

.map-wrap{border-radius:var(--radius-md);overflow:hidden;border:1px solid var(--border);height:230px}
.map-wrap iframe{width:100%;height:100%;border:0;filter:grayscale(15%) contrast(1.02)}

.form-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:40px;box-shadow:var(--shadow-sm);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.field{margin-bottom:18px}
.field label{display:block;font-size:13px;font-weight:600;font-family:var(--font-head);color:var(--navy-900);margin-bottom:8px}
.field input,.field select,.field textarea{
  width:100%;padding:13px 15px;border:1.5px solid var(--border);border-radius:9px;font:inherit;font-size:14.5px;
  color:var(--ink);transition:border-color .15s,box-shadow .15s;background:var(--bg-soft);
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--teal-500);box-shadow:0 0 0 4px rgba(14,143,156,.12);background:#fff;
}
.field textarea{resize:vertical;min-height:120px}

/* ===========================================================
   FOOTER
   =========================================================== */
footer.site-footer{background:var(--navy-900);color:#a9bcd0;padding:70px 0 0}
.footer-top{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.1fr;gap:50px;padding-bottom:56px;border-bottom:1px solid rgba(255,255,255,.08)}
.footer-brand .brand .wordmark .name{
  background:linear-gradient(90deg,#fff 0%,var(--teal-300) 60%,var(--purple-400) 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.footer-brand .brand .wordmark .tag{color:#8fa3ba}
.footer-brand p{font-size:13.8px;margin-top:16px;color:#8fa3ba;max-width:280px}
.footer-social{display:flex;gap:10px;margin-top:22px}
.footer-social a{
  width:38px;height:38px;border-radius:9px;border:1px solid rgba(255,255,255,.14);
  display:flex;align-items:center;justify-content:center;transition:background .15s,border-color .15s;
}
.footer-social a:hover{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.3)}
.footer-social svg{width:16px;height:16px;color:#cfe4e6}

.footer-col h5{font-family:var(--font-head);color:#fff;font-size:14px;margin-bottom:20px;font-weight:600}
.footer-col ul{display:flex;flex-direction:column;gap:12px}
.footer-col a{font-size:13.8px;color:#a9bcd0;transition:color .15s}
.footer-col a:hover{color:#fff}
.footer-col .contact-line{display:flex;gap:10px;align-items:flex-start;font-size:13.8px;color:#a9bcd0}
.footer-col .contact-line svg{width:16px;height:16px;color:var(--teal-300);flex:none;margin-top:2px}

.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding:24px 0;font-size:12.8px;color:#7d92aa;flex-wrap:wrap;gap:10px}
.footer-bottom a{color:#7d92aa}
.footer-bottom a:hover{color:#fff}

/* ===========================================================
   PAGE HERO (inner pages)
   =========================================================== */
.page-hero{
  background:linear-gradient(180deg,#0c2038 0%,#123a5e 100%);color:#fff;padding:64px 0 56px;
}
.page-hero .eyebrow{color:var(--teal-300)}
.page-hero .eyebrow::before{background:var(--teal-300)}
.page-hero h1{color:#fff;font-size:clamp(30px,3.6vw,44px)}
.page-hero p{color:#c4d3e2;max-width:600px;margin-top:14px;font-size:16px}
.breadcrumb{display:flex;gap:8px;align-items:center;font-size:13px;color:#9db3c8;margin-bottom:18px}
.breadcrumb a{color:#9db3c8}
.breadcrumb a:hover{color:#fff}

.py-xl{padding:96px 0}
.py-lg{padding:76px 0}
.py-md{padding:56px 0}

/* ===========================================================
   UTILITIES
   =========================================================== */
.text-center{text-align:center}
.mt-40{margin-top:40px}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width:1080px){
  .hero-inner{grid-template-columns:1fr;padding-top:52px}
  .hero-visual{
    display:flex;position:relative;height:auto;align-items:center;justify-content:center;
    order:-1;margin:0 auto 28px;width:200px;
  }
  .hero-visual .ring,.hero-visual .chip{display:none}
  .hero-visual .glow{position:absolute;width:200px;height:200px;top:50%;left:50%;transform:translate(-50%,-50%)}
  .hero-visual .big-mark{position:relative;width:112px;transform:none;left:auto;top:auto}
  .hero-copy{text-align:center}
  .hero-copy .eyebrow{justify-content:center}
  .hero-copy p{margin-left:auto;margin-right:auto}
  .hero-actions{justify-content:center}
  .hero-trust{justify-content:center}
  .cat-grid{grid-template-columns:repeat(2,1fr)}
  .product-grid{grid-template-columns:repeat(3,1fr)}
  .why-grid{grid-template-columns:repeat(1,1fr)}
  .split{grid-template-columns:1fr;gap:40px}
  .split.reverse .split-visual{order:-1}
  .footer-top{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
  .strip .container{grid-template-columns:repeat(2,1fr);row-gap:20px}
  .strip .stat:nth-child(3){border-left:none}
}
@media (max-width:820px){
  .topbar{display:none}
  .main-nav{display:none}
  .nav-toggle{display:flex}
  .header-actions .phone{display:none}
  .header-actions .btn-primary.btn-sm{display:none}
  .brand .wordmark .tag{white-space:nowrap}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .cta-band{flex-direction:column;align-items:flex-start;padding:44px 32px}
  .form-row{grid-template-columns:1fr}
}
@media (max-width:560px){
  .container{padding:0 18px}
  .nav-inner{padding:12px 0}
  .brand .mark{width:36px;height:31px}
  .brand .wordmark .name{font-size:19px}
  .brand .wordmark .tag{font-size:7.6px;letter-spacing:.18em}
  .cat-grid{grid-template-columns:1fr}
  .product-grid{grid-template-columns:1fr 1fr;gap:14px}
  .strip .container{grid-template-columns:1fr 1fr}
  .footer-top{grid-template-columns:1fr}
  .hero-inner{padding:44px 0 40px}
  .hero-copy h1{font-size:clamp(28px,7vw,36px)}
  .hero-visual{width:150px}
  .hero-visual .glow{width:150px;height:150px}
  .hero-visual .big-mark{width:86px}
  .form-card{padding:26px}
  .cta-band{padding:36px 22px}
  .product-body{padding:14px 14px 16px}
  .product-body h4{font-size:14px}
  .product-body p{font-size:12px}
  .product-foot{flex-direction:column;align-items:stretch;gap:8px}
  .product-foot .quote{text-align:center}
  .product-foot .btn{width:100%;justify-content:center;padding:10px 12px}
  .filter-btn{padding:8px 14px;font-size:12.5px}
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav{
  position:fixed;inset:0;background:rgba(12,32,56,.5);z-index:200;display:none;
}
.mobile-nav.open{display:block}
.mobile-nav-panel{
  position:absolute;top:0;right:0;bottom:0;width:82%;max-width:340px;background:#fff;
  padding:26px 24px;display:flex;flex-direction:column;gap:6px;box-shadow:var(--shadow-lg);
}
.mobile-nav-panel a{padding:14px 6px;font-family:var(--font-head);font-weight:600;font-size:16px;color:var(--navy-900);border-bottom:1px solid var(--border-soft)}
.mobile-nav-panel a.btn{color:#fff;border-bottom:none;padding:14px 26px;text-align:center}
.mobile-nav-close{align-self:flex-end;width:38px;height:38px;display:flex;align-items:center;justify-content:center;border-radius:8px;border:1px solid var(--border);margin-bottom:10px}
.mobile-nav-close svg{width:18px;height:18px}
