/* =========================================================
   Medical Ozone Care — Design System
   ========================================================= */
:root {
  /* Approved medical palette — teal-green + blue accent */
  --teal: #0db7a5;       /* bright primary */
  --teal-d: #008b7a;     /* primary */
  --teal-x: #04695c;     /* deep */
  --navy: #112b40;       /* headings / deep gradient */
  --navy-d: #071827;     /* footer / darkest */
  --blue: #1f6feb;       /* accent */
  --blue-l: #4fb7ff;
  --cyan: #18cfd6;
  --sky: #7fe3ea;
  --ice: #e7f7f4;
  --ink: #102033;        /* body text */
  --muted: #60758b;
  --bg: #f7fbff;
  --card: #ffffff;
  --line: #e3edf1;
  --green: #1f9d57;
  --amber: #e0a82e;
  --danger: #d0463b;

  --shadow-sm: 0 1px 2px rgba(6, 50, 70, .06), 0 2px 6px rgba(6, 50, 70, .07);
  --shadow: 0 14px 40px rgba(6, 50, 70, .10);
  --shadow-lg: 0 24px 64px rgba(6, 50, 70, .16);
  --radius: 16px;
  --radius-lg: 26px;
  --container: 1180px;
  --grad: linear-gradient(135deg, var(--teal-d) 0%, var(--teal) 100%);
  --grad-blue: linear-gradient(135deg, var(--blue) 0%, var(--blue-l) 100%);
  --grad-soft: linear-gradient(135deg, #e8fbf8 0%, #eef6ff 100%);

  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --display: "Sora", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* clip (not hidden) so position:sticky nav keeps working */
}
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.15; color: var(--navy); margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
a { color: var(--teal-d); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal); }
img, svg { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 110px) 0; position: relative; }
.section.tight { padding: clamp(40px, 5vw, 70px) 0; }
.bg-soft { background: var(--grad-soft); }
.bg-ice { background: linear-gradient(180deg, #fff, var(--ice)); }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal-d);
  background: #e6f8fb; border: 1px solid #cdeef4;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.lead { font-size: 1.12rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s, box-shadow .25s, background .2s, color .2s;
  white-space: nowrap; text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 24px rgba(10,162,184,.35); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(10,162,184,.45); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); color: #fff; transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--teal-d); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.06rem; }
.btn-block { width: 100%; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1eb858; color: #fff; transform: translateY(-2px); }

/* =========================================================
   Header / Nav
   ========================================================= */
/* Top info bar — scrolls away as you scroll down */
.topbar { background: linear-gradient(90deg, var(--teal-d), var(--blue)); color: #fff; font-size: .82rem; font-weight: 600; }
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 8px 0; }
.topbar a { color: #fff; }
.topbar a:hover { color: #fff; opacity: .85; }
.tb-contact { white-space: nowrap; }

/* Nav — sticks to the top of the viewport (parent is <body>) */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 2px 16px rgba(6,50,70,.08); border-bottom: 1px solid rgba(6,50,70,.05);
  transition: box-shadow .25s;
}
.nav.stuck { box-shadow: 0 8px 26px rgba(6,50,70,.13); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 66px; }
.brand { display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--navy); font-weight: 600; font-size: .95rem; padding: 9px 13px; border-radius: 100px; transition: background .2s, color .2s; }
.nav-links a:hover { background: #e9f7f4; color: var(--teal-d); }
.nav-links a.active { color: var(--teal-d); background: #e9f7f4; }
.nav-links .only-mobile { display: none; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-quote { padding: 11px 20px; font-size: .95rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 9px; border-radius: 12px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* Mobile slide-in drawer */
.mdrawer { position: fixed; inset: 0; z-index: 300; display: none; }
.mdrawer.open { display: block; }
.mdrawer-backdrop { position: absolute; inset: 0; background: rgba(8,42,60,.5); backdrop-filter: blur(2px); animation: fade .25s; }
.mdrawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw); background: #fff; box-shadow: -20px 0 60px rgba(6,50,70,.28); display: flex; flex-direction: column; padding: 18px; transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; }
.mdrawer.open .mdrawer-panel { transform: none; }
.mdrawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.mdrawer-logo { height: 38px; }
.mdrawer-close { background: #f1f6f8; border: 0; border-radius: 12px; width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy); cursor: pointer; }
.mdrawer-close svg { width: 20px; height: 20px; }
.mdrawer-links { display: grid; gap: 2px; margin: 8px 0; }
.mdrawer-links a { display: flex; align-items: center; justify-content: space-between; padding: 15px 12px; border-radius: 12px; color: var(--navy); font-family: var(--display); font-weight: 600; font-size: 1.06rem; border-bottom: 1px solid var(--line); }
.mdrawer-links a:last-child { border-bottom: 0; }
.mdrawer-links a svg { width: 17px; height: 17px; color: var(--muted); }
.mdrawer-links a.active { color: var(--teal-d); }
.mdrawer-cta { display: grid; gap: 10px; margin: 16px 0 6px; }
.mdrawer-info { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; display: grid; gap: 9px; }
.mdrawer-info p { margin: 0; display: flex; gap: 9px; align-items: flex-start; }
.mdrawer-info svg { width: 16px; height: 16px; color: var(--teal-d); flex: none; margin-top: 3px; }
.mdrawer-info a { color: var(--muted); word-break: break-word; }

@media (max-width: 940px) {
  .nav-links, .nav-quote { display: none; }
  .nav-toggle { display: block; }
  .tb-tag { display: none; }
  .topbar-in { justify-content: center; }
  .nav-inner { height: 60px; }
}
@media (max-width: 560px) {
  .tb-contact { font-size: .76rem; }
  .tb-contact .tb-email { display: none; }
  .brand img { height: 34px; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; padding: 72px 0 90px; overflow: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, #0e6f86 0%, transparent 60%),
              radial-gradient(900px 500px at 10% 10%, #0c8aa3 0%, transparent 55%),
              linear-gradient(160deg, var(--navy) 0%, var(--teal-x) 60%, var(--teal-d) 120%);
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
  background: url("/assets/img/wave.svg") bottom center / cover no-repeat;
}
.hero-bubbles { position: absolute; inset: 0; background: url("/assets/img/bubbles.svg") center/cover no-repeat; opacity: .55; pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; z-index: 2; }
.hero h1 { color: #fff; }
.hero h1 .hl { background: linear-gradient(90deg, var(--cyan), var(--sky)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { color: #d6f1f7; max-width: 560px; }
.hero .eyebrow { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.25); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 38px; }
.hero-trust .t { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: #cdeef5; }
.hero-trust .t svg { width: 22px; height: 22px; color: var(--cyan); flex: none; }
.hero-visual { position: relative; }
.hero-visual .device { filter: drop-shadow(0 30px 50px rgba(0,0,0,.35)); animation: float 6s ease-in-out infinite; }
.hero-badge {
  position: absolute; background: #fff; color: var(--navy); border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .9rem;
}
.hero-badge .n { font-family: var(--display); font-size: 1.4rem; font-weight: 800; color: var(--teal-d); line-height: 1; }
.hero-badge.b1 { top: 8%; left: -4%; animation: float 5s ease-in-out infinite; }
.hero-badge.b2 { bottom: 10%; right: -2%; animation: float 7s ease-in-out .5s infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* logos / trust strip */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip .row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; }
.trust-strip .item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 600; font-size: .95rem; }
.trust-strip .item svg { width: 26px; height: 26px; color: var(--teal); }

/* =========================================================
   Stat counters
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 26px 14px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--teal-d); }
.stat .lbl { color: var(--muted); font-weight: 500; font-size: .95rem; }

/* =========================================================
   Feature grid
   ========================================================= */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cdeef4; }
.feature .ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad); color: #fff; margin-bottom: 18px; box-shadow: 0 8px 18px rgba(10,162,184,.3);
}
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--muted); margin: 0; font-size: .98rem; }

/* =========================================================
   Showcase (featured product)
   ========================================================= */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.showcase-media { position: relative; background: var(--grad-soft); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.showcase-media img { border-radius: 14px; }
.showcase ul.checks { list-style: none; margin: 18px 0 26px; display: grid; gap: 12px; }
.showcase ul.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.showcase ul.checks li svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 2px; }
.price-pill { display: inline-flex; align-items: center; gap: 8px; background: #eef9f2; color: var(--green); font-weight: 700; padding: 8px 16px; border-radius: 100px; border: 1px solid #cdeeda; }

/* =========================================================
   Product cards
   ========================================================= */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.pcard {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pcard .media { background: var(--grad-soft); padding: 22px; border-bottom: 1px solid var(--line); position: relative; }
.pcard .media img { height: 190px; width: 100%; object-fit: contain; }
.pcard .tag { position: absolute; top: 14px; left: 14px; background: var(--navy); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; }
.pcard .tag.feat { background: var(--grad); }
.pcard .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pcard .cat { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-d); }
.pcard h3 { margin: 6px 0 4px; font-size: 1.18rem; }
.pcard .model { color: var(--muted); font-size: .9rem; font-weight: 600; margin-bottom: 10px; }
.pcard p { color: var(--muted); font-size: .95rem; flex: 1; }
.pcard .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.pcard .foot .price { font-weight: 700; color: var(--navy); }

/* =========================================================
   How it works
   ========================================================= */
.diagram-wrap { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); margin-bottom: 44px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: #fff;
  width: 40px; height: 40px; border-radius: 12px; background: var(--grad); display: grid; place-items: center; margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* =========================================================
   Specs table
   ========================================================= */
.spec-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.spec-table th, .spec-table td { text-align: left; padding: 15px 22px; border-bottom: 1px solid var(--line); }
.spec-table th { width: 38%; color: var(--navy); font-weight: 600; background: #f3fafb; font-family: var(--font); }
.spec-table td { color: var(--muted); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

/* concentration table */
.ctable-scroll { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.ctable { width: 100%; border-collapse: collapse; background: #fff; min-width: 560px; }
.ctable th, .ctable td { padding: 12px 14px; text-align: center; border: 1px solid var(--line); font-size: .92rem; }
.ctable thead th { background: var(--navy); color: #fff; font-family: var(--font); font-weight: 600; }
.ctable thead th.m1 { background: var(--teal-d); }
.ctable thead th.m2 { background: var(--amber); }
.ctable tbody th { background: #f3fafb; color: var(--navy); font-weight: 700; }
.ctable td { color: var(--ink); font-variant-numeric: tabular-nums; }

/* =========================================================
   Benefits / list
   ========================================================= */
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.benefit-list { list-style: none; display: grid; gap: 18px; }
.benefit-list li { display: flex; gap: 16px; align-items: flex-start; }
.benefit-list .ic { width: 46px; height: 46px; border-radius: 12px; background: #e6f8fb; color: var(--teal-d); display: grid; place-items: center; flex: none; }
.benefit-list .ic svg { width: 24px; height: 24px; }
.benefit-list h4 { margin: 0 0 4px; font-family: var(--display); color: var(--navy); }
.benefit-list p { margin: 0; color: var(--muted); font-size: .96rem; }

/* =========================================================
   Testimonials
   ========================================================= */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.tcard .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 12px; }
.tcard p { font-size: 1.02rem; color: var(--ink); }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.tcard .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 700; }
.tcard .who .nm { font-weight: 700; color: var(--navy); line-height: 1.2; }
.tcard .who .rl { font-size: .85rem; color: var(--muted); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 70px); color: #fff;
  background: radial-gradient(700px 300px at 90% 0%, #0e7a93, transparent 60%), var(--grad); box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d6f1f7; max-width: 560px; }
.cta-band .hero-cta { margin-top: 22px; }

/* =========================================================
   Forms
   ========================================================= */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; font-family: var(--font); font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(10,162,184,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field.hp { position: absolute; left: -9999px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .85rem; color: var(--muted); }
.form-msg { padding: 13px 16px; border-radius: 12px; font-weight: 600; margin-bottom: 16px; display: none; }
.form-msg.ok { display: block; background: #eafaf0; color: var(--green); border: 1px solid #c7eed6; }
.form-msg.err { display: block; background: #fdeceb; color: var(--danger); border: 1px solid #f6cfcc; }

/* =========================================================
   Contact info cards
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-list { display: grid; gap: 16px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.info-item .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--grad); color: #fff; display: grid; place-items: center; flex: none; }
.info-item .ic svg { width: 24px; height: 24px; }
.info-item .k { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.info-item .v { font-weight: 600; color: var(--navy); }
.info-item .v a { color: var(--navy); }
.info-item .v a:hover { color: var(--teal-d); }

/* =========================================================
   Page hero (sub pages)
   ========================================================= */
.page-hero { position: relative; padding: 64px 0 60px; color: #fff; overflow: hidden;
  background: radial-gradient(900px 400px at 80% -20%, #0e6f86, transparent 60%), linear-gradient(160deg, var(--navy), var(--teal-x)); }
.page-hero::after { content: ""; position: absolute; inset: auto 0 -1px; height: 70px; background: url("/assets/img/wave.svg") bottom/cover no-repeat; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #d6f1f7; max-width: 640px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .9rem; color: #bfe6ef; margin-bottom: 14px; }
.breadcrumb a { color: #bfe6ef; }
.breadcrumb a:hover { color: #fff; }

/* =========================================================
   Product detail
   ========================================================= */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.pd-gallery .main { background: var(--grad-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.pd-gallery .main img { height: 360px; object-fit: contain; margin: 0 auto; }
.pd-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pd-thumbs button { background: #fff; border: 2px solid var(--line); border-radius: 12px; padding: 8px; cursor: pointer; width: 88px; height: 72px; transition: border-color .2s; }
.pd-thumbs button.active, .pd-thumbs button:hover { border-color: var(--teal); }
.pd-thumbs img { height: 100%; object-fit: contain; }
.pd-info .cat { color: var(--teal-d); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
.pd-info h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 8px 0; }
.pd-info .model { color: var(--muted); font-weight: 600; }
.pd-highlights { list-style: none; display: grid; gap: 10px; margin: 22px 0; }
.pd-highlights li { display: flex; gap: 10px; align-items: flex-start; }
.pd-highlights li svg { width: 20px; height: 20px; color: var(--green); flex: none; margin-top: 3px; }
.pd-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.chip { background: #eef9fb; border: 1px solid #cdeef4; color: var(--teal-d); padding: 6px 14px; border-radius: 100px; font-size: .85rem; font-weight: 600; }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; border-bottom: 2px solid var(--line); margin: 40px 0 24px; }
.tabs button { background: none; border: 0; border-bottom: 3px solid transparent; margin-bottom: -2px; padding: 12px 18px; font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--muted); cursor: pointer; transition: color .2s, border-color .2s; }
.tabs button.active { color: var(--teal-d); border-color: var(--teal); }
.tabpane { display: none; } .tabpane.active { display: block; animation: fade .3s; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.acc-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 16px; }
.acc-item { text-align: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-sm); }
.acc-item img { height: 110px; object-fit: contain; margin: 0 auto 8px; }
.acc-item .nm { font-weight: 600; color: var(--navy); font-size: .95rem; }
.acc-item .qty { color: var(--muted); font-size: .85rem; }

/* =========================================================
   Instructions / docs
   ========================================================= */
.doc-grid { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.doc-nav { position: sticky; top: 96px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.doc-nav a { display: block; padding: 9px 12px; border-radius: 10px; color: var(--muted); font-weight: 500; font-size: .95rem; }
.doc-nav a:hover, .doc-nav a.active { background: #e6f8fb; color: var(--teal-d); }
.doc-section { margin-bottom: 48px; scroll-margin-top: 96px; }
.doc-section h2 { display: flex; align-items: center; gap: 12px; }
.doc-section h2 .n { width: 40px; height: 40px; border-radius: 12px; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 1rem; flex: none; }
.callout { display: flex; gap: 14px; padding: 18px 20px; border-radius: 14px; margin: 18px 0; }
.callout svg { width: 24px; height: 24px; flex: none; margin-top: 2px; }
.callout.warn { background: #fff7e8; border: 1px solid #f6e2b6; color: #8a6312; }
.callout.warn svg { color: var(--amber); }
.callout.info { background: #e9f6fb; border: 1px solid #c6e7f2; color: var(--teal-x); }
.callout.info svg { color: var(--teal-d); }
.callout.danger { background: #fdeceb; border: 1px solid #f6cfcc; color: #9a2820; }
.callout.danger svg { color: var(--danger); }
.numlist { counter-reset: ni; list-style: none; display: grid; gap: 16px; }
.numlist li { display: flex; gap: 16px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow-sm); }
.numlist li::before { counter-increment: ni; content: counter(ni); font-family: var(--display); font-weight: 800; width: 34px; height: 34px; border-radius: 10px; background: #e6f8fb; color: var(--teal-d); display: grid; place-items: center; flex: none; }
.numlist li strong { color: var(--navy); }

/* =========================================================
   Admin
   ========================================================= */
.admin-bar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.admin-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.admin-stats .stat { padding: 18px; }
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.dtable { width: 100%; border-collapse: collapse; min-width: 780px; }
.dtable th, .dtable td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .93rem; }
.dtable th { background: #f3fafb; color: var(--navy); font-weight: 600; position: sticky; top: 0; }
.dtable tr:hover td { background: #fafdfe; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: .78rem; font-weight: 700; }
.badge.new { background: #e6f8fb; color: var(--teal-d); }
.badge.contacted { background: #fff7e8; color: var(--amber); }
.badge.closed { background: #eef9f2; color: var(--green); }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--navy-d); color: #c5d6df; padding: 64px 0 28px; position: relative; }
.footer a { color: #c5d6df; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer .brand img { height: 46px; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer .muted { color: #8fa6b2; font-size: .92rem; }
.footer .social { display: flex; gap: 10px; margin-top: 14px; }
.footer .social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer .social a:hover { background: var(--teal); }
.footer .social svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; padding-top: 22px; font-size: .9rem; color: #8fa6b2; }
.foot-contact li { display: flex; gap: 10px; align-items: flex-start; }
.foot-contact svg { width: 18px; height: 18px; color: var(--cyan); flex: none; margin-top: 3px; }

/* =========================================================
   Floating WhatsApp
   ========================================================= */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform .2s; }
.fab:hover { transform: scale(1.08); color: #fff; }
.fab svg { width: 30px; height: 30px; }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* =========================================================
   Utilities
   ========================================================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.hide { display: none !important; }
.skeleton { background: linear-gradient(90deg, #eef4f6 25%, #f7fbfc 50%, #eef4f6 75%); background-size: 200% 100%; animation: sk 1.3s infinite; border-radius: 12px; }
@keyframes sk { to { background-position: -200% 0; } }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .features, .tcards, .steps { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero-grid, .showcase, .benefit-grid, .contact-grid, .pd-grid, .grid-2, .doc-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 64px; }
  .hero-grid { gap: 30px; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .stats, .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .doc-nav { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .cta-band .grid-2 { gap: 24px; }
}
@media (max-width: 560px) {
  .features, .tcards, .steps, .product-grid, .product-grid.cols-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .container { padding: 0 18px; }
  .section { padding: 44px 0; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { gap: 12px; }
  .showcase-media, .apps-graphic, .diagram-wrap { padding: 16px; }
  .cta-band { padding: 30px 22px; }
  .feature, .tcard, .step { padding: 22px; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .section-head { margin-bottom: 32px; }
  .pd-gallery .main img { height: 260px; }
  .fab { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

/* =========================================================
   Approved-palette accents (teal-green + blue)
   ========================================================= */
body {
  background:
    radial-gradient(circle at 10% 6%, rgba(13,183,165,.14), transparent 30%),
    radial-gradient(circle at 90% 14%, rgba(31,111,235,.10), transparent 34%),
    var(--bg);
}
.btn-blue { background: var(--grad-blue); color: #fff; box-shadow: 0 12px 30px rgba(31,111,235,.28); }
.btn-blue:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 36px rgba(31,111,235,.36); }

/* every Nth feature/contact icon picks up the blue accent for rhythm */
.feature:nth-child(3n+2) .ic, .benefit-list li:nth-child(2) .ic { background: var(--grad-blue); }

/* price */
.price-row { display: flex; align-items: baseline; gap: 8px; margin: 4px 0 10px; }
.price-row .amt { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--teal-d); letter-spacing: -.02em; }
.price-row .cur { color: var(--muted); font-size: .9rem; font-weight: 600; }
.pcard .foot .price { font-family: var(--display); font-weight: 800; color: var(--teal-d); }
.status-dot { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 700; }
.status-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.status-dot.out::before { background: var(--muted); }

/* search box */
.search-bar { display: flex; gap: 10px; max-width: 520px; margin: 0 auto 28px; }
.search-bar input { flex: 1; padding: 13px 18px; border: 1.5px solid var(--line); border-radius: 100px; font-family: var(--font); font-size: 1rem; box-shadow: var(--shadow-sm); }
.search-bar input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(13,183,165,.14); }

/* applications grid */
.apps-graphic { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.disclaimer-bar { margin-top: 22px; padding: 16px 20px; border-radius: 14px; background: #fff8e8; border: 1px solid rgba(224,168,46,.32); color: #6d4700; font-size: .92rem; line-height: 1.6; }
.disclaimer-bar strong { color: #5a3c00; }
