/* AEW Electrical Wholesalers - CSS variables and base styles */

:root {
  --brand-red: #d70517;
  --brand-red-dark: #b8040f;
  --ink: #262626;
  --ink-soft: #444;
  --muted: #7a7a7a;
  --line: #e5e5e5;
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --footer-bg: #202020;
  --dark-panel: #262a2e;

  --font-body: "Open Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --fw-light: 300;
  --fw-reg: 400;
  --fw-semi: 600;
  --fw-bold: 700;

  --container: 1180px;
  --topbar-h: 110px;
  --banner-h: 148px;
  --radius-sm: 4px;
  --radius-md: 10px;

  --ease: cubic-bezier(.4,.2,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand-red); }

button { font: inherit; cursor: pointer; }

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

/* ---------- Top bar / header ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 3px solid var(--brand-red);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.topbar-inner {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  height: var(--topbar-h);
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  height: 92px;
  width: auto;
}
.brand-name {
  display: none;
  font-weight: var(--fw-semi);
  color: var(--ink);
  letter-spacing: .02em;
  font-size: 14px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.primary-nav a {
  font-size: 15px;
  font-weight: var(--fw-semi);
  color: var(--ink);
  letter-spacing: .04em;
  padding: 8px 2px;
  transition: color .18s var(--ease);
}
.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--brand-red);
}
.topbar-phone {
  font-weight: var(--fw-semi);
  font-size: 20px;
  color: var(--brand-red);
  letter-spacing: .02em;
  white-space: nowrap;
  transition: color .18s var(--ease);
}
.topbar-phone:hover { color: var(--brand-red-dark); }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.burger:hover { color: var(--brand-red); }
.burger svg { width: 28px; height: 28px; }
.burger .close { display: none; }
.burger[aria-expanded="true"] .open { display: none; }
.burger[aria-expanded="true"] .close { display: block; }

/* ---------- Hero (nivoSlider) ---------- */
.hero {
  position: relative;
  color: #fff;
  background: #0d0d10;
  text-align: center;
  overflow: hidden;
}
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 700px;
  background: #0d0d10;
  overflow: hidden;
}
.slider-wrapper .nivoSlider {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-wrapper .nivoSlider > img {
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.slider-wrapper .nivo-slice,
.slider-wrapper .nivo-box,
.slider-wrapper .nivo-main-image {
  display: block !important;
}
.slider-wrapper .nivo-caption { display: none !important; }
.slider-wrapper .nivo-directionNav,
.slider-wrapper .nivo-controlNav { display: none !important; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 8;
  background: linear-gradient(180deg, rgba(10,12,18,.15) 0%, rgba(10,12,18,.35) 55%, rgba(10,12,18,.55) 100%);
  pointer-events: none;
}
.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}
.hero-bar {
  width: min(760px, 82vw);
  height: 5px;
  border-top: 1px solid rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.85);
  background: transparent;
  margin: 0;
}
.hero-copy {
  padding: 26px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-title {
  font-size: clamp(32px, 5.5vw, 70px);
  font-weight: var(--fw-semi);
  color: #fff;
  margin: 0;
  letter-spacing: .02em;
  line-height: 1.05;
  white-space: nowrap;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: var(--fw-light);
  color: #fff;
  margin: 0;
  letter-spacing: .01em;
}

/* ---------- Inner banner (shared) ---------- */
.page-banner {
  position: relative;
  min-height: var(--banner-h);
  color: #fff;
  background: #0d0d10 url('../images/banner-about.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,12,18,.6) 0%, rgba(10,12,18,.4) 60%, rgba(10,12,18,.3) 100%);
}
.page-banner-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 24px;
}
.page-banner h1 {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: var(--fw-light);
  letter-spacing: .06em;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}

/* ---------- Cards row (3 cards on home) ---------- */
.cards-row {
  padding: 0 0 50px;
  margin-top: -90px;
  background: transparent;
  position: relative;
  z-index: 10;
  overflow: visible;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  overflow: visible;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #f2f2f2;
  color: var(--ink);
  border-radius: 2px;
  border-bottom: 15px solid var(--brand-red);
  overflow: visible;
}
.card:hover {
  color: var(--ink);
}
.card-top {
  position: relative;
  background: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
}
.card-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.card-body {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 26px;
  background: #f2f2f2;
  flex: 1;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: var(--fw-semi);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
}
.card p {
  margin: 0 0 18px;
  font-size: 14.5px;
  font-weight: var(--fw-light);
  line-height: 1.55;
  color: var(--ink-soft);
}
.card .read-more {
  margin-top: auto;
  display: inline-block;
  align-self: center;
  padding: 8px 22px;
  font-size: 12px;
  font-weight: var(--fw-semi);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border-radius: 999px;
  transition: color .18s var(--ease);
}
.card:hover .read-more { color: var(--brand-red); }

/* ---------- Split panels (About / Contact) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 30px 0 60px;
}
.panel {
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.panel-about {
  background: var(--dark-panel);
  color: #fff;
}
.panel-contact {
  background: var(--brand-red);
  color: #fff;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 12px;
  background: transparent;
  gap: 20px;
  flex-wrap: wrap;
}
.panel-head-title {
  font-size: 22px;
  font-weight: var(--fw-semi);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}
.panel-head-link {
  font-size: 14px;
  font-weight: var(--fw-semi);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .18s var(--ease);
}
.panel-head-link:hover { color: #fff; }
.panel-body {
  padding: 26px 30px 32px;
  flex: 1;
}
.panel-body p {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: var(--fw-light);
  line-height: 1.55;
  color: rgba(255,255,255,.92);
}
.panel-body p:last-child { margin-bottom: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 74px 1fr;
  row-gap: 10px;
  column-gap: 14px;
  margin: 0;
}
.contact-grid dt {
  font-weight: var(--fw-semi);
  font-size: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0;
  color: rgba(255,255,255,.85);
}
.contact-grid dd {
  margin: 0;
  font-size: 20px;
  font-weight: var(--fw-light);
  color: #fff;
  line-height: 1.5;
}
.contact-grid dd a { color: inherit; text-decoration: none; }
.contact-grid dd a:hover { text-decoration: underline; }

/* ---------- Feature grid (6 icons - Why Choose AEW) ---------- */
.features {
  padding: 60px 0 80px;
  background: #fff;
}
.features-heading {
  text-align: center;
  margin: 0 0 40px;
  font-size: 26px;
  font-weight: var(--fw-light);
  color: #202428;
  letter-spacing: .06em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 50px;
}
.feature {
  position: relative;
  padding: 0;
  background: transparent;
}
.feature-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 204px;
  height: 204px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.feature-text {
  width: 100%;
  background: #202428;
  border-radius: 0 110px 110px 0;
  padding: 44px 230px 44px 44px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
.feature-text h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: var(--fw-semi);
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.feature-text p {
  margin: 0;
  font-size: 16px;
  font-weight: var(--fw-light);
  color: rgba(255,255,255,.92);
  line-height: 1.55;
}
.feature-text p small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}
.feature:nth-child(odd) .feature-icon {
  right: auto;
  left: 0;
}
.feature:nth-child(odd) .feature-text {
  border-radius: 110px 0 0 110px;
  padding: 44px 44px 44px 230px;
}

/* ---------- Supplier logo strip (marquee) ---------- */
.supplier-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.supplier-strip marquee {
  vertical-align: middle;
}
.supplier-strip marquee a {
  display: inline-block;
  margin: 0 30px;
  vertical-align: middle;
}
.supplier-strip marquee img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  vertical-align: middle;
  opacity: .9;
  transition: opacity .2s var(--ease);
}
.supplier-strip marquee img:hover { opacity: 1; }

/* ---------- Suppliers grid page ---------- */
.suppliers-page {
  padding: 50px 0 80px;
}
.suppliers-intro {
  text-align: center;
  margin-bottom: 40px;
}
.suppliers-intro h2 {
  font-size: 28px;
  font-weight: var(--fw-semi);
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: .02em;
}
.suppliers-intro p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  font-weight: var(--fw-light);
}
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 24px;
  align-items: center;
  justify-items: center;
}
.suppliers-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  width: 100%;
}
.suppliers-grid img {
  max-height: 84px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .2s var(--ease);
}
.suppliers-grid a:hover img { transform: scale(1.05); }

/* ---------- About page ---------- */
.content-block {
  padding: 60px 0 80px;
}
.content-block h2 {
  font-size: 28px;
  font-weight: var(--fw-semi);
  color: var(--ink);
  margin: 0 0 22px;
  letter-spacing: .01em;
}
.content-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: var(--fw-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-grid p {
  font-size: 20px;
}
.about-grid img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

/* ---------- Testimonials page ---------- */
.testimonial-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  padding: 50px 0 80px;
}
.testimonial-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: calc(var(--topbar-h) + 20px);
  align-self: start;
}
.testimonial-tab {
  padding: 22px 26px;
  background: var(--dark-panel);
  color: #fff;
  border: 0;
  border-radius: 2px;
  text-align: left;
  font: inherit;
  font-size: 18px;
  font-weight: var(--fw-semi);
  cursor: pointer;
  transition: background .18s var(--ease);
}
.testimonial-tab:hover { background: #363b41; }
.testimonial-tab.is-active { background: var(--brand-red); }
.testimonial-panel {
  display: none;
  text-align: center;
  padding: 20px;
  background: #f2f2f2;
  min-height: 700px;
}
.testimonial-panel.is-active { display: block; }
.testimonial-panel img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  display: block;
}
.testimonial-panel img + blockquote::before {
  content: "";
  display: block;
  width: 288px;
  height: 2px;
  background: #000;
  margin: 0 auto 22px;
}
.testimonial-panel blockquote {
  font-size: 24px;
  line-height: 1.7;
  color: #000;
  margin: 0 auto 20px;
  max-width: 620px;
  font-weight: var(--fw-light);
  font-style: normal;
}
.testimonial-panel cite {
  font-size: 24px;
  font-style: normal;
  font-weight: var(--fw-light);
  color: #000;
  display: block;
}
.testimonial-panel cite small {
  display: block;
  color: #000;
  font-weight: var(--fw-light);
  font-size: 24px;
  margin-top: 4px;
}

/* ---------- Forms (Contact / Trading Account) ---------- */
.privacy-form-wrap { width: 50%; }
.privacy-form-wrap .btn-submit { width: 100%; display: block; }
.trading-form-wrap { width: 50%; }
.trading-form-wrap .btn-submit { width: 100%; display: block; }
body[data-page="trading-account-enquiry"] .form-page .form-intro { font-size: 20px; }
body[data-page="trading-account-enquiry"] .form-page h2 { font-size: 28px; }
body[data-page="trading-account-enquiry"] .field label { font-size: 16px; }
body[data-page="trading-account-enquiry"] .field input,
body[data-page="trading-account-enquiry"] .field select,
body[data-page="trading-account-enquiry"] .field textarea { font-size: 18px; padding: 12px 14px; }
body[data-page="trading-account-enquiry"] .btn-submit { font-size: 16px; padding: 16px 32px; }
.form-page {
  padding: 40px 0 80px;
}
.form-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.form-page-info h3 {
  font-size: 20px;
  font-weight: var(--fw-semi);
  margin: 22px 0 6px;
  color: var(--ink);
  letter-spacing: .02em;
}
.form-page-info h3:first-child { margin-top: 0; }
.form-page-info p, .form-page-info dl {
  font-size: 15px;
  font-weight: var(--fw-light);
  line-height: 1.65;
  margin: 0 0 6px;
  color: var(--ink);
}
.form-page-info dl {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 4px 12px;
  margin-top: 4px;
}
.form-page-info dt { color: var(--muted); }
.form-page-info dd { margin: 0; }

.form-page h2 {
  font-size: 24px;
  font-weight: var(--fw-semi);
  color: var(--ink);
  margin: 0 0 22px;
  letter-spacing: .02em;
}
.form-page .form-intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 24px;
  font-weight: var(--fw-light);
}
.field {
  display: block;
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: var(--fw-semi);
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: .02em;
}
.field label .req { color: var(--brand-red); margin-left: 3px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  font: inherit;
  font-size: 15px;
  font-weight: var(--fw-light);
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 2px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(215,5,23,.12);
  outline: 0;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.submit-row { margin-top: 12px; }
.btn-submit {
  padding: 14px 28px;
  font: inherit;
  font-size: 13px;
  font-weight: var(--fw-semi);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  background: #e5e5e5;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.btn-submit:hover { background: var(--brand-red); color: #fff; }
.form-note {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 0;
  font-weight: var(--fw-light);
}

/* ---------- Legal / long-form text pages ---------- */
.legal {
  padding: 50px 0 80px;
}
.legal h2 {
  font-size: 22px;
  font-weight: var(--fw-semi);
  color: var(--ink);
  margin: 32px 0 12px;
}
.legal h2:first-child { margin-top: 0; }
.legal p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: var(--fw-light);
}
.legal ul,
.legal ol { padding-left: 22px; margin: 0 0 14px; font-size: 20px; line-height: 1.7; font-weight: var(--fw-light); }
.legal li { margin: 4px 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,.85);
  padding: 20px 0;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: var(--fw-light);
  letter-spacing: .04em;
}
.footer-nav a:hover { color: #fff; }
.footer-copy {
  font-weight: var(--fw-light);
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  text-align: center;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), background .18s var(--ease);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.back-to-top:hover { background: var(--brand-red-dark); }
.back-to-top.is-shown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- Thanks page ---------- */
.thanks-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.thanks-card {
  max-width: 520px;
}
.thanks-check {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thanks-check svg { width: 48px; height: 48px; }
.thanks-card h1 {
  font-size: 30px;
  font-weight: var(--fw-semi);
  color: var(--ink);
  margin: 0 0 12px;
}
.thanks-card p {
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: var(--fw-light);
  line-height: 1.6;
  margin: 0 0 24px;
}
.thanks-card a {
  display: inline-block;
  padding: 12px 28px;
  background: var(--brand-red);
  color: #fff;
  font-size: 13px;
  font-weight: var(--fw-semi);
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
}
.thanks-card a:hover { background: var(--brand-red-dark); color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  :root { --topbar-h: 74px; }
  .topbar-inner { gap: 12px; align-items: center; padding-bottom: 0; }
  .primary-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--topbar-h);
    background: #fff;
    padding: 6px 24px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s var(--ease);
    z-index: 90;
  }
  .primary-nav a {
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav a.is-active { border-bottom-color: var(--brand-red); }
  body.menu-open .primary-nav { max-height: calc(100vh - var(--topbar-h)); }
  .burger { display: inline-flex; }
  .brand img { height: 60px; }
  .topbar-phone { font-size: 16px; }

  .cards-grid { grid-template-columns: 1fr; gap: 18px; }
  .split { grid-template-columns: 1fr; gap: 18px; padding: 30px 0 40px; }
  .features { padding: 30px 0 50px; }
  .features-grid { grid-template-columns: 1fr; gap: 22px; }
  .feature-icon { width: 120px; height: 120px; right: 0; left: auto; }
  .feature-icon svg { width: 44px; height: 44px; }
  .feature-text { padding: 30px 140px 30px 24px; min-height: 150px; border-radius: 0 80px 80px 0; }
  .feature-text h3 { font-size: 18px; }
  .feature-text p { font-size: 14px; }
  .feature:nth-child(odd) .feature-icon { right: 0; left: auto; }
  .feature:nth-child(odd) .feature-text { padding: 30px 140px 30px 24px; border-radius: 0 80px 80px 0; }

  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-page-grid { grid-template-columns: 1fr; gap: 30px; }
  .testimonial-layout { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-tabs { position: static; flex-direction: row; overflow-x: auto; }
  .testimonial-tab { flex: 1; text-align: center; white-space: nowrap; }
  .suppliers-grid { grid-template-columns: repeat(3, 1fr); gap: 22px 16px; }

  .footer-inner { gap: 10px; }

  .page-banner { min-height: 110px; }
  .page-banner-inner { padding: 24px; }
  .slider-wrapper { height: 420px; }
  .hero-inner { padding: 24px 16px; }
  .hero-title { font-size: 30px; letter-spacing: .01em; }
  .hero-bar { width: min(320px, 82vw); }
  .hero-sub { font-size: 14px; }
  .hero-copy { padding: 18px 0; gap: 10px; }
}

@media (max-width: 480px) {
  .suppliers-grid { grid-template-columns: repeat(2, 1fr); }
  .supplier-strip marquee { height: 130px !important; }
  .supplier-strip marquee a { margin: 0 18px; }
  .supplier-strip marquee img { width: 90px; height: 90px; }
}
