/* ---------- Tokens ---------- */
:root {
  --ink:        #0B1F33;
  --ink-2:      #1F2F44;
  --muted:      #5A6B80;
  --line:       #E3E9EF;
  --line-2:     #EEF2F6;
  --bg:         #FFFFFF;
  --bg-soft:    #F7FAFC;
  --bg-band:    #F0F5FA;
  --brand:      #0F4C81;    /* deep clinical blue */
  --brand-2:    #1E6FB3;
  --brand-ink:  #083055;
  --accent:     #1CA97A;    /* trust green */
  --warn:       #B4541A;
  --sale:       #B91C1C;
  --shadow:     0 1px 2px rgba(11,31,51,.04), 0 8px 24px rgba(11,31,51,.06);
  --shadow-sm:  0 1px 2px rgba(11,31,51,.06);
  --radius:     10px;
  --radius-lg:  14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
  font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 3.2vw, 3rem); line-height: 1.1; }
h2 { font-size: clamp(1.55rem, 2.2vw, 2rem); line-height: 1.2; }
h3 { font-size: 1.05rem; line-height: 1.3; font-weight: 600; font-family: 'Inter', sans-serif; }
h4 { font-size: .95rem; font-family: 'Inter', sans-serif; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .6em;
}
.eyebrow.light { color: #BCD6EE; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.lede { font-size: 1.075rem; color: var(--muted); max-width: 56ch; }
.section { padding: 72px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.section-head.centred { text-align: center; flex-direction: column; align-items: center; }
.section-head h2 { margin-bottom: 0; }
.section-link { color: var(--brand); font-weight: 600; font-size: .95rem; white-space: nowrap; }
.section-link:hover { color: var(--brand-ink); }

/* ---------- Concept banner ---------- */
.concept-banner {
  background: linear-gradient(90deg, #1F2937 0%, #0F4C81 100%);
  color: #fff;
  font-size: .82rem;
  padding: 8px 20px;
  text-align: center;
  letter-spacing: .01em;
}
.concept-banner strong { margin-right: 8px; letter-spacing: .06em; font-size: .72rem; text-transform: uppercase; background: rgba(255,255,255,.15); padding: 2px 8px; border-radius: 999px; }
.concept-banner span { opacity: .9; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
  white-space: nowrap;
}
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-ink); }
.btn-ghost { background: #fff; color: var(--brand); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); }
.btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------- Top notice ---------- */
.top-notice {
  background: #FFF6EC;
  border-bottom: 1px solid #F4E2C9;
  font-size: .85rem;
  color: #6B4A1A;
  padding: 10px 0;
}
.top-notice .wrap { display: flex; align-items: center; gap: 10px; justify-content: center; }
.top-notice a { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.top-notice .dot { width: 8px; height: 8px; border-radius: 50%; background: #D9891A; display: inline-block; }

/* ---------- Utility bar ---------- */
.util-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
}
.util-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.util-left .sep { margin: 0 8px; opacity: .5; }
.util-right { display: flex; gap: 20px; align-items: center; }
.util-right a { color: var(--ink-2); font-weight: 500; }
.util-right a:hover { color: var(--brand); }
.util-phone { display: inline-flex; align-items: center; gap: 6px; color: var(--brand) !important; font-weight: 600 !important; }

/* ---------- Header ---------- */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 18px 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; background: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Source Serif 4', serif; font-weight: 700; color: var(--brand-ink); font-size: 1.15rem; letter-spacing: -.01em; }
.brand-sub { color: var(--muted); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; margin-top: 3px; }

.search {
  display: flex; align-items: center; gap: 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 6px 6px 14px;
  max-width: 640px;
  width: 100%;
  justify-self: center;
}
.search:focus-within { border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(15,76,129,.08); }
.search svg { color: var(--muted); flex: none; }
.search input {
  border: 0; background: transparent; outline: none;
  flex: 1; padding: 10px; font-size: .95rem; color: var(--ink);
}
.search input::placeholder { color: #8895A6; }
.search button {
  border: 0; background: var(--brand); color: #fff;
  font-weight: 600; font-size: .9rem;
  padding: 10px 18px; border-radius: 7px;
}
.search button:hover { background: var(--brand-ink); }

.header-actions { display: flex; gap: 20px; align-items: center; }
.icon-link {
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--ink-2); font-size: .72rem; font-weight: 500;
  position: relative;
}
.icon-link:hover { color: var(--brand); }
.icon-link .badge {
  position: absolute; top: -4px; right: -8px;
  background: var(--brand); color: #fff;
  font-size: .65rem; font-weight: 600;
  min-width: 16px; height: 16px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* ---------- Primary nav ---------- */
.primary-nav { border-top: 1px solid var(--line); background: #fff; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.primary-nav ul { list-style: none; display: flex; gap: 4px; padding: 0; margin: 0; }
.primary-nav li a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 14px 12px;
  color: var(--ink-2); font-size: .9rem; font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.primary-nav li a:hover { color: var(--brand); border-color: var(--brand); }
.primary-nav li a.has-mega { color: var(--brand); font-weight: 600; }
.nav-sale { color: var(--sale) !important; font-weight: 600 !important; }
.nav-right { display: flex; gap: 16px; flex-shrink: 0; }
.nav-right a { font-size: .85rem; color: var(--muted); white-space: nowrap; }
.nav-right a:hover { color: var(--brand); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #F7FAFC 0%, #FFFFFF 100%);
  padding: 72px 0 88px;
  border-bottom: 1px solid var(--line-2);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy h1 { margin-top: 4px; }
.hero-ctas { display: flex; gap: 12px; margin: 26px 0 24px; flex-wrap: wrap; }
.hero-points {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 24px; flex-wrap: wrap;
  color: var(--ink-2); font-size: .92rem;
}
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points svg { color: var(--accent); }

.hero-visual { position: relative; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 4px 16px rgba(11,31,51,.12);
}
.hero-badge svg { color: var(--accent); flex: none; }
.hero-badge strong { display: block; font-size: .9rem; color: var(--ink); font-weight: 600; }
.hero-badge span { display: block; font-size: .78rem; color: var(--muted); letter-spacing: .02em; margin-top: 1px; }

.hero-stat {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hero-stat > div {
  padding: 18px 16px; text-align: center;
  border-right: 1px solid var(--line);
}
.hero-stat > div:last-child { border-right: 0; }
.hero-stat strong { display: block; font-family: 'Source Serif 4', serif; font-size: 1.35rem; color: var(--brand-ink); }
.hero-stat span { font-size: .78rem; color: var(--muted); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--bg-band);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 22px 0;
}
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-2); }
.trust-item svg { color: var(--brand); flex: none; margin-top: 2px; }
.trust-item strong { display: block; font-size: .95rem; font-weight: 600; }
.trust-item span { font-size: .83rem; color: var(--muted); display: block; margin-top: 2px; }

/* ---------- Categories ---------- */
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.cat-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.cat-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #F7FAFC;
  overflow: hidden;
}
.cat-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.cat-card:hover .cat-image img { transform: scale(1.04); }
.cat-body { padding: 20px 22px 22px; }
.cat-body h3 { color: var(--brand-ink); font-size: 1.1rem; font-family: 'Source Serif 4', serif; font-weight: 600; margin-bottom: 6px; }
.cat-body p { margin: 0 0 12px; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.cat-count { font-size: .8rem; color: var(--brand); font-weight: 600; letter-spacing: .02em; }
.cat-card:hover .cat-count { color: var(--brand-ink); }

/* ---------- Feature banner ---------- */
.feature-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.feature-bg { position: absolute; inset: 0; z-index: 0; }
.feature-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,48,85,.95) 0%, rgba(8,48,85,.85) 45%, rgba(8,48,85,.35) 80%, rgba(8,48,85,.1) 100%);
}
.feature-inner {
  position: relative; z-index: 1;
  padding: 80px 28px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.feature-copy { max-width: 560px; }
.feature-copy h2 { color: #fff; max-width: 22ch; }
.feature-copy p { color: rgba(255,255,255,.85); max-width: 56ch; margin: 0 0 24px; font-size: 1.02rem; }
.feature-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.feature-stats { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.feature-stats > div { display: flex; flex-direction: column; }
.feature-stats strong { font-family: 'Source Serif 4', serif; font-size: 1.8rem; color: #fff; font-weight: 700; line-height: 1; }
.feature-stats span { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 4px; letter-spacing: .02em; }

/* ---------- Products ---------- */
.prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.prod-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.prod-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow); }
.prod-media { position: relative; background: #F7FAFC; border-bottom: 1px solid var(--line-2); aspect-ratio: 1 / 1; overflow: hidden; }
.prod-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.prod-card:hover .prod-media img { transform: scale(1.04); }
.prod-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: #fff;
  font-size: .7rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px;
}
.prod-tag.tag-new { background: var(--accent); }
.prod-tag.tag-sale { background: var(--sale); }
.prod-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-brand { font-size: .72rem; font-weight: 600; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.prod-card h3 { font-size: .98rem; color: var(--ink); margin: 0; line-height: 1.35; }
.prod-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--line-2); }
.prod-price { font-weight: 700; color: var(--brand-ink); font-size: 1rem; }
.prod-price em { font-style: normal; font-weight: 500; color: var(--muted); font-size: .75rem; margin-left: 2px; }
.prod-price s { color: var(--muted); font-weight: 500; font-size: .85rem; margin-left: 4px; }
.prod-stock { font-size: .75rem; font-weight: 600; padding: 3px 8px; border-radius: 4px; }
.prod-stock.in-stock { background: #E6F4EE; color: #146C43; }
.prod-stock.low-stock { background: #FFF1E0; color: #9A5A18; }

/* ---------- Brands ---------- */
.brands { padding: 56px 0; background: var(--bg-soft); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.brand-row {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px;
  margin-top: 28px;
}
.brand-logo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 10px;
  text-align: center;
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-ink);
  letter-spacing: -.01em;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0;
  min-height: 60px;
}
.brand-logo span { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 600; }

/* ---------- Why DPS ---------- */
.why-inner {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 64px; align-items: start;
}
.why-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 18px; }
.why-list li { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.why-num {
  font-family: 'Source Serif 4', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--brand);
  background: #E9F0F6;
  width: 44px; height: 44px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
}
.why-list strong { display: block; font-size: 1rem; font-weight: 600; color: var(--ink); }
.why-list span { display: block; font-size: .92rem; color: var(--muted); margin-top: 2px; }

.why-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 140px; }
.why-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.why-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-portrait::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,48,85,.45) 100%);
  pointer-events: none;
}
.why-quote {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.why-quote blockquote {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 10px 0 18px;
  padding: 0;
  border: 0;
}
.why-quote cite { font-style: normal; display: block; border-top: 1px solid var(--line); padding-top: 12px; }
.why-quote cite strong { display: block; font-family: 'Inter', sans-serif; font-size: .92rem; }
.why-quote cite span { display: block; font-size: .8rem; color: var(--muted); margin-top: 2px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 72px 0;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,48,85,.92) 0%, rgba(15,76,129,.85) 50%, rgba(15,76,129,.55) 100%);
}
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
.cta-inner h2 { margin: 0 0 8px; color: #fff; max-width: 18ch; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.85); max-width: 48ch; font-size: 1.02rem; }
.cta-copy .eyebrow { color: #BCD6EE; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--brand-ink); }
.btn-white:hover { background: #F7FAFC; color: var(--brand-ink); }

/* ---------- Resources ---------- */
.res-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.res-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; transition: border-color .15s, transform .15s;
  display: flex; flex-direction: column; gap: 10px;
}
.res-card:hover { border-color: var(--brand); transform: translateY(-2px); }
.res-card svg { color: var(--brand); }
.res-card h3 { font-size: 1rem; font-family: 'Source Serif 4', serif; font-weight: 600; color: var(--brand-ink); margin: 0; }
.res-card p { margin: 0; color: var(--muted); font-size: .9rem; }

/* ---------- Footer ---------- */
.site-footer { background: #0B1F33; color: #BFC9D4; margin-top: 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 28px 40px;
}
.site-footer .brand-name { color: #fff; }
.site-footer .brand-sub { color: #8FA2B6; }
.footer-brand p { font-size: .9rem; color: #9DAEC1; max-width: 40ch; margin: 16px 0; }
.footer-contact { display: flex; flex-direction: column; gap: 4px; font-size: .9rem; margin-top: 14px; }
.footer-contact strong { color: #fff; font-size: 1.15rem; }
.footer-contact a { color: #BFC9D4; }
.footer-contact a:hover { color: #fff; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #BFC9D4; font-size: .9rem; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 28px;
  border-top: 1px solid #16314E;
  font-size: .82rem;
  color: #8FA2B6;
  flex-wrap: wrap;
  gap: 14px;
}
.pay-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pay { background: #16314E; color: #CBD5E1; font-size: .72rem; font-weight: 600; padding: 5px 10px; border-radius: 4px; letter-spacing: .02em; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .cat-grid, .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-row { grid-template-columns: repeat(4, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-aside { position: static; flex-direction: row; align-items: stretch; gap: 20px; }
  .why-portrait { aspect-ratio: 1 / 1; flex: 1; max-width: 320px; }
  .why-quote { flex: 1.3; }
  .res-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .header-inner { grid-template-columns: auto 1fr; }
  .search { grid-column: 1 / -1; order: 3; max-width: 100%; }
  .header-actions { justify-self: end; }
  .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .util-bar { display: none; }
  .top-notice { font-size: .78rem; text-align: center; }
  .top-notice .wrap { flex-wrap: wrap; }

  .header-inner { grid-template-columns: 1fr auto; padding: 14px 20px; gap: 14px; }
  .brand-sub { display: none; }
  .brand-name { font-size: 1rem; }
  .search { order: 3; grid-column: 1 / -1; padding: 4px 4px 4px 12px; }
  .search input { font-size: .9rem; padding: 8px; }
  .search button { padding: 8px 14px; font-size: .85rem; }
  .icon-link span { display: none; }

  .primary-nav ul { overflow-x: auto; scrollbar-width: none; }
  .primary-nav ul::-webkit-scrollbar { display: none; }
  .primary-nav li a { padding: 12px 10px; font-size: .85rem; white-space: nowrap; }
  .nav-right { display: none; }

  .hero { padding: 48px 0 56px; }
  .hero-ctas .btn { flex: 1; text-align: center; }
  .hero-points { gap: 14px; }
  .hero-stat { grid-template-columns: repeat(3, 1fr); }
  .hero-stat > div { padding: 14px 8px; }
  .hero-stat strong { font-size: 1.1rem; }
  .hero-badge { padding: 10px 12px; }
  .hero-badge strong { font-size: .82rem; }
  .hero-badge span { font-size: .72rem; }
  .feature-banner { min-height: 0; }
  .feature-inner { padding: 56px 20px; }
  .feature-stats { gap: 24px; }
  .feature-stats strong { font-size: 1.4rem; }
  .why-aside { flex-direction: column; }
  .why-portrait { max-width: 100%; aspect-ratio: 5 / 4; }
  .cta-band { padding: 56px 0; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions .btn { flex: 1; }

  .trust-inner { grid-template-columns: 1fr; gap: 16px; }
  .cat-grid, .prod-grid { grid-template-columns: 1fr; }
  .brand-row { grid-template-columns: repeat(2, 1fr); }
  .feature-inner { padding: 48px 20px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions .btn { flex: 1; }
  .res-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; padding: 40px 20px 24px; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 16px 20px; }
}
