/* ============================================================
   MagSheathing.com — Global Stylesheet
   Brand palette: Dark Navy / Red / Grey (matching logo)
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #D0282A;   /* Brand Red */
  --primary-dk: #a81f21;   /* Darker Red */
  --navy:       #1E2A3A;   /* Brand Dark Navy (used for backgrounds) */
  --navy-dk:    #141d28;   /* Deeper Navy */
  --grey:       #9BA3AE;   /* Brand Mid Grey */
  --dark:       #18191c;   /* Body/heading text — warm near-black (matches LGS Built) */
  --mid:        #3d3f44;   /* Secondary text — dark charcoal */
  --light:      #F5F6F8;   /* Off-white / light grey */
  --border:     #E1E5EA;
  --white:      #ffffff;
  --success:    #2d8a4e;
  --radius:     6px;
  --shadow:     0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.13);
  --font:       'Inter', 'Segoe UI', system-ui, sans-serif;
  --max-w:      1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dk); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--mid); }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-alt { background: var(--light); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 620px; margin: 16px auto 0; font-size: 1.05rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dk); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(208,40,42,0.3); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white  { background: var(--white); color: var(--primary); }
.btn-white:hover  { background: var(--light); color: var(--primary-dk); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 1rem;
  letter-spacing: -0.05em;
}
.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--primary); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius);
  transition: all 0.15s;
}
.nav-links > li > a:hover { color: var(--primary); background: var(--light); }
.nav-links > li > a.has-dropdown::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.7rem;
}

/* Dropdowns */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  z-index: 200;
}
.nav-links > li:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--mid);
  border-radius: 6px;
  transition: all 0.15s;
}
.dropdown a:hover { background: var(--light); color: var(--primary); }
.dropdown a strong { display: block; color: var(--dark); font-weight: 600; font-size: 0.9rem; }
.dropdown a span { font-size: 0.8rem; }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.nav-phone:hover { color: var(--primary); }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #0e1720 0%, #1E2A3A 60%, #2a3848 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}
.hero h1 { color: white; margin-bottom: 20px; }
.hero h1 span { color: #e87070; }
.hero p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 32px; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hero-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 32px;
  color: white;
}
.hero-card h3 { color: white; margin-bottom: 20px; font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.7; }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hero-stat { text-align: center; padding: 16px; background: rgba(255,255,255,0.08); border-radius: 10px; }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: white; line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.hero-certifications { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-cert-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.hero-cert { background: rgba(255,255,255,0.12); border-radius: 6px; padding: 4px 10px; font-size: 0.78rem; font-weight: 600; }

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.feature-strip { padding: 0; border-bottom: 1px solid var(--border); }
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 36px 32px;
  border-right: 1px solid var(--border);
}
.feature-strip-item:last-child { border-right: none; }
.feature-strip-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: #fef0f0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.feature-strip-item h3 { font-size: 1rem; margin-bottom: 4px; }
.feature-strip-item p  { font-size: 0.88rem; }

/* ============================================================
   PRODUCTS TABLE
   ============================================================ */
.products-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--primary); color: white; }
thead th { padding: 14px 18px; font-size: 0.88rem; font-weight: 600; text-align: left; }
tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
tbody tr:hover { background: var(--light); }
tbody td { padding: 13px 18px; font-size: 0.9rem; }
tbody td:first-child { font-weight: 600; color: var(--primary); }
.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-blue  { background: #f3f4f6; color: #374151; }
.badge-green { background: #dcfce7; color: #15803d; }

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.2s;
  box-shadow: var(--shadow);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); border-left: 4px solid var(--primary); }
.benefit-icon { font-size: 2rem; margin-bottom: 14px; }
.benefit-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.benefit-card p  { font-size: 0.88rem; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table thead th { background: var(--dark); color: white; padding: 16px 20px; font-size: 0.9rem; text-align: center; }
.comparison-table thead th:first-child { text-align: left; }
.comparison-table thead th.highlight { background: var(--primary); }
.comparison-table tbody tr { border-bottom: 1px solid var(--border); }
.comparison-table tbody tr:hover { background: var(--light); }
.comparison-table tbody td { padding: 14px 20px; font-size: 0.9rem; text-align: center; }
.comparison-table tbody td:first-child { text-align: left; font-weight: 600; }
.comparison-table tbody td.highlight { background: #fef5f5; }
.check { color: var(--success); font-size: 1.1rem; font-weight: 700; }
.cross { color: #ef4444; font-size: 1.1rem; }

/* ============================================================
   APPLICATIONS
   ============================================================ */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.app-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.app-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.app-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a3848 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.app-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--primary);
}
.app-card-body { padding: 20px; }
.app-card-body h3 { margin-bottom: 6px; }
.app-card-body p  { font-size: 0.88rem; }

/* ============================================================
   STATS / TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy);
  color: white;
  padding: 48px 0;
  border-top: 4px solid var(--primary);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-stat-num { font-size: 2.4rem; font-weight: 800; color: white; line-height: 1; }
.trust-stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-top: 6px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.testimonial-stars { color: var(--primary); font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-text { font-style: italic; color: var(--mid); margin-bottom: 16px; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; }
.testimonial-source { font-size: 0.78rem; color: var(--mid); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 80px 0;
  border-top: 4px solid var(--primary);
}
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.88rem; margin-top: 12px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: white; font-size: 0.9rem; margin-bottom: 16px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col li + li { margin-top: 8px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-contact-icon { font-size: 1rem; margin-top: 2px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: white; }

/* Nav logo in footer (white version) */
.footer .nav-logo-text { color: white; }
.footer .nav-logo-icon { background: var(--primary); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  color: white;
  padding: 64px 0;
  text-align: center;
  border-bottom: 4px solid var(--primary);
}
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================================
   CONTENT PAGE (prose + sidebars)
   ============================================================ */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.content-main h2 { margin: 40px 0 16px; }
.content-main h2:first-child { margin-top: 0; }
.content-main p { margin-bottom: 16px; }
.content-main ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.content-main ul li { margin-bottom: 8px; color: var(--mid); }
.sidebar-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-card h4 { margin-bottom: 12px; font-size: 0.95rem; }
.sidebar-card ul { list-style: none; }
.sidebar-card ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a { color: var(--mid); }
.sidebar-card ul li a:hover { color: var(--primary); }
.sidebar-cta { background: var(--primary); color: white; border-radius: 12px; padding: 24px; text-align: center; }
.sidebar-cta h4 { color: white; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  transition: background 0.15s;
}
.faq-question:hover { background: var(--light); }
.faq-question::after { content: '+'; font-size: 1.3rem; color: var(--primary); font-weight: 300; }
.faq-question.open::after { content: '−'; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s; }
.faq-answer.open { padding: 0 24px 18px; max-height: 400px; }
.faq-answer p { font-size: 0.92rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 36px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: var(--font);
  color: var(--dark);
  transition: border-color 0.15s;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(208,40,42,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-card {
  background: var(--light);
  border-radius: 16px;
  padding: 36px;
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon { width: 44px; height: 44px; min-width: 44px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-info-item h4 { margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-item p  { font-size: 0.88rem; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.2s;
  background: var(--white);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img {
  height: 180px;
  background: linear-gradient(160deg, var(--navy) 0%, #2a3848 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.product-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--primary);
}
.product-card-body { padding: 24px; }
.product-card-body h3 { margin-bottom: 8px; }
.product-card-body p  { font-size: 0.88rem; margin-bottom: 16px; }
.product-specs { margin-bottom: 16px; }
.product-spec { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.product-spec:last-child { border-bottom: none; }
.product-spec-label { color: var(--mid); }
.product-spec-val { font-weight: 600; }

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

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
  }
  .nav.open .dropdown { position: static; box-shadow: none; border: none; background: var(--light); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .feature-strip-inner { grid-template-columns: 1fr; }
  .feature-strip-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .hero { padding: 60px 0; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
}
