/* =====================================================================
   DEWIMED Polska — Design System 2026  ·  LIGHT / AIRY / ELEGANT
   Inspired by dewimed.de — white, clean, medical, generous whitespace
   Brand accents: navy + cobalt blue + warm orange (used sparingly)
   ===================================================================== */

:root {
  /* Brand */
  --navy: #16266b;          /* headings / brand */
  --navy-soft: #243465;
  --blue-700: #1f4fc4;
  --blue: #2f6bf0;          /* primary accent */
  --blue-300: #8fb4fb;
  --blue-50: #eef4ff;
  --cyan: #2bb8e6;
  --orange: #ee5a24;        /* warm accent */
  --orange-soft: #ff7a45;

  /* Neutrals — light first */
  --bg: #ffffff;
  --bg-soft: #f6f9fe;       /* very light blue-gray */
  --bg-tint: #eef3fc;
  --ink: #1c2740;           /* body text (soft navy-black) */
  --slate-700: #33415c;
  --slate-600: #51607c;
  --slate-500: #6b7896;
  --slate-400: #9aa6c0;
  --line: #e8edf7;          /* hairline borders */
  --line-soft: #f0f3fa;

  /* Effects — soft & elegant */
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-xs: 0 1px 2px rgba(22, 38, 107, .04);
  --shadow-sm: 0 6px 18px -10px rgba(22, 38, 107, .14);
  --shadow: 0 18px 44px -22px rgba(22, 38, 107, .20);
  --shadow-lg: 0 34px 70px -34px rgba(22, 38, 107, .26);
  --ring: 0 0 0 4px rgba(47, 107, 240, .16);

  --grad-soft: linear-gradient(160deg, #f4f8ff 0%, #eaf1ff 100%);
  --grad-accent: linear-gradient(120deg, #f2632c, #ff8a55);

  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-display: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* animatable ambient color (so the tint transitions smoothly & reliably) */
@property --amb { syntax: "<color>"; inherits: true; initial-value: #46c6f5; }

/* ----------  Reset / base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--slate-600);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }
::selection { background: var(--blue); color: #fff; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.14; letter-spacing: -.012em; color: var(--navy); }

/* ----------  Layout helpers  ---------- */
.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .76rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--blue-700);
  padding: .42rem .9rem; border-radius: 100px;
  background: var(--blue-50); border: 1px solid #dfe9ff;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.section-head { max-width: 720px; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }
.section-head.center { margin-inline: auto; }
.section-title { font-size: clamp(2rem, 4.2vw, 3rem); margin: 1.1rem 0 1rem; font-weight: 400; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--slate-600); line-height: 1.7; }
.text-orange { color: var(--orange); }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 600; font-size: .96rem; letter-spacing: .005em;
  padding: .85rem 1.5rem; border-radius: 100px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s, color .22s, border-color .22s;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--grad-accent); color: #fff; box-shadow: 0 12px 26px -12px rgba(238,90,36,.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -12px rgba(238,90,36,.6); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #1b2f80; box-shadow: var(--shadow-sm); }
.btn-ghost, .btn-outline { background: #fff; color: var(--navy); border: 1px solid var(--line); box-shadow: var(--shadow-xs); }
.btn-ghost:hover, .btn-outline:hover { border-color: var(--blue-300); color: var(--blue-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--blue-700); }
.link-arrow svg { transition: transform .22s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ====================================================================
   HEADER / NAV — white, light
   ==================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -22px rgba(22,38,107,.35); }
.nav { display: flex; align-items: center; gap: 1.4rem; height: 76px; }
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.brand .badge-pl { font-size: .6rem; font-weight: 700; letter-spacing: .16em; color: var(--orange);
  border: 1px solid #f3c3ad; background: #fff5f0; border-radius: 100px; padding: .18rem .5rem; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: .15rem; margin-left: auto; }
.nav-link {
  position: relative; font-weight: 500; font-size: .95rem; color: var(--slate-600);
  padding: .55rem .8rem; border-radius: 10px; transition: color .2s, background .2s;
  display: inline-flex; align-items: center; gap: .3rem;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--navy); background: var(--bg-soft); }
.nav-link.is-accent { color: var(--blue-700); }
.nav-link .chev { width: 14px; height: 14px; transition: transform .25s; opacity: .55; }
.has-mega:hover .chev { transform: rotate(180deg); }

.has-mega { position: relative; }
.mega {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(640px, 86vw); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: .9rem; opacity: 0; visibility: hidden; transition: .26s var(--ease);
  display: grid; grid-template-columns: 1fr 1fr; gap: .3rem;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.mega-item { display: flex; gap: .8rem; padding: .8rem; border-radius: var(--radius); transition: background .2s; }
.mega-item:hover { background: var(--bg-soft); }
.mega-item .ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-700); }
.mega-item.is-featured .ic { background: var(--navy); color: #fff; }
.mega-item h4 { font-size: .96rem; color: var(--navy); margin-bottom: .12rem; font-weight: 600; }
.mega-item p { font-size: .82rem; color: var(--slate-500); line-height: 1.4; }
.mega-tag { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }

.nav-cta { margin-left: .5rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; margin-left: auto; place-items: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); position: relative; transition: .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--navy); transition: .3s; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ====================================================================
   HERO — light, airy
   ==================================================================== */
.hero { position: relative; padding-top: 150px; padding-bottom: clamp(3rem,7vw,6rem); overflow: hidden;
  background:
    radial-gradient(60% 60% at 82% 12%, #eaf2ff 0%, transparent 60%),
    radial-gradient(50% 55% at 12% 95%, #fff1ea 0%, transparent 60%),
    linear-gradient(180deg, #ffffff, #fafcff);
  isolation: isolate; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .6;
  background-image: radial-gradient(rgba(22,38,107,.05) 1px, transparent 1px);
  background-size: 28px 28px; mask-image: linear-gradient(180deg, #000 20%, transparent 90%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem,4vw,4rem); align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue-700);
  padding: .42rem .9rem; border-radius: 100px; background: var(--blue-50); border: 1px solid #dfe9ff; }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero h1 { color: var(--navy); font-size: clamp(2.4rem, 5.2vw, 4rem); margin: 1.3rem 0 1.2rem; font-weight: 300; letter-spacing: -.02em; }
.hero h1 .hl { position: relative; white-space: nowrap; color: var(--blue-700); }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .12em;
  background: var(--grad-accent); border-radius: 3px; z-index: -1; opacity: .85; }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--slate-600); max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.8rem; margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.hero-meta .num { font-family: var(--font-display); font-size: 1.85rem; font-weight: 600; color: var(--navy); line-height: 1; }
.hero-meta .num .u { font-size: .85rem; color: var(--blue-700); margin-left: .15rem; font-weight: 600; }
.hero-meta .lbl { font-size: .82rem; color: var(--slate-500); margin-top: .4rem; }

.hero-visual { position: relative; }
.hero-card { position: relative; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: #fff; }
.hero-card img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.hero-card .glass-tag {
  position: absolute; display: flex; align-items: center; gap: .6rem; padding: .65rem .9rem;
  border-radius: 14px; background: rgba(255,255,255,.82); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.9); color: var(--navy); font-size: .85rem; font-weight: 600;
  box-shadow: var(--shadow); }
.glass-tag .ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--grad-accent); color: #fff; }
.glass-tag b { font-family: var(--font-display); }
.glass-tag.tl { top: 16px; left: 16px; } .glass-tag.br { bottom: 16px; right: 16px; }
.scroll-cue { display: inline-flex; align-items: center; gap: .5rem; margin-top: 2.4rem; color: var(--slate-400); font-size: .82rem; }
.scroll-cue .mouse { width: 22px; height: 34px; border: 2px solid var(--slate-400); border-radius: 12px; position: relative; }
.scroll-cue .mouse::before { content:""; position:absolute; top:6px; left:50%; transform:translateX(-50%); width:3px; height:7px; background: var(--blue); border-radius:3px; animation: wheel 1.6s infinite; }
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0;transform:translate(-50%,10px)} }

/* ----------  Trust bar — light  ---------- */
.trust { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.2rem 0; }
.trust .container { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.trust .t-item { display: inline-flex; align-items: center; gap: .5rem; color: var(--slate-600); font-size: .9rem; font-weight: 500; }
.trust .t-item b { color: var(--navy); }
.trust .t-item svg { color: var(--blue); width: 19px; height: 19px; flex-shrink: 0; }
.trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--slate-400); opacity: .5; }

/* ====================================================================
   BENTO / CATEGORY CARDS — light
   ==================================================================== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.cat-card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem; background: #fff; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  min-height: 230px; display: flex; flex-direction: column; box-shadow: var(--shadow-xs);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #dde6f6; }
.cat-card .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-700); margin-bottom: 1.1rem; transition: .3s; }
.cat-card:hover .ic { transform: scale(1.05) rotate(-3deg); }
.cat-card h3 { font-size: 1.18rem; margin-bottom: .45rem; font-weight: 600; }
.cat-card p { color: var(--slate-500); font-size: .93rem; flex-grow: 1; line-height: 1.6; }
.cat-card .more { margin-top: 1.1rem; font-weight: 600; color: var(--blue-700); font-size: .9rem; display: inline-flex; gap: .4rem; align-items: center; }
.cat-card.featured { background: var(--grad-soft); border-color: #dbe7ff; }
.cat-card.featured .ic { background: var(--navy); color: #fff; }
.cat-card .tag { position: absolute; top: 1.3rem; right: 1.3rem; font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .28rem .6rem; border-radius: 100px;
  background: var(--grad-accent); color: #fff; }

/* ====================================================================
   FEATURE / ADVANTAGES — light
   ==================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.feature {
  padding: 1.8rem; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; position: relative; overflow: hidden; box-shadow: var(--shadow-xs);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dde6f6; }
.feature .ic { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-accent); color: #fff; margin-bottom: 1.2rem; box-shadow: 0 10px 22px -12px rgba(238,90,36,.5); }
.feature h3 { font-size: 1.1rem; margin-bottom: .5rem; font-weight: 600; }
.feature p { color: var(--slate-500); font-size: .93rem; line-height: 1.65; }

/* ====================================================================
   PRODUCT SHOWCASE — DewiLux + ambient demo (light stage)
   ==================================================================== */
.showcase { position: relative; overflow: hidden; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.stage {
  position: relative; border-radius: var(--radius-xl); padding: clamp(1.5rem,4vw,2.8rem);
  background: var(--grad-soft); border: 1px solid #dfe8fb; box-shadow: var(--shadow); overflow: hidden; isolation: isolate;
  transition: opacity .7s var(--ease), transform .7s var(--ease), --amb .55s var(--ease);
}
.stage .ambient-glow {
  position: absolute; inset: -15% -10% auto -10%; height: 75%; z-index: -1;
  background: radial-gradient(50% 70% at 50% 30%, var(--amb, #46c6f5), transparent 70%);
  opacity: .35; filter: blur(24px); transition: background .5s, opacity .5s;
}
.stage img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-lg); }
/* photo + full-image ambient color overlay */
.stage .stage-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); isolation: isolate; }
.stage .stage-photo img { width: 100%; display: block; border-radius: 0; box-shadow: none; aspect-ratio: 16/11; object-fit: cover; }
.stage .ambient-tint { position: absolute; inset: 0; z-index: 2; background-color: var(--amb, #46c6f5);
  mix-blend-mode: color; opacity: .9; transition: opacity .5s; pointer-events: none; }
.stage .ambient-tint::after { content: ""; position: absolute; inset: 0; background-color: var(--amb, #46c6f5);
  mix-blend-mode: multiply; opacity: .35; }
.stage .stat-chip { position: absolute; padding: .55rem .85rem; border-radius: 12px;
  background: rgba(255,255,255,.86); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.9);
  color: var(--slate-600); font-size: .78rem; box-shadow: var(--shadow-sm); font-weight: 500; }
.stage .stat-chip b { font-family: var(--font-display); font-size: 1.05rem; display: block; color: var(--navy); }
.ambient-control { margin-top: 1.4rem; }
.ambient-control .lbl { display: flex; align-items: center; gap: .5rem; color: var(--slate-600); font-size: .82rem; margin-bottom: .7rem; font-weight: 500; }
.swatches { display: flex; flex-wrap: wrap; gap: .5rem; }
.swatch { width: 30px; height: 30px; border-radius: 9px; border: 2px solid #fff; cursor: pointer; transition: transform .2s, box-shadow .2s; box-shadow: 0 0 0 1px var(--line); }
.swatch:hover { transform: scale(1.12); }
.swatch.active { transform: scale(1.12); box-shadow: 0 0 0 2px var(--blue); }

.showcase-body h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: .9rem 0 1rem; font-weight: 400; }
.showcase-body .lead { margin-bottom: 1.5rem; }
.spec-pills { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.6rem; }
.spec-pill { display: inline-flex; align-items: center; gap: .45rem; font-size: .84rem; font-weight: 600;
  padding: .48rem .85rem; border-radius: 100px; background: #fff; border: 1px solid var(--line); color: var(--navy); box-shadow: var(--shadow-xs); }
.spec-pill svg { color: var(--blue-700); width: 16px; height: 16px; }
.bullet-list { display: grid; gap: .85rem; margin-bottom: 1.8rem; }
.bullet-list li { display: flex; gap: .7rem; color: var(--slate-600); }
.bullet-list .tick { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--blue-50);
  color: var(--blue-700); display: grid; place-items: center; margin-top: .12rem; }
.bullet-list b { color: var(--navy); }

/* ====================================================================
   SPECS — light section with model toggle
   ==================================================================== */
.specs { background: var(--bg-soft); }
.toggle { display: inline-flex; padding: .3rem; border-radius: 100px; background: #fff; border: 1px solid var(--line); gap: .25rem; box-shadow: var(--shadow-xs); }
.toggle button { padding: .6rem 1.3rem; border-radius: 100px; color: var(--slate-600); font-weight: 600; font-size: .9rem; transition: .25s; }
.toggle button.active { background: var(--navy); color: #fff; }
.spec-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; margin-top: 2.4rem; }
.spec-hero-card { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line); background: #fff; position: sticky; top: 100px; box-shadow: var(--shadow); }
.spec-hero-card img { width: 100%; }
.spec-hero-card .cap { padding: 1.3rem 1.4rem; }
.spec-hero-card .cap .model { font-family: var(--font-display); font-size: 1.45rem; color: var(--navy); font-weight: 600; }
.spec-hero-card .cap .desc { color: var(--blue-700); font-size: .9rem; font-weight: 500; }
.spec-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.4rem; }
.spec-table caption { text-align: left; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  font-size: .7rem; color: var(--blue-700); padding: 1.1rem 1.2rem .2rem; caption-side: top; }
.spec-table th, .spec-table td { text-align: left; padding: .8rem 1.2rem; border-top: 1px solid var(--line); font-size: .93rem; }
.spec-table tr:first-child th, .spec-table tr:first-child td { border-top: none; }
.spec-table th { color: var(--slate-600); font-weight: 500; }
.spec-table td { color: var(--navy); font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }
.spec-table td .u { color: var(--slate-400); font-weight: 400; font-size: .85em; margin-left: .2rem; }

/* ====================================================================
   STATS strip
   ==================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; padding: 1.8rem 1rem; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-xs); }
.stat .num { font-family: var(--font-display); font-size: clamp(2.1rem,4vw,2.8rem); font-weight: 600; color: var(--navy); line-height: 1; }
.stat .num .u { color: var(--orange); font-size: .5em; }
.stat .lbl { color: var(--slate-500); font-size: .88rem; margin-top: .6rem; }

/* ====================================================================
   APPLICATIONS
   ==================================================================== */
.app-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.app { padding: 1.6rem; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; transition: .3s var(--ease); box-shadow: var(--shadow-xs); }
.app:hover { background: var(--blue-50); border-color: #d6e3fb; transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.app .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--blue-700); display: grid; place-items: center; margin-bottom: 1rem; transition: .3s; }
.app:hover .ic { background: #fff; }
.app h4 { font-size: 1.02rem; margin-bottom: .35rem; font-weight: 600; }
.app p { font-size: .86rem; color: var(--slate-500); line-height: 1.55; }

/* ====================================================================
   CTA BAND — light & elegant
   ==================================================================== */
.band { position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: var(--grad-soft); border: 1px solid #dbe7ff; padding: clamp(2.4rem,5vw,4rem); }
.band::before { content:""; position:absolute; right:-6%; top:-40%; width:340px; height:340px; border-radius:50%;
  background: radial-gradient(circle, rgba(238,90,36,.10), transparent 65%); }
.band-grid { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: center; }
.band h2 { color: var(--navy); font-size: clamp(1.7rem,3.2vw,2.4rem); margin-bottom: .8rem; font-weight: 400; }
.band p { color: var(--slate-600); font-size: 1.05rem; }
.band .actions { display: flex; flex-direction: column; gap: .7rem; }
.band .actions .btn { width: 100%; }
.band .contact-line { display: flex; align-items: center; gap: .55rem; color: var(--navy); font-weight: 600; margin-top: .5rem; }
.band .contact-line svg { color: var(--blue); }

/* Distributor about */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.about-media { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.about-media > img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.about-media .float-badge img { width: auto; height: 22px; aspect-ratio: auto; object-fit: contain; max-width: 140px; }
.about-media .float-badge { position: absolute; bottom: 18px; left: 18px; right: 18px;
  display: flex; gap: 1rem; align-items: center; padding: 1.05rem 1.25rem; border-radius: var(--radius);
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px); box-shadow: var(--shadow); }
.about-media .float-badge .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.about-media .float-badge b { display: block; font-family: var(--font-display); color: var(--navy); }
.about-media .float-badge span { font-size: .85rem; color: var(--slate-500); }
.check-list { display: grid; gap: 1rem; margin: 1.6rem 0; }
.check-list li { display: flex; gap: .8rem; }
.check-list .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: #fff4ef; color: var(--orange); display: grid; place-items: center; margin-top: .1rem; }
.check-list b { color: var(--navy); }
.check-list span { color: var(--slate-600); }

/* ====================================================================
   DOWNLOADS
   ==================================================================== */
.dl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.dl-card { display: flex; gap: 1rem; align-items: center; padding: 1.4rem; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: #fff; transition: .3s var(--ease); box-shadow: var(--shadow-xs); }
.dl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-300); }
.dl-card .ic { flex-shrink: 0; width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: var(--blue-50); border: 1px solid #e1ebff; color: var(--orange); }
.dl-card h4 { font-size: 1rem; color: var(--navy); font-weight: 600; }
.dl-card span { font-size: .82rem; color: var(--slate-500); }
.dl-card .arrow { margin-left: auto; color: var(--blue-700); }

/* ====================================================================
   CONTACT
   ==================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem,4vw,3.5rem); }
.contact-info { display: grid; gap: 1rem; align-content: start; }
.contact-card { display: flex; gap: 1rem; padding: 1.3rem; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; align-items: flex-start; box-shadow: var(--shadow-xs); }
.contact-card .ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--blue-50); color: var(--blue-700); display: grid; place-items: center; }
.contact-card .k { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400); font-weight: 600; }
.contact-card .v { font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.contact-card .v a:hover { color: var(--blue-700); }
.form { padding: clamp(1.5rem,3vw,2.2rem); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .45rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .82rem 1rem; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg-soft); font: inherit; color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); background: #fff; box-shadow: var(--ring); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.form .consent { display: flex; gap: .6rem; font-size: .82rem; color: var(--slate-500); margin-bottom: 1.2rem; }
.form .consent input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--blue); }
.form-note { font-size: .85rem; color: var(--slate-500); margin-top: .8rem; text-align: center; }

/* ====================================================================
   FOOTER — light
   ==================================================================== */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding-top: clamp(3.5rem,6vw,5rem); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2rem; padding-bottom: 2.6rem; }
.footer .f-brand img { height: 34px; }
.footer .f-brand p { margin-top: 1.1rem; font-size: .92rem; max-width: 32ch; color: var(--slate-500); line-height: 1.65; }
.footer h5 { color: var(--navy); font-family: var(--font-display); font-size: .98rem; margin-bottom: 1.1rem; font-weight: 600; }
.footer ul { display: grid; gap: .65rem; }
.footer a { color: var(--slate-600); font-size: .92rem; transition: color .2s; }
.footer a:hover { color: var(--blue-700); }
.footer .f-contact li { display: flex; gap: .6rem; font-size: .92rem; align-items: flex-start; color: var(--slate-600); }
.footer .f-contact svg { color: var(--blue); flex-shrink: 0; margin-top: .2rem; }
.f-distributor { margin-top: 1.3rem; }
.f-distributor span { display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-400); font-weight: 700; margin-bottom: .55rem; }
.f-distributor img { height: 30px; width: auto; display: block; }
.f-social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.f-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; color: var(--slate-600); transition: .25s; }
.f-social a:hover { background: var(--blue); border-color: transparent; color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--line); padding: 1.5rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: var(--slate-500); }
.footer-bottom a:hover { color: var(--blue-700); }
.footer-bottom .badge { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .8rem; border-radius: 100px; border: 1px solid var(--line); background: #fff; color: var(--slate-600); }

/* ====================================================================
   Reveal animations / utilities
   ==================================================================== */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .07s; }
[data-reveal][data-delay="2"] { transition-delay: .14s; }
[data-reveal][data-delay="3"] { transition-delay: .21s; }
[data-reveal][data-delay="4"] { transition-delay: .28s; }
.hidden { display: none !important; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }

/* page hero (subpages) — light */
.page-hero { padding: 140px 0 clamp(2.5rem,5vw,4rem); position: relative; overflow: hidden;
  background:
    radial-gradient(55% 60% at 85% 5%, #eaf2ff 0%, transparent 60%),
    radial-gradient(45% 55% at 5% 100%, #fff1ea 0%, transparent 60%),
    linear-gradient(180deg, #ffffff, #fafcff);
  border-bottom: 1px solid var(--line); }
.page-hero::after { content:""; position:absolute; inset:0; opacity:.5; background-image: radial-gradient(rgba(22,38,107,.05) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(180deg,#000,transparent); }
.crumbs { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: var(--slate-500); margin-bottom: 1.2rem; position: relative; }
.crumbs a:hover { color: var(--blue-700); } .crumbs .sep { opacity: .5; }
.page-hero h1 { color: var(--navy); font-size: clamp(2.2rem,5vw,3.5rem); max-width: 20ch; position: relative; font-weight: 300; }
.page-hero p { color: var(--slate-600); max-width: 62ch; margin-top: 1rem; font-size: 1.1rem; position: relative; }

/* ====================================================================
   PRODUCT PAGE — split rows, comparison, configs, FAQ
   ==================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split + .split { margin-top: clamp(3rem,6vw,5.5rem); }
.split .media { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; border: 1px solid var(--line); }
.split .media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split.reverse .media { order: 2; }
.split h3 { font-size: clamp(1.5rem,2.6vw,2rem); margin-bottom: .9rem; font-weight: 600; }
.split p { color: var(--slate-600); }
.kpi-strip { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 1.4rem; }
.kpi-strip .kpi b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); line-height: 1; }
.kpi-strip .kpi span { font-size: .82rem; color: var(--slate-500); }
.media-badge { position: absolute; top: 16px; left: 16px; padding: .45rem .85rem; border-radius: 100px; background: var(--grad-accent); color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .04em; box-shadow: var(--shadow); }

/* configs */
.config-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.config { padding: 1.7rem; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; transition: .3s var(--ease); box-shadow: var(--shadow-xs); }
.config:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-300); }
.config .ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1rem; background: var(--navy); color: #fff; }
.config h4 { font-size: 1.1rem; margin-bottom: .4rem; font-weight: 600; }
.config p { font-size: .92rem; color: var(--slate-500); line-height: 1.6; }

/* full comparison table */
.cmp-wrap { border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.cmp { width: 100%; border-collapse: collapse; }
.cmp thead th { padding: 1.3rem 1.2rem; text-align: left; background: var(--bg-soft); font-family: var(--font-display); border-bottom: 1px solid var(--line); }
.cmp thead th:first-child { width: 42%; }
.cmp thead th .m { font-size: 1.1rem; color: var(--navy); display: block; font-weight: 600; }
.cmp thead th .s { font-size: .8rem; color: var(--slate-500); font-weight: 500; font-family: var(--font-body); }
.cmp thead th.hot { background: var(--grad-soft); }
.cmp tbody th { text-align: left; font-weight: 500; color: var(--slate-600); padding: .9rem 1.2rem; border-top: 1px solid var(--line); }
.cmp tbody td { padding: .9rem 1.2rem; border-top: 1px solid var(--line); font-weight: 600; color: var(--navy); font-variant-numeric: tabular-nums; }
.cmp tbody tr:nth-child(even) th, .cmp tbody tr:nth-child(even) td { background: #fbfcff; }
.cmp tbody td.hot { background: rgba(47,107,240,.05); }
.cmp .u { color: var(--slate-400); font-weight: 400; font-size: .85em; margin-left: .15rem; }

/* FAQ accordion */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; overflow: hidden; transition: border-color .25s, box-shadow .25s; box-shadow: var(--shadow-xs); }
.faq details[open] { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; font-weight: 600; color: var(--navy); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; background: var(--blue-50); color: var(--blue-700); display: grid; place-items: center; transition: transform .3s, background .3s; }
.faq details[open] summary .ic { transform: rotate(45deg); background: var(--grad-accent); color: #fff; }
.faq .ans { padding: 0 1.3rem 1.2rem; color: var(--slate-600); }

/* ====================================================================
   GALLERY + MODELS TABLE
   ==================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery a { display: block; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-xs); background: #fff; transition: transform .3s var(--ease), box-shadow .3s; position: relative; }
.gallery a::after { content: attr(data-cap); position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem 1rem .7rem;
  font-size: .8rem; font-weight: 500; color: #fff; background: linear-gradient(0deg, rgba(16,26,55,.78), transparent);
  opacity: 0; transition: opacity .3s; }
.gallery a:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-300); }
.gallery a:hover::after { opacity: 1; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center; display: block; background: #f3f6fc; }
.gallery a.contain img { object-fit: contain; padding: .5rem; }

.models-wrap { border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.models { width: 100%; border-collapse: collapse; }
.models thead th { text-align: left; background: var(--bg-soft); color: var(--navy); font-weight: 600;
  font-family: var(--font-display); padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); font-size: .9rem; }
.models td { padding: .9rem 1.2rem; border-top: 1px solid var(--line); font-size: .92rem; color: var(--slate-600); vertical-align: middle; }
.models tbody tr:hover td { background: #fbfcff; }
.models .name { color: var(--navy); font-weight: 600; }
.models .code { font-variant-numeric: tabular-nums; color: var(--slate-600); font-size: .86rem; line-height: 1.5; }
.opt-badges { display: flex; flex-wrap: wrap; gap: .35rem; }
.opt-badge { font-size: .68rem; font-weight: 700; letter-spacing: .03em; padding: .18rem .5rem; border-radius: 100px;
  background: var(--blue-50); color: var(--blue-700); border: 1px solid #dfe9ff; white-space: nowrap; }
.opt-badge.cam { background: #fff4ef; color: var(--orange); border-color: #f3c3ad; }
.legend { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 1.3rem; font-size: .86rem; color: var(--slate-500); }
.legend b { color: var(--navy); }

/* model schematic cards — full range of drawings */
.model-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.model-card { border: 1px solid var(--line); border-radius: 24px; background: #fff; overflow: hidden;
  box-shadow: var(--shadow-xs); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.model-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--blue-300); }
.model-card .draw { background: var(--bg-soft); padding: .9rem 1rem; border-bottom: 1px solid var(--line); }
.model-card .draw img { width: 100%; aspect-ratio: 16/9; object-fit: contain; }
.model-card .draw a.zoom { display: block; cursor: zoom-in; position: relative; }
.model-card .draw a.zoom::after { content: "⤢"; position: absolute; right: 4px; bottom: 2px; font-size: .85rem; color: var(--slate-400); opacity: 0; transition: opacity .2s; }
.model-card:hover .draw a.zoom::after { opacity: 1; }
.model-card .meta { padding: 1rem 1.2rem 1.25rem; }
.model-card .nr { font-size: .72rem; font-weight: 700; letter-spacing: .05em; color: var(--blue-700); font-variant-numeric: tabular-nums; }
.model-card h4 { font-size: 1.05rem; margin: .2rem 0 .35rem; font-weight: 500; }
.model-card .set { font-size: .85rem; color: var(--slate-500); line-height: 1.5; }

/* big rounded-corner block motif (inspired by dewimed.de) */
.section.curved { border-radius: 84px 0 84px 0; }
.hero-card { border-radius: 30px 30px 30px 72px; }

/* full product list (accordion) */
.prod-acc { display: grid; gap: .7rem; }
.prod-acc h3.grp-title { font-size: 1.1rem; color: var(--navy); font-weight: 600; margin: 1.6rem 0 .2rem; }
.prod-acc details { border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; overflow: hidden; box-shadow: var(--shadow-xs); transition: border-color .25s, box-shadow .25s; }
.prod-acc details[open] { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.prod-acc summary { list-style: none; cursor: pointer; padding: 1rem 1.2rem; font-weight: 500; color: var(--navy); display: flex; align-items: center; gap: .8rem; }
.prod-acc summary::-webkit-details-marker { display: none; }
.prod-acc summary .cnt { font-size: .74rem; color: var(--slate-500); font-weight: 600; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 100px; padding: .12rem .6rem; }
.prod-acc summary .chev { width: 18px; height: 18px; transition: transform .3s; color: var(--slate-400); margin-left: auto; flex-shrink: 0; }
.prod-acc details[open] summary .chev { transform: rotate(180deg); }
.prod-list2 { list-style: none; margin: 0; padding: 0 1.2rem 1.2rem; columns: 2; column-gap: 2.4rem; }
.prod-list2 li { break-inside: avoid; padding: .42rem 0; border-top: 1px solid var(--line-soft); font-size: .9rem; color: var(--slate-600); line-height: 1.45; }
.prod-list2 .sku { font-variant-numeric: tabular-nums; color: var(--blue-700); font-weight: 600; font-size: .82rem; margin-right: .5rem; white-space: nowrap; }
@media (max-width: 680px) { .prod-list2 { columns: 1; } }

/* dental visual product grid */
.cat-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 2.4rem; }
.cat-nav a { font-size: .82rem; padding: .42rem .85rem; border: 1px solid var(--line); border-radius: 100px; background: #fff; color: var(--blue-700); font-weight: 500; transition: background .2s, border-color .2s; display: inline-flex; gap: .4rem; align-items: center; }
.cat-nav a:hover { background: var(--bg-soft); border-color: var(--blue-300); }
.cat-nav a b { font-variant-numeric: tabular-nums; color: var(--slate-400); font-weight: 600; }
.dent-cat { margin: 0 0 3rem; scroll-margin-top: 92px; }
.dent-cat .cat-head { display: flex; align-items: baseline; gap: .7rem; margin: 0 0 .4rem; padding-bottom: .7rem; border-bottom: 1px solid var(--line); }
.dent-cat .cat-head h2 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 500; margin: 0; color: var(--navy); }
.dent-cat .cat-head .cnt { font-size: .78rem; color: var(--slate-500); font-weight: 600; white-space: nowrap; }
.dent-cat .cat-intro { color: var(--slate-500); font-size: .92rem; margin: 0 0 1.3rem; max-width: 70ch; }
.prod-photos { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 1rem; }
.prod-card { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s; }
.prod-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--blue-300); }
.prod-card .ph { background: var(--bg-soft); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: .7rem; cursor: zoom-in; }
.prod-card .ph img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.prod-card .ph.nophoto { cursor: default; color: var(--slate-400); font-size: .72rem; text-align: center; padding: 1rem; }
.prod-card .pc-meta { padding: .6rem .8rem .85rem; display: flex; flex-direction: column; gap: .18rem; border-top: 1px solid var(--line); }
.prod-card .pc-sku { font-size: .72rem; font-weight: 700; color: var(--blue-700); font-variant-numeric: tabular-nums; letter-spacing: .02em; }
.prod-card .pc-name { font-size: .8rem; color: var(--slate-600); line-height: 1.35; }
@media (max-width: 560px) { .prod-photos { grid-template-columns: repeat(2, 1fr); gap: .7rem; } }
.prod-acc .prod-photos { padding: .3rem 1.2rem 1.3rem; }
.prod-acc details[open] summary { border-bottom: 1px solid var(--line); }
.stoma-link { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-xs); transition: border-color .25s, box-shadow .25s, transform .2s; margin-top: .4rem; }
.stoma-link:hover { border-color: var(--blue-300); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.stoma-link .ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; color: var(--blue-700); }
.stoma-link .ic svg { width: 24px; height: 24px; }
.stoma-link h4 { margin: 0 0 .2rem; font-size: 1.02rem; font-weight: 500; color: var(--navy); }
.stoma-link p { margin: 0; font-size: .85rem; color: var(--slate-500); line-height: 1.45; }
.stoma-link .arrow { flex-shrink: 0; color: var(--blue-600); margin-left: auto; }

/* lightbox (image zoom overlay) */
.gallery a, .img-strip a, .slider a { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(16,26,55,.93); display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.open { display: flex; }
body.lb-lock { overflow: hidden; }
.lightbox .lb-fig { margin: 0; max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lightbox img { max-width: 92vw; max-height: 80vh; border-radius: 14px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); background: #fff; }
.lightbox figcaption { color: #fff; font-size: .95rem; text-align: center; font-weight: 500; }
.lightbox button { color: #fff; background: rgba(255,255,255,.12); backdrop-filter: blur(4px); display: grid; place-items: center; transition: background .2s, transform .2s; }
.lightbox button:hover { background: rgba(255,255,255,.24); }
.lightbox .lb-close { position: absolute; top: 18px; right: 22px; font-size: 1.7rem; line-height: 1; width: 46px; height: 46px; border-radius: 12px; }
.lightbox .lb-prev, .lightbox .lb-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2rem; width: 56px; height: 56px; border-radius: 50%; }
.lightbox .lb-prev { left: 20px; } .lightbox .lb-next { right: 20px; }
@media (max-width:560px){ .lightbox .lb-prev,.lightbox .lb-next{ width:44px;height:44px;font-size:1.6rem; left:8px;} .lightbox .lb-next{right:8px;} }

/* horizontal product slider */
.slider-wrap { position: relative; }
.slider { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: .5rem; -ms-overflow-style: none; scrollbar-width: thin; }
.slider::-webkit-scrollbar { height: 6px; } .slider::-webkit-scrollbar-thumb { background: var(--line); border-radius: 100px; }
.slider > * { scroll-snap-align: start; }
.slider a { display: block; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-xs); transition: transform .3s var(--ease), box-shadow .3s; }
.slider a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.slider img { width: 100%; aspect-ratio: 4/3; object-fit: contain; padding: .6rem; background: #fff; display: block; }
.slider-nav { position: absolute; top: 38%; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; place-items: center; color: var(--navy); z-index: 3; transition: .2s; }
.slider-nav:hover { background: var(--navy); color: #fff; }
.slider-nav.prev { left: -10px; } .slider-nav.next { right: -10px; }
@media (max-width: 720px){ .slider-nav { display: none; } .slider { grid-auto-columns: minmax(160px, 70%); } }

/* product subcategory blocks (migrated catalogue) */
.subcat + .subcat { margin-top: clamp(3rem, 6vw, 5rem); }
.subcat .split { align-items: start; }
.prod-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.prod-tags .lbl { width: 100%; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-400); margin-bottom: .1rem; }
.prod-tag { font-size: .85rem; font-weight: 500; padding: .42rem .85rem; border-radius: 100px; background: #fff; border: 1px solid var(--line); color: var(--navy); box-shadow: var(--shadow-xs); }
.prod-tag::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); margin-right: .5rem; vertical-align: middle; }
.subcat .feat-list { display: grid; gap: 1rem; margin: 0; }
.subcat .feat-list li { display: flex; gap: .8rem; }
.subcat .feat-list .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--grad-accent); color: #fff; display: grid; place-items: center; margin-top: .1rem; box-shadow: 0 8px 18px -10px rgba(238,90,36,.5); }
.subcat .feat-list b { color: var(--navy); display: block; font-weight: 500; }
.subcat .feat-list span.t { color: var(--slate-600); font-size: .92rem; }
.img-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-top: 1.6rem; }
.img-strip a { display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-xs); transition: transform .3s var(--ease), box-shadow .3s; }
.img-strip a:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.img-strip img { width: 100%; aspect-ratio: 1/1; object-fit: contain; padding: .5rem; background: #fff; }
@media (max-width: 920px){ .img-strip { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px){ .img-strip { grid-template-columns: repeat(2,1fr); } }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 560px; }
  .spec-layout { grid-template-columns: 1fr; }
  .spec-hero-card { position: relative; top: 0; max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav-menu { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 1rem 1.2rem 1.6rem; gap: .2rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .4s var(--ease); height: auto; max-height: calc(100vh - 76px); overflow-y: auto; }
  body.menu-open .nav-menu { transform: translateY(0); }
  .nav-toggle { display: grid; }
  .nav-cta { margin: .6rem 0 0; }
  .nav-cta .btn { width: 100%; }
  .mega { position: static; transform: none; opacity: 1; visibility: visible; width: 100%; box-shadow: none;
    border: none; grid-template-columns: 1fr; padding: .3rem 0 .6rem; }
  .has-mega:hover .mega, .has-mega:focus-within .mega { transform: none; }
  .nav-link .chev { display: none; }
  .bento, .feature-grid, .showcase-grid, .about-grid, .contact-grid, .band-grid, .dl-grid, .split, .config-grid { grid-template-columns: 1fr; }
  .stats, .app-grid { grid-template-columns: repeat(2,1fr); }
  .showcase-body { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .split.reverse .media { order: -1; }
  .cmp thead th { padding: 1rem .8rem; } .cmp tbody th, .cmp tbody td { padding: .8rem; font-size: .9rem; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .model-cards { grid-template-columns: repeat(2,1fr); }
  .models-wrap { overflow-x: auto; } .models { min-width: 580px; }
  .section.curved { border-radius: 44px 0 44px 0; }
}
@media (max-width: 560px) {
  .bento, .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.2rem; }
  .trust .container { gap: .8rem; }
  .trust .sep { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .model-cards { grid-template-columns: 1fr; }
}
