/* ============================================================
   MATIS INDUSTRIAL DISTRIBUTORS — Stylesheet
   ============================================================ */

:root {
  --ink:    #16212a;
  --muted:  #5c6872;
  --line:   #d8e0e6;
  --paper:  #f7f5ef;
  --panel:  #ffffff;
  --steel:  #334551;
  --red:    #b5212b;
  --gold:   #d7a22a;
  --blue:   #1e5d7a;
  --blue-light: #e8f2f7;
  --radius: 10px;
  --shadow: 0 4px 16px rgba(22, 33, 42, 0.08), 0 1px 3px rgba(22, 33, 42, 0.05);
  --shadow-hover: 0 8px 28px rgba(22, 33, 42, 0.14), 0 2px 6px rgba(22, 33, 42, 0.06);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { max-width: 100%; height: auto; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(22,33,42,0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 800;
  color: var(--steel);
  flex-shrink: 0;
}

.brand img {
  display: block;
  width: 106px;
  height: auto;
}

.brand span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

.site-nav a {
  text-decoration: none;
  color: var(--steel);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--blue-light);
  color: var(--blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--steel);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  padding: clamp(120px, 14vw, 190px) clamp(20px, 5vw, 76px) 80px;
  overflow: hidden;
  color: #fff;
  background: #1e2a32;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #0c141b;
}

.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,18,25,0.94) 0%, rgba(10,18,25,0.7) 45%, rgba(10,18,25,0.12) 100%);
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(3.2rem, 7.5vw, 6.2rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.01em;
}

.hero-copy {
  max-width: 580px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(238,244,246,0.9);
  font-weight: 400;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }

.button.primary { background: var(--gold); border-color: var(--gold); color: #1e2a32; }
.button.primary:hover { background: #e3b34a; border-color: #e3b34a; }

.button.secondary { background: rgba(255,255,255,0.12); }
.button.secondary:hover { background: rgba(255,255,255,0.22); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--steel);
  color: #fff;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 20px clamp(20px, 5vw, 76px);
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 32px;
  text-align: center;
}

.trust-stat strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.trust-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.18);
}

/* ===== SECTIONS (shared) ===== */
.section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 76px);
}

h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-heading.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-sub {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.section-sub.light { color: rgba(255,255,255,0.65); }

.section-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ===== ABOUT / SPLIT ===== */
.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  background: #fff;
  align-items: start;
}

.split-heading { padding-top: 4px; }

.split-heading h2 { max-width: 400px; }

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}

.text-link:hover { border-bottom-color: var(--blue); }

.copy-stack p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ===== WHY MATIS ===== */
.why-matis {
  background: var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.why-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  margin-bottom: 18px;
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: #fff; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial-card {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.testimonial-card figcaption strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.testimonial-card figcaption span {
  font-size: 0.84rem;
  color: var(--muted);
}

/* ===== MANUFACTURERS ===== */
.manufacturers { background: var(--paper); }

.manufacturer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 12px;
}

.manufacturer-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manufacturer-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--blue);
}

.manufacturer-card strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}

.manufacturer-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

/* ===== PRODUCTS ===== */
.products { background: #fff; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.category-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top: 3px solid var(--blue);
  padding: 22px 20px;
  min-height: 170px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.category-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-top-color: var(--gold);
}

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  transition: background var(--transition), color var(--transition);
}

.category-card:hover .category-icon {
  background: #fbeed2;
  color: var(--gold);
}

.category-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.catalog-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.catalog-note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.catalog-note a:hover { border-bottom-color: var(--blue); }

/* ===== FEATURED ===== */
.featured { background: #eef2f5; }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.vendor-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 120px;
  padding: 20px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.vendor-logo:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--blue);
}

.vendor-logo strong {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--steel);
  line-height: 1;
}

.vendor-logo span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* ===== MEMBERSHIPS ===== */
.memberships { background: #fff; }

.section-heading.compact { margin-bottom: 28px; }

.member-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.member-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.member-logo:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.member-logo-abbr {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.member-logo strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
}

.member-logo span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq { background: var(--paper); }

.text-link-inline {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.text-link-inline:hover { border-bottom-color: var(--blue); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--gold);
  color: #1e2a32;
}

.faq-item summary:hover { color: var(--blue); }

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.faq-answer a:hover { border-bottom-color: var(--blue); }

/* ===== CONTACT ===== */
.contact {
  background: #1e2e3a;
  color: #fff;
}

.contact .section-kicker { color: var(--gold); }

.contact h2 { color: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 128px;
  padding: 22px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.contact-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.contact-icon {
  color: var(--gold);
}

.contact-card span {
  display: block;
  color: rgba(183,195,202,0.85);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.contact-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

/* Hours block */
.hours-block {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
}

.hours-block h3 {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hours-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 440px;
}

.hours-table td {
  padding: 7px 0;
  font-size: 0.96rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}

.hours-table td:last-child {
  text-align: right;
  color: #fff;
}

.hours-table tr:last-child td { border-bottom: none; }

.hours-note {
  margin: 18px 0 0;
  font-size: 0.88rem;
  color: rgba(183,195,202,0.8);
}

.hours-note a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.hours-note a:hover { border-bottom-color: var(--gold); }

/* ===== FOOTER ===== */
.site-footer {
  background: #10181f;
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: 40px;
  padding: 56px clamp(20px, 5vw, 76px) 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { filter: brightness(0) invert(1); opacity: 0.8; margin-bottom: 12px; }

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 220px;
}

.footer-links h4,
.footer-contact h4,
.footer-memberships h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-links a:hover { color: #fff; }

.footer-contact p {
  margin: 0 0 6px;
  font-size: 0.9rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact a:hover { color: #fff; }

.footer-member-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
  transition: background var(--transition);
}

.footer-badge:hover { background: rgba(255,255,255,0.2); }

.footer-bottom {
  padding: 18px clamp(20px, 5vw, 76px);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover { color: #fff; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--steel);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(22,33,42,0.25);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover { background: var(--red); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 840px) {
  .site-header { align-items: center; min-height: 64px; }

  .brand span { display: none; }

  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(22,33,42,0.1);
  }

  .site-nav.open { display: flex; }

  .site-nav a {
    padding: 12px 8px;
    border-top: 1px solid var(--line);
    border-radius: 0;
  }

  .hero { min-height: 560px; }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(10,18,25,0.55) 0%, rgba(10,18,25,0.92) 75%);
  }

  .hero-actions .button { flex: 1 1 auto; }

  .split {
    display: block;
  }

  .split-heading { margin-bottom: 28px; }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-bar-inner {
    gap: 0;
  }

  .trust-stat { padding: 10px 18px; }

  .trust-divider { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-wrap: wrap; justify-content: flex-start; padding: 16px 20px; }
  .trust-stat { align-items: flex-start; padding: 8px 0; width: 50%; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
