/* =========================================================================
   SteamShowerGenerators.com — Main Stylesheet
   Premium, responsive design system. Self-contained (no framework).
   Portable to a Kadence child theme later.
   ========================================================================= */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  --ink:        #15181c;   /* graphite near-black — headings, dark sections */
  --ink-2:      #21262e;   /* lighter graphite */
  --teal:       #2563eb;   /* crisp accent blue (water/tech) */
  --teal-dk:    #1d4ed8;   /* hover blue */
  --teal-lt:    #eef3fe;   /* blue tint background */
  --gold:       #2563eb;   /* accent (repurposed to blue for a monochrome+blue scheme) */
  --gold-dk:    #1d4ed8;
  --mist:       #eef1f5;   /* cool stainless-grey light bg */
  --line:       #e5e8ec;   /* cool hairline borders */
  --body:       #3a424b;   /* body text (cool graphite) */
  --muted:      #79838d;   /* secondary text */
  --white:      #ffffff;
  --ok:         #2f9e57;   /* in-stock green */

  --wrap:       1200px;    /* max content width */
  --radius:     6px;       /* sharper, high-tech corners */
  --radius-sm:  4px;
  --shadow:     0 6px 20px rgba(21, 24, 28, 0.06);
  --shadow-lg:  0 18px 44px rgba(21, 24, 28, 0.12);

  --display: "Manrope", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --sans:    "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--teal-dk); }
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }

/* ---- Layout helpers --------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: #cfe0e3; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--sans); font-weight: 700;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.section--ink .eyebrow { color: var(--gold); }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 680px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 14px 28px; border-radius: 7px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .18s ease, box-shadow .18s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
/* primary — crisp blue, pops on light and dark */
.btn--gold { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn--gold:hover { background: var(--teal-dk); border-color: var(--teal-dk); color: #fff; box-shadow: 0 8px 20px rgba(37,99,235,.28); }
/* secondary — sleek graphite */
.btn--teal { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--teal:hover { background: #2b333d; border-color: #2b333d; color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: #eef1f4; border-color: #eef1f4; }
.btn--lg { padding: 18px 38px; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; }

/* ---- Top utility bar -------------------------------------------------- */
.utility {
  background: var(--ink); color: #b9ccd0; font-size: .84rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.utility .wrap { display: flex; justify-content: space-between; align-items: center; height: 40px; gap: 16px; }
.utility a { color: #cfe0e3; }
.utility a:hover { color: #fff; }
.utility .live { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(47,158,87,.2); }
.utility-right { display: flex; gap: 22px; align-items: center; }

/* ---- Header / nav ----------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(14,15,18,.97);
  backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid rgba(255,255,255,.08); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand b { font-family: var(--display); font-weight: 600; font-size: 1.42rem; color: #ffffff; letter-spacing: -.01em; }
.brand span { font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { font-family: var(--sans); font-weight: 500; font-size: .96rem; color: #e6e8eb; padding: 10px 14px; border-radius: 8px; }
.nav a:hover { background: rgba(255,255,255,.09); color: #fff; }
.nav a.active { color: var(--teal); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--ink); white-space: nowrap; }
.header-phone small { display: block; font-family: var(--sans); font-weight: 500; font-size: .68rem; color: #9aa1a9; letter-spacing: .04em; }
.cart-link { position: relative; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: #e6e8eb; }
.cart-link .count { background: var(--teal); color: #fff; font-size: .72rem; font-weight: 700; border-radius: 4px; padding: 1px 7px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: #e6e8eb; border-radius: 2px; transition: .2s; }

/* ---- Mobile nav drawer ------------------------------------------------ */
.mobile-nav { display: none; position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
  background: #fff; box-shadow: var(--shadow-lg); z-index: 100; padding: 26px 24px;
  transform: translateX(100%); transition: transform .28s ease; overflow-y: auto; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { display: block; padding: 13px 6px; font-size: 1.06rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 20px; }
.mobile-close { float: right; background: none; border: 0; font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--ink); }
.overlay { display: none; position: fixed; inset: 0; background: rgba(14,39,48,.5); z-index: 90; }
.overlay.open { display: block; }

/* ---- Hero ------------------------------------------------------------- */
.hero { position: relative; background: linear-gradient(170deg, #eef1f5 0%, #e5e9ef 100%); color: #5c656e; overflow: hidden; }
.hero::before { content:""; position:absolute; inset:0;
  background: radial-gradient(1000px 460px at 84% -12%, rgba(37,99,235,.08), transparent 62%),
              radial-gradient(680px 380px at 4% 114%, rgba(23,27,32,.03), transparent 60%); }
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; padding-top: 76px; padding-bottom: 76px; }
.hero h1 { color: #171b20; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; color: #5c656e; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust div { font-size: .9rem; color: #78828c; }
.hero-trust b { display: block; font-family: var(--display); font-size: 1.7rem; color: var(--gold); }
.hero-visual { position: relative; }
.hero-card { background: #131519; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  padding: 30px; box-shadow: 0 24px 56px rgba(23,27,32,.22); }
.hero-card h3 { color: #ffffff; font-size: 1.15rem; margin-bottom: 16px; }
.hero-card .row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.09); font-size: .96rem; color: #a9b0b9; }
.hero-card .row:last-child { border-bottom: 0; }
.hero-card .row span:last-child { color: #ffffff; font-weight: 600; }

/* ---- Trust bar -------------------------------------------------------- */
.trustbar { background: var(--white); border-bottom: 1px solid var(--line); }
.trustbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 26px 22px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: .94rem; font-weight: 500; color: var(--ink); }
.trust-item .ic { flex: 0 0 40px; height: 40px; border-radius: 10px; background: var(--teal-lt); color: var(--teal);
  display: grid; place-items: center; font-size: 1.2rem; }

/* ---- Grid & cards ----------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Product card */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c8dadd; }
.card-media { position: relative; aspect-ratio: 4/3; background: #f6fafb;
  display: grid; place-items: center; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.card-media .ph { text-align: center; color: var(--teal); font-weight: 700; letter-spacing: .04em; padding: 20px; }
.card-media .ph small { display:block; font-weight:500; color:var(--muted); font-size:.72rem; margin-top:6px; letter-spacing:.02em; }
.badge { position: absolute; top: 12px; left: 12px; background: var(--ink); color: #fff; font-size: .72rem;
  font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 5px 10px; border-radius: 3px; }
.badge--gold { background: var(--teal); color: #fff; }
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card-brand { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card h3 a { color: var(--ink); }
.card h3 a:hover { color: var(--teal); }
.card-specs { list-style: none; padding: 0; margin: 0 0 16px; font-size: .9rem; color: var(--muted); }
.card-specs li { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.card-specs li::before { content: "✓"; color: var(--ok); font-weight: 700; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--display); font-size: 1.5rem; color: var(--ink); font-weight: 600; }
.price small { font-family: var(--sans); font-size: .82rem; color: var(--muted); font-weight: 500; }
.price .was { font-size: .95rem; color: var(--muted); text-decoration: line-through; margin-right: 6px; }
.stars { color: #e0a63e; font-size: .95rem; letter-spacing: 1px; }
.stars small { color: var(--muted); margin-left: 4px; }

/* Feature / value cards */
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.section--mist .feature { background:#fff; }
.feature .ic { width: 52px; height: 52px; border-radius: 12px; background: var(--teal-lt); color: var(--teal);
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 16px; }
.feature h3 { font-size: 1.2rem; }
.feature p { margin-bottom: 0; color: var(--muted); font-size: .98rem; }

/* Brand strip */
.brands { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; align-items: center; }
.brands span { font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: #9fb3b8; letter-spacing: .02em; }

/* ---- Split / editorial ------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev .split-media { order: 2; }
.split-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4; background: linear-gradient(160deg,#eef3f8,#cfdcea);
  display: grid; place-items: center; box-shadow: var(--shadow); }
.split-media .ph { color: var(--teal); font-weight: 700; text-align: center; padding: 24px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* Comparison table */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
table.compare th, table.compare td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .96rem; }
table.compare thead th { background: var(--ink); color: #fff; font-family: var(--sans); font-weight: 600; }
table.compare tbody tr:nth-child(even) { background: var(--mist); }
table.compare td:first-child { font-weight: 600; color: var(--ink); }

/* ---- Steps ------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -18px; left: 26px;
  width: 42px; height: 42px; border-radius: 8px; background: var(--teal); color: #fff; font-family: var(--display);
  font-weight: 700; font-size: 1.2rem; display: grid; place-items: center; }
.step h3 { margin-top: 10px; }
.step p { margin-bottom: 0; color: var(--muted); }

/* ---- Testimonials ----------------------------------------------------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.quote p { font-size: 1.05rem; color: var(--ink); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.quote .who b { color: var(--ink); }
.quote .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-lt); color: var(--teal);
  display: grid; place-items: center; font-weight: 700; }

/* ---- CTA band --------------------------------------------------------- */
.cta-band { background: linear-gradient(150deg, #15181c 0%, #232b35 100%); color: #cbd2d9; border-radius: var(--radius);
  padding: 54px; text-align: center; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d7ecee; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ---- Calculator ------------------------------------------------------- */
.calc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.calc .field { margin-bottom: 18px; }
.calc label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 7px; font-size: .95rem; }
.calc input, .calc select { width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: 1rem; color: var(--ink); background: #fff; }
.calc input:focus, .calc select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-lt); }
.calc .row3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.calc-result { margin-top: 24px; padding: 26px; border-radius: var(--radius); background: var(--ink); color: #cfe0e3; text-align: center; }
.calc-result .kw { font-family: var(--display); font-size: 3rem; color: var(--gold); line-height: 1; }
.calc-result .kw small { font-family: var(--sans); font-size: 1rem; color: #cfe0e3; }
.calc-result p { margin: 10px 0 0; font-size: .95rem; }
.hint { font-size: .85rem; color: var(--muted); margin-top: 5px; }

/* ---- Forms ------------------------------------------------------------ */
.form { display: grid; gap: 16px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { font-weight: 600; color: var(--ink); font-size: .93rem; display: block; margin-bottom: 6px; }
.form input, .form select, .form textarea { width: 100%; padding: 13px 14px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font: inherit; font-size: 1rem; color: var(--ink); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-lt); }
.form textarea { min-height: 130px; resize: vertical; }

/* ---- Product detail --------------------------------------------------- */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.pd-gallery { position: sticky; top: 100px; align-self: start; }
.pd-main { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; background: #f6fafb;
  display: grid; place-items: center; border: 1px solid var(--line); }
.pd-main img { width: 100%; height: 100%; object-fit: contain; padding: 26px; }
.pd-main .ph { color: var(--teal); font-weight: 700; text-align: center; padding: 24px; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 12px; }
.pd-thumb { aspect-ratio: 1/1; border-radius: 10px; background: linear-gradient(160deg,#eef4f5,#d8e3ee); border: 1px solid var(--line); cursor: pointer; }
.pd-brand { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.pd h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 8px 0 12px; }
.pd-price { font-family: var(--display); font-size: 2.2rem; color: var(--ink); font-weight: 600; margin: 4px 0 6px; }
.pd-price .was { font-size: 1.3rem; color: var(--muted); text-decoration: line-through; margin-right: 10px; }
.pd-specs { list-style: none; padding: 0; margin: 20px 0; border-top: 1px solid var(--line); }
.pd-specs li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
.pd-specs li b { color: var(--ink); }
.pd-buy { display: flex; gap: 12px; margin: 22px 0; flex-wrap: wrap; }
.pd-assure { display: grid; gap: 10px; margin-top: 18px; padding: 18px; background: var(--mist); border-radius: var(--radius); }
.pd-assure div { display: flex; gap: 10px; align-items: center; font-size: .92rem; color: var(--ink); }
.pd-assure .ic { color: var(--teal); font-weight: 700; }

/* Tabs */
.tabs { border-bottom: 1px solid var(--line); display: flex; gap: 4px; margin-bottom: 26px; flex-wrap: wrap; }
.tab { padding: 12px 18px; font-weight: 600; color: var(--muted); cursor: pointer; border-bottom: 3px solid transparent; background: none; border-top: 0; border-left: 0; border-right: 0; font-family: var(--sans); font-size: 1rem; }
.tab.active { color: var(--teal); border-bottom-color: var(--teal); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---- FAQ / accordion -------------------------------------------------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary { cursor: pointer; padding: 20px 24px; font-weight: 600; color: var(--ink); font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--teal); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 24px 22px; color: var(--muted); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---- Page hero (interior) --------------------------------------------- */
.page-hero { background: linear-gradient(170deg, #eef1f5, #e5e9ef); color: #5c656e; padding: 66px 0; text-align: center; border-bottom: 1px solid #e3e7ec; }
.page-hero h1 { color: #171b20; }
.page-hero p { color: #5c656e; max-width: 640px; margin: 0 auto; font-size: 1.15rem; }
.crumbs { font-size: .85rem; color: #8a939c; margin-bottom: 14px; }
.crumbs a { color: #5c656e; }

/* ---- Footer ----------------------------------------------------------- */
.site-footer { background: var(--ink); color: #a9c0c5; padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #a9c0c5; display: block; padding: 5px 0; font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.footer-brand b { font-family: var(--display); font-size: 1.5rem; color: #fff; }
.footer-brand p { margin-top: 12px; font-size: .95rem; max-width: 320px; }
.footer-phone { font-family: var(--display); font-size: 1.5rem; color: var(--gold); margin: 8px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #7f989e; }

/* ---- Utility ---------------------------------------------------------- */
.mt0{margin-top:0}.mb0{margin-bottom:0}.mt40{margin-top:40px}
.note { background: #fffbe9; border: 1px solid #f0e2a8; border-radius: var(--radius-sm); padding: 14px 16px; font-size: .9rem; color: #7a6a1f; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 460px; }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 860px) {
  .nav, .header-phone small { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: block; }
  .split, .pd { grid-template-columns: 1fr; gap: 34px; }
  .split--rev .split-media { order: 0; }
  .pd-gallery { position: static; }
  .trustbar .wrap { grid-template-columns: 1fr 1fr; gap: 18px; }
  .steps { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 0; }
  .utility { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trustbar .wrap { grid-template-columns: 1fr; }
  .cta-band, .calc, .feature { padding: 26px; }
  .calc .row3 { grid-template-columns: 1fr; }
  .form .row2 { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .brands span { font-size: 1.2rem; }
}
