/* ==========================================================================
   C Line TL — Styles
   A professional, production-ready stylesheet for a trucking company website.
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --clr-navy:       #081A2F;
  --clr-dark-blue:  #102A43;
  --clr-blue:       #1F6FEB;
  --clr-blue-hover: #1859c4;
  --clr-steel:      #5F6B78;
  --clr-light:      #F4F7FA;
  --clr-white:      #FFFFFF;
  --clr-amber:      #F4A62A;
  --clr-amber-hover:#d9911e;
  --clr-border:     #E2E8F0;
  --clr-overlay:    rgba(8, 26, 47, 0.72);

  /* Typography */
  --ff-primary: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-base:   1rem;        /* 16px */
  --fs-sm:     0.875rem;    /* 14px */
  --fs-xs:     0.8125rem;   /* 13px */
  --fs-lg:     1.125rem;    /* 18px */
  --fs-xl:     1.25rem;     /* 20px */
  --fs-2xl:    1.5rem;      /* 24px */
  --fs-3xl:    2rem;        /* 32px */
  --fs-4xl:    2.5rem;      /* 40px */
  --fs-hero:   3.25rem;     /* 52px */
  --lh-body:   1.7;
  --lh-heading:1.2;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  0.75rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 5rem;
  --sp-5xl: 6rem;

  /* Layout */
  --max-w:    1200px;
  --header-h: 72px;

  /* Effects */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(8,26,47,0.06), 0 1px 2px rgba(8,26,47,0.04);
  --shadow-md: 0 4px 12px rgba(8,26,47,0.08), 0 2px 4px rgba(8,26,47,0.04);
  --shadow-lg: 0 10px 30px rgba(8,26,47,0.10), 0 4px 8px rgba(8,26,47,0.05);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-primary);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--clr-steel);
  background: var(--clr-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--clr-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-blue-hover); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-md);
  background: var(--clr-blue);
  color: var(--clr-white);
  padding: var(--sp-xs) var(--sp-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--fs-sm);
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus {
  top: var(--sp-md);
  color: var(--clr-white);
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.section {
  padding: var(--sp-5xl) 0;
}

.section--alt {
  background: var(--clr-light);
}

.section-label {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-blue);
  margin-bottom: var(--sp-sm);
}

.section-heading {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--clr-navy);
  line-height: var(--lh-heading);
  margin-bottom: var(--sp-lg);
}

.section-subtext {
  font-size: var(--fs-lg);
  max-width: 680px;
  color: var(--clr-steel);
}

.placeholder {
  background: #FFF7E6;
  border: 1px dashed var(--clr-amber);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  font-weight: 600;
  color: #9A6C00;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--fs-base);
  transition: all var(--transition);
  text-align: center;
  min-height: 48px;
  line-height: 1.2;
}

.btn--primary {
  background: var(--clr-blue);
  color: var(--clr-white);
  box-shadow: 0 2px 8px rgba(31,111,235,0.25);
}
.btn--primary:hover {
  background: var(--clr-blue-hover);
  color: var(--clr-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(31,111,235,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.8);
}

.btn--secondary {
  background: var(--clr-light);
  color: var(--clr-navy);
}
.btn--secondary:hover {
  background: var(--clr-border);
  color: var(--clr-navy);
}

.btn--amber {
  background: var(--clr-amber);
  color: var(--clr-navy);
}
.btn--amber:hover {
  background: var(--clr-amber-hover);
  transform: translateY(-1px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-navy);
  height: var(--header-h);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  background: rgba(8,26,47,0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
  color: var(--clr-white);
  flex-shrink: 0;
}
.logo:hover { color: var(--clr-white); }

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.logo-text span {
  color: var(--clr-amber);
}

/* Desktop Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.nav-list a {
  display: block;
  padding: var(--sp-xs) var(--sp-md);
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-sm);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-list a:hover,
.nav-list a:focus {
  color: var(--clr-white);
  background: rgba(255,255,255,0.08);
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  border-radius: var(--radius-sm);
}
.nav-toggle:hover {
  background: rgba(255,255,255,0.08);
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,26,47,0.85) 0%, rgba(16,42,67,0.7) 50%, rgba(8,26,47,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--sp-5xl) 0;
  max-width: 680px;
}

.hero-headline {
  font-size: var(--fs-hero);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: var(--sp-lg);
}

.hero-subtext {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--sp-2xl);
  line-height: var(--lh-body);
}

.hero-tagline {
  margin-top: var(--sp-2xl);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}
.hero-tagline::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-amber);
  flex-shrink: 0;
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-2xl) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md);
}

.trust-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-light);
  border-radius: var(--radius-md);
  color: var(--clr-blue);
}
.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-item h3 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 2px;
}
.trust-item p {
  font-size: var(--fs-xs);
  color: var(--clr-steel);
  line-height: 1.5;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-text p {
  margin-bottom: var(--sp-lg);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  margin-top: var(--sp-2xl);
}

.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-2xl) var(--sp-xl);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31,111,235,0.2);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EBF3FF, #D6E6FF);
  border-radius: var(--radius-md);
  color: var(--clr-blue);
  margin-bottom: var(--sp-lg);
}
.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: var(--sp-xs);
}
.service-card p {
  font-size: var(--fs-sm);
  color: var(--clr-steel);
  line-height: 1.65;
}

/* ---------- Process / Approach ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  margin-top: var(--sp-2xl);
}

.process-step {
  text-align: center;
  padding: var(--sp-xl) var(--sp-md);
}

.process-number {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-navy);
  color: var(--clr-white);
  font-size: var(--fs-xl);
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: var(--sp-lg);
}

.process-step h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: var(--sp-xs);
}
.process-step p {
  font-size: var(--fs-sm);
  color: var(--clr-steel);
  line-height: 1.6;
}

/* Connector line between steps (desktop) */
.process-grid::before {
  display: none; /* only visual connector */
}

/* ---------- Safety ---------- */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: start;
  margin-top: var(--sp-2xl);
}

.safety-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.safety-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  background: var(--clr-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
}

.safety-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22863a;
  margin-top: 2px;
}
.safety-check svg {
  width: 20px;
  height: 20px;
}

.safety-item h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-navy);
  margin-bottom: 2px;
}
.safety-item p {
  font-size: var(--fs-xs);
  color: var(--clr-steel);
  line-height: 1.5;
}

/* ---------- Service Area ---------- */
.area-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
  margin-top: var(--sp-2xl);
}

.area-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-xl);
  text-align: center;
}
.area-card h3 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-navy);
  margin-bottom: var(--sp-xs);
}
.area-card .placeholder {
  font-size: var(--fs-sm);
}

.area-note {
  margin-top: var(--sp-xl);
  font-size: var(--fs-sm);
  color: var(--clr-steel);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  margin-top: var(--sp-2xl);
}

.contact-info { display: flex; flex-direction: column; gap: var(--sp-xl); }

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-light);
  border-radius: var(--radius-md);
  color: var(--clr-blue);
}
.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-block h3 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 2px;
}

.contact-block p,
.contact-block a {
  font-size: var(--fs-sm);
  color: var(--clr-steel);
}
.contact-block a:hover {
  color: var(--clr-blue);
}

.contact-panel {
  background: var(--clr-navy);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--sp-lg);
}
.contact-panel h3 {
  color: var(--clr-white);
  font-size: var(--fs-2xl);
  font-weight: 700;
}
.contact-panel p {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.contact-panel .btn-group {
  margin-top: var(--sp-md);
  width: 100%;
}
.contact-panel .btn {
  flex: 1;
  min-width: 160px;
}

.contact-disclaimer {
  margin-top: var(--sp-xl);
  font-size: var(--fs-xs);
  color: var(--clr-steel);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--clr-navy);
  color: rgba(255,255,255,0.6);
  padding: var(--sp-4xl) 0 var(--sp-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-3xl);
  margin-bottom: var(--sp-3xl);
}

.footer-brand .logo {
  margin-bottom: var(--sp-md);
}
.footer-brand p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 320px;
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--clr-white);
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: var(--sp-md);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-nav ul { display: flex; flex-direction: column; gap: var(--sp-xs); }
.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-sm);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--clr-white); }

.footer-contact p,
.footer-contact a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.footer-contact a:hover { color: var(--clr-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-md);
}
.footer-bottom p {
  font-size: var(--fs-xs);
}
.footer-bottom a {
  color: rgba(255,255,255,0.6);
}
.footer-bottom a:hover {
  color: var(--clr-white);
}

.footer-disclaimer {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
  max-width: 800px;
  margin: var(--sp-lg) auto 0;
  text-align: center;
  line-height: 1.6;
}

/* ---------- Privacy Page ---------- */
.privacy-hero {
  background: var(--clr-navy);
  padding: var(--sp-4xl) 0 var(--sp-2xl);
}
.privacy-hero h1 {
  color: var(--clr-white);
  font-size: var(--fs-3xl);
  font-weight: 700;
  margin-bottom: var(--sp-xs);
}
.privacy-hero p {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-sm);
}

.privacy-content {
  padding: var(--sp-3xl) 0 var(--sp-5xl);
}
.privacy-body {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-notice {
  background: #FFF7E6;
  border: 1px solid var(--clr-amber);
  border-left: 4px solid var(--clr-amber);
  border-radius: var(--radius-sm);
  padding: var(--sp-lg);
  margin-bottom: var(--sp-2xl);
  font-size: var(--fs-sm);
  color: #9A6C00;
}

.privacy-body h2 {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-navy);
  margin-top: var(--sp-2xl);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-xs);
  border-bottom: 1px solid var(--clr-border);
}

.privacy-body h3 {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-navy);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}

.privacy-body p {
  margin-bottom: var(--sp-md);
  line-height: var(--lh-body);
}

.privacy-body ul {
  list-style: disc;
  padding-left: var(--sp-xl);
  margin-bottom: var(--sp-md);
}
.privacy-body ul li {
  margin-bottom: var(--sp-xs);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  margin-top: var(--sp-2xl);
  font-weight: 600;
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Focus Styles ---------- */
:focus-visible {
  outline: 2px solid var(--clr-blue);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ============================
   Responsive
   ============================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --fs-hero: 2.5rem;
    --fs-3xl: 1.75rem;
    --sp-5xl: 4rem;
  }

  .about-grid,
  .safety-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-details {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-image { order: -1; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --fs-hero: 2rem;
    --fs-3xl: 1.5rem;
    --fs-2xl: 1.25rem;
    --sp-5xl: 3rem;
    --sp-4xl: 2.5rem;
    --header-h: 64px;
  }

  .container {
    padding: 0 var(--sp-md);
  }

  /* Mobile Nav */
  .nav-toggle { display: flex; }

  .nav-list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--clr-navy);
    padding: var(--sp-xl);
    gap: var(--sp-xs);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-list.active {
    transform: translateX(0);
  }
  .nav-list a {
    font-size: var(--fs-lg);
    padding: var(--sp-md);
  }

  /* Hero */
  .hero { min-height: 480px; }
  .hero-content { padding: var(--sp-3xl) 0; }
  .btn-group { flex-direction: column; }
  .btn { width: 100%; }

  /* Trust */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-md);
  }
  .trust-item { padding: var(--sp-sm); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Small phone */
@media (max-width: 375px) {
  :root {
    --fs-hero: 1.75rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}
