/* ============================================
   AIEW Electrical Wholesalers
   ============================================ */

:root {
  --c-brand:        #a73302;
  --c-brand-dark:   #7f2701;
  --c-brand-hover:  #c53d05;
  --c-accent:       #f7941d;
  --c-text:         #262626;
  --c-text-muted:   #494949;
  --c-text-light:   #666666;
  --c-white:        #ffffff;
  --c-bg-soft:      #f4f2ee;
  --c-bg-panel:     #f7f5f1;
  --c-dark-panel:   #2a2a2a;
  --c-dark-band:    #363636;
  --c-border:       #d5d5d5;
  --c-border-soft:  #e7e5e0;

  --ff-body:  'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ff-heading: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1200px;
  --container-wide: 1400px;
  --gutter: 24px;

  --header-h: 108px;
  --header-h-mobile: 72px;

  --radius: 4px;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-card: 0 6px 22px rgba(0, 0, 0, .08);
}

/* ============================================
   Reset & base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-brand); text-decoration: none; }
a:hover { color: var(--c-brand-hover); text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--ff-heading); font-weight: 700; margin: 0 0 .5em; color: var(--c-text); line-height: 1.25; }
h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container-max);
  padding: 0 var(--gutter);
  margin: 0 auto;
}
.container--wide { max-width: var(--container-wide); }

main.site-main { flex: 1; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ============================================
   Header + nav
   ============================================ */
.site-header {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border-soft);
  position: sticky; top: 0; z-index: 220;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-header__brand {
  flex: 0 0 auto;
  display: block;
}
.site-header__brand img {
  height: 84px;
  width: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.site-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
}
.site-nav ul li a {
  display: inline-block;
  padding: 6px 4px;
  color: var(--c-text);
  font-family: var(--ff-heading);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.site-nav ul li a:hover,
.site-nav ul li.is-active > a {
  color: var(--c-brand);
  border-bottom-color: var(--c-brand);
}
.site-header__phone {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--c-brand);
  font-family: var(--ff-heading);
  text-decoration: none;
  white-space: nowrap;
}
.site-header__phone-label {
  color: var(--c-text);
  font-size: 14.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.site-header__phone-num {
  color: var(--c-brand);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .01em;
}
.site-header__phone:hover .site-header__phone-num { color: var(--c-brand-hover); }

.site-header__burger {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  z-index: 210;
}
.site-header__burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--c-brand);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}

/* ============================================
   Sub-nav banner (colorful cables strip)
   ============================================ */
.page-banner {
  position: relative;
  background: #2a2b2f url('/assets/images/banner-cables-strip.jpg') center/cover no-repeat;
  min-height: 110px;
  display: flex;
  align-items: center;
  color: var(--c-white);
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.page-banner h1 {
  position: relative;
  color: var(--c-white);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
}

/* ============================================
   Home — hero
   ============================================ */
.hero {
  position: relative;
  background: #0e1c40 url('/assets/images/hero-cables-aboriginal.jpg') center/cover no-repeat;
  color: var(--c-white);
  padding: clamp(72px, 12vw, 140px) 0 clamp(96px, 14vw, 160px);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 45, .35) 0%, rgba(9, 18, 45, .1) 40%, rgba(9, 18, 45, .55) 100%);
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero__title {
  font-family: var(--ff-heading);
  font-weight: 300;
  font-size: clamp(2.2rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--c-white);
  margin: 0 0 .35em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}
.hero__subtitle {
  font-family: var(--ff-body);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  color: rgba(255, 255, 255, .92);
  letter-spacing: .02em;
  margin: 0;
}
.hero__badges {
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  flex-wrap: wrap;
}
.hero__badges img { max-height: 96px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.25)); }
.hero__badges .badge-round {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--c-brand);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  line-height: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}
.hero__badges .badge-round--facci {
  font-size: 17px;
  color: #333;
  background: linear-gradient(180deg, #fff 0%, #eee 100%);
}

/* ============================================
   Intro tiles (About + Contact side-by-side)
   ============================================ */
.intro-tiles {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--c-bg-panel) url('/assets/images/patterns/dots-pastel.jpg') center/cover no-repeat;
}
.intro-tiles::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255, 255, 255, .55);
}
.intro-tiles__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.intro-tile {
  background: var(--c-dark-panel);
  color: var(--c-white);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.intro-tile--brand { background: var(--c-brand); }
.intro-tile h2 {
  color: var(--c-white);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(255, 255, 255, .28);
}
.intro-tile p { color: rgba(255, 255, 255, .92); font-size: 15px; line-height: 1.65; }
.intro-tile p strong { color: var(--c-white); font-weight: 600; }
.intro-tile a { color: var(--c-white); text-decoration: underline; }
.intro-tile__cta { margin-top: auto; padding-top: 22px; }

.btn {
  display: inline-block;
  padding: 12px 26px;
  background: var(--c-white);
  color: var(--c-brand);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .1s;
}
.btn:hover { background: var(--c-brand-dark); color: var(--c-white); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--c-white); border-color: var(--c-white); }
.btn--ghost:hover { background: var(--c-white); color: var(--c-brand); }
.btn--dark { background: var(--c-dark-panel); color: var(--c-white); }
.btn--dark:hover { background: var(--c-brand); color: var(--c-white); }

/* ============================================
   Features (six-box grid) — used on home + why-aiew
   ============================================ */
.features {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--c-white);
}
.features__title {
  text-align: center;
  font-family: var(--ff-heading);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  margin: 0 0 clamp(32px, 4vw, 56px);
  color: var(--c-text);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 56px) clamp(56px, 6vw, 88px);
}
.feature {
  position: relative;
  border: 2px solid var(--c-brand);
  min-height: 140px;
  background: var(--c-white);
  padding: 22px 28px 22px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.feature__icon {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--c-brand);
  color: var(--c-white);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}
.feature__icon svg { width: 54px; height: 54px; }
.feature__body h3 {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--c-text);
}
.feature__body p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--c-text-muted); }
.feature__body small { display: block; font-size: 11px; color: var(--c-text-light); letter-spacing: .04em; margin-top: 4px; font-style: italic; }

/* Right-column features: icon protrudes on the RIGHT side */
.feature--icon-right { padding: 22px 88px 22px 28px; }
.feature--icon-right .feature__icon { left: auto; right: -60px; }

/* ============================================
   Featured suppliers strip (bottom of home)
   ============================================ */
.brands-strip {
  padding: 48px 0;
  background: var(--c-white);
  border-top: 1px solid var(--c-border-soft);
}
.brands-strip__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
}
.brands-strip__row img {
  max-height: 60px;
  width: auto;
  filter: grayscale(20%);
  transition: filter .2s, transform .15s;
}
.brands-strip__row img:hover { filter: grayscale(0); transform: scale(1.04); }

/* ============================================
   Section wrappers used on inner pages
   ============================================ */
.section { padding: clamp(56px, 7vw, 96px) 0; background: var(--c-white); }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--soft { background: var(--c-bg-soft); }
.section--dark { background: var(--c-dark-band); color: var(--c-white); }
.section--dark h2, .section--dark h3 { color: var(--c-white); }
.section--dark p { color: rgba(255, 255, 255, .9); }

.section__title {
  text-align: center;
  font-family: var(--ff-heading);
  font-weight: 300;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0 0 8px;
}
.section__subtitle {
  text-align: center;
  color: var(--c-text-light);
  margin: 0 0 40px;
  font-size: 15px;
}

/* ============================================
   Two-column content layout (about + contact)
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1.15fr 1fr; align-items: start; }
}
.two-col--reverse-mobile > :first-child { order: 2; }
@media (min-width: 900px) {
  .two-col--reverse-mobile > :first-child { order: 0; }
}

.prose h2 {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 1.75rem;
  margin: 0 0 24px;
}
.prose p { font-size: 15.5px; line-height: 1.75; color: var(--c-text-muted); margin: 0 0 1.15em; }
.prose p strong { color: var(--c-text); font-weight: 600; }
.prose a { color: var(--c-brand); }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1em; color: var(--c-text-muted); }
.prose li { margin-bottom: .35em; line-height: 1.6; }

.figure { display: flex; flex-direction: column; gap: 20px; }
.figure img { width: 100%; height: auto; border: 1px solid var(--c-border-soft); }

/* ============================================
   Suppliers grid
   ============================================ */
.supplier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 600px) { .supplier-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .supplier-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
@media (min-width: 1200px){ .supplier-grid { grid-template-columns: repeat(5, 1fr); } }
.supplier-tile {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  transition: transform .15s, box-shadow .18s, border-color .15s;
}
.supplier-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); border-color: var(--c-brand); }
.supplier-tile img { max-height: 100px; max-width: 100%; width: auto; object-fit: contain; }

/* ============================================
   Corporate profile (capability statement)
   ============================================ */
.corporate-profile {
  padding: clamp(40px, 5vw, 64px) 0;
  background: var(--c-bg-soft);
}
.corporate-profile__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}
@media (min-width: 720px) {
  .corporate-profile__grid { grid-template-columns: 1fr 1fr; text-align: left; }
}
.corporate-profile h3 {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .04em;
  color: var(--c-brand);
  text-transform: uppercase;
  margin: 0 0 6px;
}
.corporate-profile p { margin: 0; font-size: 15px; color: var(--c-text-muted); line-height: 1.7; }

/* Product & services grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}
@media (min-width: 680px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-cat {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  padding: 28px 26px;
  border-top: 3px solid var(--c-brand);
}
.product-cat h3 {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-text);
  margin: 0 0 14px;
  text-transform: none;
  letter-spacing: 0;
}
.product-cat ul { list-style: none; margin: 0; padding: 0; }
.product-cat li {
  padding: 6px 0 6px 20px;
  font-size: 14.5px;
  color: var(--c-text-muted);
  line-height: 1.55;
  position: relative;
}
.product-cat li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 8px; height: 8px;
  background: var(--c-brand);
  border-radius: 50%;
}

/* Purpose & values band */
.purpose-band {
  background: var(--c-dark-band);
  color: var(--c-white);
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
}
.purpose-band h2 {
  color: var(--c-white);
  font-family: var(--ff-heading);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.purpose-band__body {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .92);
}
.purpose-band__body strong { color: var(--c-accent); font-weight: 600; }

/* ============================================
   Forms
   ============================================ */
.form {
  display: grid;
  gap: 18px;
  max-width: 640px;
}
.form--wide { max-width: none; }
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }

.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-text);
}
.form__field .req { color: var(--c-brand); margin-left: 3px; }
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--c-text);
  padding: 10px 12px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.form__field textarea { min-height: 140px; resize: vertical; font-family: var(--ff-body); }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--c-brand);
  box-shadow: 0 0 0 3px rgba(167, 51, 2, .15);
}
.form__submit {
  display: inline-block;
  width: 100%;
  padding: 14px 26px;
  background: var(--c-bg-soft);
  color: var(--c-text);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.form__submit:hover { background: var(--c-brand); color: var(--c-white); border-color: var(--c-brand); }
.honeypot {
  position: absolute; left: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.contact-info h2 {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--c-text);
  margin: 0 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-brand);
}
.contact-info h3 {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--c-brand);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 22px 0 4px;
}
.contact-info p { margin: 0; font-size: 15px; color: var(--c-text-muted); line-height: 1.65; }
.contact-info a { color: var(--c-brand); }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--c-dark-panel);
  color: rgba(255, 255, 255, .8);
  padding: 22px 0 24px;
  text-align: center;
  font-size: 13px;
}
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer__links a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .02em;
}
.site-footer__links a:hover { color: var(--c-accent); text-decoration: none; }
.site-footer__copy { margin: 0; font-size: 12px; color: rgba(255, 255, 255, .55); letter-spacing: .02em; }

/* ============================================
   Legal pages (privacy + terms) — prose block
   ============================================ */
.legal-body h2 {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--c-text);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--c-border-soft);
}
.legal-body h3 {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--c-brand);
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.legal-body p { font-size: 14.5px; line-height: 1.75; color: var(--c-text-muted); margin: 0 0 1em; }
.legal-body ul { padding-left: 22px; color: var(--c-text-muted); }
.legal-body ul li { margin-bottom: .35em; font-size: 14.5px; line-height: 1.65; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 880px) {
  .site-header__inner { min-height: var(--header-h-mobile); }
  .site-header__brand img { height: 54px; }

  .site-header__burger { display: flex; }

  .site-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh; width: min(320px, 88vw);
    background: var(--c-white);
    padding: 88px 28px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .28s ease-out;
    box-shadow: -8px 0 30px rgba(0, 0, 0, .12);
    z-index: 200;
    overflow-y: auto;
  }
  .site-nav ul { flex-direction: column; align-items: flex-start; width: 100%; gap: 6px; }
  .site-nav ul li { width: 100%; border-bottom: 1px solid var(--c-border-soft); }
  .site-nav ul li a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 0;
  }
  .site-nav ul li.is-active > a { color: var(--c-brand); border-bottom: 0; }
  .site-header__phone { margin-top: 12px; flex-direction: column; align-items: flex-start; gap: 2px; }
  .site-header__phone-num { font-size: 22px; }

  body.menu-open { overflow: hidden; }
  body.menu-open .site-nav { transform: translateX(0); }
  body.menu-open::after {
    content: ''; position: fixed; inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 150;
  }
  body.menu-open .site-header__burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  body.menu-open .site-header__burger span:nth-child(2) { opacity: 0; }
  body.menu-open .site-header__burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr; gap: 44px 0; }
  /* Every feature card gets the icon on the left in single-column mobile */
  .feature { padding: 20px 24px 20px 72px; }
  .feature--icon-right { padding: 20px 24px 20px 72px; }
  .feature__icon,
  .feature--icon-right .feature__icon {
    left: -46px; right: auto;
    width: 92px; height: 92px;
  }
  .feature__icon svg { width: 42px; height: 42px; }
}

@media (max-width: 560px) {
  .intro-tile { padding: 28px 22px 26px; min-height: 260px; }
  .hero { padding: 60px 0 80px; }
  .hero__badges img { max-height: 68px; }
}
