/* =========================================================
   Vyra — Yoga Wear Wholesale B2B
   Design system: Premium-minimal, calm, B2B wholesale
   Fonts: Fraunces (display) + Inter (UI/body)
   ========================================================= */

:root {
  /* Color */
  --bg: #F6F4EF;          /* warm paper */
  --bg-elev: #FFFFFF;
  --bg-sink: #EFEBE3;     /* subtle section tint */
  --ink: #1B1B18;         /* near-black */
  --ink-soft: #3A3A35;
  --muted: #8A867C;
  --line: #E5E1D7;
  --line-strong: #D6D1C4;

  --brand: #46584A;       /* deep sage */
  --brand-deep: #3D4A39;
  --brand-tint: #EDF0EA;
  --brand-line: #CBD5C4;

  --sand: #C9A66B;        /* warm accent for small highlights */
  --ok: #4F7A52;

  /* Type */
  --font-display: "Fraunces", "Songti SC", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
               "Microsoft YaHei", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing / layout */
  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(27, 27, 24, .04), 0 4px 14px rgba(27, 27, 24, .04);
  --shadow-md: 0 6px 24px rgba(27, 27, 24, .08);
  --shadow-lg: 0 18px 50px rgba(27, 27, 24, .12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--sink { background: var(--bg-sink); }
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: 14px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-lead { color: var(--ink-soft); max-width: 620px; font-size: 17px; }
.section-head { margin-bottom: 44px; }
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: all .2s ease; white-space: nowrap;
}
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 244, 239, .82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: -0.02em; }
.brand .mark { width: 30px; height: 30px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  transition: background .18s ease, color .18s ease;
}
.nav-links > li > a:hover { background: var(--bg-sink); color: var(--ink); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-strong); border-radius: 10px; padding: 9px 11px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; }

/* dropdown */
.has-menu { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  width: 280px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transition: all .18s ease;
}
.has-menu:hover .dropdown { opacity: 1; visibility: visible; top: calc(100% + 4px); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 9px; font-size: 14px; color: var(--ink-soft); }
.dropdown a:hover { background: var(--brand-tint); color: var(--brand-deep); }
.dropdown .dd-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 6px 12px 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(rgba(244,240,233,.82), rgba(244,240,233,.82)), image-set(url(../img/hero-yoga.webp) type("image/webp"), url(../img/hero-yoga.png) type("image/png")) center/cover no-repeat; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 84px 0 92px; }
.hero h1 { font-size: clamp(38px, 5.4vw, 62px); line-height: 1.04; }
.hero .lead { font-size: 18px; color: var(--ink-soft); margin: 22px 0 30px; max-width: 520px; }
.hero-stats { display: flex; gap: 30px; margin-top: 38px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-display); font-size: 30px; color: var(--brand-deep); }
.hero-stat .lbl { font-size: 13px; color: var(--muted); }
.hero-media { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 22px;
  box-shadow: var(--shadow-lg);
}
.hero-card .qc-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.hero-card .qc-row:last-child { border-bottom: 0; }
.hero-card .qc-ico { width: 38px; height: 38px; border-radius: 10px; background: var(--brand-tint); display: grid; place-items: center; color: var(--brand-deep); flex: none; }
.hero-card .qc-t { font-weight: 600; font-size: 15px; }
.hero-card .qc-d { font-size: 13px; color: var(--muted); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-line); }
.card .c-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-tint); color: var(--brand-deep); display: grid; place-items: center; margin-bottom: 16px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.card .c-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--brand-deep); font-weight: 600; font-size: 14px; }

.cat-card { display: block; padding: 0; overflow: hidden; }
.cat-card .thumb { aspect-ratio: 4/3; background: linear-gradient(135deg, #E7EAE2, #D7DDD0); position: relative; }
.cat-card .thumb svg { position: absolute; inset: 0; margin: auto; opacity: .8; }
.cat-card .body { padding: 20px 22px 24px; }
.cat-card .body h3 { font-size: 19px; }
.cat-card .body .meta { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ---------- Feature / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev .split-media { order: -1; }
.split h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 16px; }
.split p { color: var(--ink-soft); }
.feature-list li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.feature-list li:last-child { border-bottom: 0; }
.feature-list .tick { color: var(--brand); flex: none; margin-top: 3px; }
.split-media { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(135deg, #ECEEE8, #DDE2D6); aspect-ratio: 5/4; display: grid; place-items: center; }

/* ---------- Video intro ---------- */
.video-block { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: #1B1B18; aspect-ratio: 16/9; box-shadow: var(--shadow-lg); }
.video-block .poster { position: absolute; inset: 0; background: linear-gradient(rgba(20,24,18,.42), rgba(20,24,18,.55)), image-set(url(../img/factory.webp) type("image/webp"), url(../img/factory.png) type("image/png")) center/cover no-repeat; }
.video-block .poster::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 70% 20%, rgba(255,255,255,.18), transparent 60%); }
.video-block .v-label { position: absolute; left: 28px; bottom: 26px; color: #fff; z-index: 2; }
.video-block .v-label .t { font-family: var(--font-display); font-size: 24px; }
.video-block .v-label .s { font-size: 14px; opacity: .82; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 78px; height: 78px; border-radius: 50%; background: rgba(255,255,255,.92); border: 0;
  display: grid; place-items: center; transition: transform .2s ease;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.06); }
.play-btn svg { margin-left: 4px; }
.video-note { font-size: 12.5px; color: var(--muted); margin-top: 10px; text-align: center; }

/* ---------- Stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--font-display); font-size: 40px; color: var(--brand-deep); line-height: 1; }
.stat .lbl { font-size: 14px; color: var(--ink-soft); margin-top: 10px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.step .n { font-family: var(--font-display); font-size: 15px; color: var(--brand); width: 34px; height: 34px; border: 1px solid var(--brand-line); border-radius: 50%; display: grid; place-items: center; margin-bottom: 14px; }
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ---------- Tables (MOQ / shipping) ---------- */
.table-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
table.spec { width: 100%; border-collapse: collapse; }
table.spec th, table.spec td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
table.spec th { background: var(--bg-sink); font-weight: 600; color: var(--ink); font-size: 13px; letter-spacing: .03em; }
table.spec tr:last-child td { border-bottom: 0; }
table.spec td.k { color: var(--ink-soft); font-weight: 600; width: 38%; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 4px; font-size: 17px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-sans); }
.faq-q .ico { flex: none; transition: transform .2s ease; color: var(--brand); }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { padding: 0 4px 22px; color: var(--ink-soft); margin: 0; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.info-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list .i-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--brand-tint); color: var(--brand-deep); display: grid; place-items: center; flex: none; }
.info-list .i-t { font-weight: 600; font-size: 15px; }
.info-list .i-d { font-size: 14px; color: var(--ink-soft); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 10px;
  font-family: inherit; font-size: 15px; background: #fff; color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint); }
.field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 6px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--brand-deep); color: #fff; border-radius: 22px; padding: 56px 48px; text-align: center; }
.cta-band h2 { font-size: clamp(26px, 3.6vw, 38px); color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 540px; margin: 14px auto 28px; }
.cta-band .btn--light { background: #fff; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: 13px; color: var(--muted); padding: 22px 0 0; }
.crumb a:hover { color: var(--brand-deep); }
.crumb span { margin: 0 8px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 60px 0 30px; }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 50px); }
.page-hero .lead { color: var(--ink-soft); font-size: 18px; max-width: 640px; margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: #20231E; color: #C9C5BA; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 44px; }
.footer-grid h4 { color: #fff; font-family: var(--font-sans); font-size: 14px; letter-spacing: .04em; margin-bottom: 16px; }
.footer-grid a { color: #C9C5BA; font-size: 14px; display: block; padding: 6px 0; }
.footer-grid a:hover { color: #fff; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 280px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: #8E8A7E; }
.footer-bottom a { color: #8E8A7E; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Badges / chips ---------- */
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: 999px; background: var(--brand-tint); color: var(--brand-deep); font-size: 13px; font-weight: 600; }

/* ---------- Modal (video) ---------- */
.modal { position: fixed; inset: 0; background: rgba(20,20,18,.78); display: none; place-items: center; z-index: 100; padding: 24px; }
.modal.show { display: grid; }
.modal-inner { width: min(960px, 100%); aspect-ratio: 16/9; background: #000; border-radius: 14px; overflow: hidden; position: relative; }
.modal-inner iframe, .modal-inner video { width: 100%; height: 100%; border: 0; }
.modal-close { position: absolute; top: -42px; right: 0; background: none; border: 0; color: #fff; font-size: 30px; line-height: 1; }
.modal-hint { color: #fff; text-align: center; font-size: 13px; margin-top: 14px; }

/* ---------- Category pages ---------- */
.cat-hero { background: linear-gradient(180deg, var(--bg-elev), var(--bg)); border-bottom: 1px solid var(--line); }
.cat-hero .inner { padding: 26px 0 48px; }
.cat-hero .eyebrow { margin-bottom: 12px; }
.cat-hero h1 { font-size: clamp(32px, 4.6vw, 52px); }
.cat-hero .lead { color: var(--ink-soft); font-size: 18px; max-width: 660px; margin-top: 16px; }
.cat-hero .chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prod-card { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.prod-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-line); }
.prod-card .pc-tag { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.prod-card h3 { font-size: 18px; margin-bottom: 8px; }
.prod-card p { font-size: 14px; color: var(--ink-soft); margin: 0 0 16px; }
.prod-card .c-link { margin-top: auto; }
.prod-card .pc-media { margin: -24px -24px 18px; background: var(--bg-sink); border-radius: var(--radius) var(--radius) 0 0; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.prod-card .pc-media .pc-ill { width: 60%; height: 92%; }
.prod-card .pc-tag { display: inline-block; align-self: flex-start; background: var(--bg-sink); border: 1px solid var(--line-strong); padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }

.cat-banner { padding: 6px 0 4px; }
.cat-banner .container { max-width: 1080px; }
.cat-banner img { width: 100%; height: auto; max-height: 440px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

.kw-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.kw-cloud .chip { background: #fff; border: 1px solid var(--line-strong); color: var(--ink-soft); font-weight: 500; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-grid a { display: block; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-elev); color: var(--ink-soft); font-weight: 600; font-size: 15px; transition: all .18s ease; }
.related-grid a:hover { border-color: var(--brand-line); color: var(--brand-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.rel-card { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-elev); color: var(--ink-soft); font-weight: 600; font-size: 15px; transition: all .18s ease; }
.rel-card:hover { border-color: var(--brand-line); color: var(--brand-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.rel-card .rel-arrow { color: var(--brand-line); }
.kw-cloud.center { justify-content: center; }

/* strength trust pages */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px; }
.stat { text-align: center; padding: 22px 14px; background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.stat-n { display: block; font-family: 'Fraunces', serif; font-size: 30px; font-weight: 600; color: var(--brand-deep); }
.stat-l { display: block; margin-top: 6px; font-size: 13px; color: var(--ink-soft); }
.st-scene { width: 100%; max-width: 560px; height: auto; border-radius: var(--radius); }

/* product detail pages */
.prod-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.prod-hero-media { background: var(--bg-sink); border-radius: var(--radius); padding: 36px; display: flex; align-items: center; justify-content: center; }
.prod-hero-media svg { width: 240px; height: auto; }
.prod-info h2 { font-family: 'Fraunces', serif; font-size: 26px; margin: 6px 0 14px; }
.spec-h { margin-top: 22px; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); }
.spec { width: 100%; border-collapse: collapse; margin-top: 8px; }
.spec th, .spec td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec th { color: var(--ink-soft); font-weight: 600; width: 44%; }
.spec td { color: var(--ink); }

.faq-mini .faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 22px; margin-bottom: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .prod-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 64px; }
  .split, .split--rev .split-media { grid-template-columns: 1fr; }
  .split--rev .split-media { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .statband { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .prod-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; padding: 12px 16px 20px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 14px; }
  .nav-toggle { display: block; }
  .nav-cta { margin: 8px 0 0; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .dropdown { position: static; opacity: 1; visibility: visible; box-shadow: none; border: 0; width: auto; padding: 0 0 6px 12px; transform: none; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4, .prod-grid, .related-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .prod-hero-media svg { width: 180px; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 40px 24px; }
}
