/* ===========================================================
   Freedom Auto Glass Solutions — stylesheet
   Palette: navy + blue, matched to the client-preferred "alt-freedom" look.
   =========================================================== */

:root {
  --navy-900: #0d2038;
  --navy-800: #123252;
  --navy-700: #1a4166;
  --blue-500: #2f80ed;
  --blue-600: #1f68d1;
  --ink: #172a3a;
  --ink-light: #52697d;
  --bg-light: #f6f9fb;
  --white: #ffffff;
  --border: #e2e8f0;
  --danger: #d64545;
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(13, 32, 56, 0.08);
  --shadow-md: 0 8px 30px rgba(13, 32, 56, 0.12);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Offsets every in-page anchor target so it doesn't land underneath the
   sticky ~92px header — covers nav links, "Read More" links, and CTA buttons. */
[id] { scroll-margin-top: 100px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-900); line-height: 1.2; margin: 0 0 0.5em; }
p { margin: 0 0 1em; color: var(--ink-light); }
a { color: var(--blue-600); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  margin-bottom: 10px;
}
.eyebrow--center { text-align: center; }
.eyebrow__star { display: inline-block; font-size: 0.75em; opacity: 0.75; vertical-align: middle; margin: 0 2px; }

.section-title {
  font-size: clamp(24px, 3.2vw, 34px);
  max-width: 760px;
}
.section-title--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.link-underline {
  display: inline-block;
  font-weight: 600;
  border-bottom: 2px solid var(--blue-500);
  padding-bottom: 2px;
  margin-bottom: 30px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-align: center;
}
.btn--primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--blue-600); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); }
.btn--outline {
  background: transparent;
  border-color: var(--blue-500);
  color: var(--blue-600);
}
.btn--outline:hover { background: var(--blue-500); color: var(--white); }
.btn--full { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900);
  color: #cfe0f0;
  font-size: 13px;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar__contact a { color: #cfe0f0; margin-right: 18px; }
.topbar__contact a:hover { color: var(--white); }
/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__img {
  height: 64px;
  width: auto;
  display: block;
}

.nav { flex: 1; }
.nav ul { display: flex; gap: 60px; justify-content: center; }
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}
.nav a:hover { color: var(--blue-600); }

.header__cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(47, 128, 237, 0.25), transparent 45%),
    radial-gradient(circle at 15% 90%, rgba(255, 255, 255, 0.06), transparent 50%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: stretch;
  padding: 70px 20px 90px;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding-top: 10px;
}
.hero__copy .eyebrow { color: var(--white); }
.hero__wordmark { margin: 18px 0 6px; display: flex; flex-direction: column; align-items: center; }
.hero__wordmark img { display: block; max-width: 300px; width: 100%; height: auto; }
.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  margin-top: 2px;
}
.hero h1 span { color: var(--white); }
.hero__sub {
  color: #cfe0f0;
  font-size: 17px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 26px 0 30px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero__trust li {
  color: #cfe0f0;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__trust li::before {
  content: "\2713";
  color: var(--white);
  font-weight: 700;
}

/* ---------- Quote panel ---------- */
.quote-panel {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.quote-panel__title {
  font-family: 'Lobster', cursive;
  font-weight: 400;
  font-size: 32px;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.quote-panel > p { font-size: 14px; }

.quote-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row--split > div { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
}
.form-row input.is-invalid,
.form-row select.is-invalid {
  border-color: var(--danger);
}
.error-msg {
  font-size: 12px;
  color: var(--danger);
  min-height: 14px;
}
.form-row--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.form-row--checkbox input { margin-top: 3px; }
.form-row--checkbox label { font-size: 13px; font-weight: 400; color: var(--ink-light); }

.form-success {
  display: none;
  background: #e7f7ef;
  border: 1px solid #b6e6c9;
  color: #1e7a45;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
}
.form-success.is-visible { display: block; }
.quote-form.is-submitted .form-row,
.quote-form.is-submitted button[type="submit"] { display: none; }

/* ---------- Tagline banner ---------- */
.tagline-banner {
  background: var(--navy-900);
  border-top: 3px solid var(--blue-500);
  border-bottom: 3px solid var(--blue-500);
  padding: 16px 20px;
}
.tagline-banner p {
  margin: 0;
  text-align: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tagline-banner .star {
  color: var(--white);
  margin: 0 16px;
  font-size: 11px;
  vertical-align: middle;
  opacity: 0.7;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stat-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 20px;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--navy-900);
}
.stat__label {
  font-size: 13px;
  color: var(--ink-light);
}

/* ---------- Intro + highlight cards ---------- */
.intro { padding: 70px 0 40px; }
.intro__sub { max-width: 640px; font-size: 15.5px; }
.optional-tag { font-weight: 400; color: var(--ink-light); text-transform: none; letter-spacing: normal; }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.highlight-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.highlight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }

/* Large themed line-art watermark that reveals on hover, standing in for a
   photographic background since we don't have real job-site photography. */
.highlight-card__watermark {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 160px;
  height: 160px;
  color: var(--blue-500);
  opacity: 0;
  transform: scale(0.85) rotate(-8deg);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.4s ease;
  pointer-events: none;
}
.highlight-card:hover .highlight-card__watermark {
  opacity: 0.1;
  transform: scale(1.05) rotate(-3deg);
  color: var(--navy-900);
}

.highlight-card__body { position: relative; z-index: 1; }

.highlight-card__icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy-700);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.highlight-card__icon svg { width: 32px; height: 32px; }
.highlight-card__icon .icon-accent-fill { fill: var(--blue-500); }
.highlight-card__icon .icon-accent-stroke { stroke: var(--blue-500); }
.highlight-card:hover .highlight-card__icon {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.highlight-card h3 { font-family: 'Lobster', cursive; font-weight: 400; font-size: 22px; }
.highlight-card p { font-size: 14.5px; }
.highlight-card a { font-weight: 600; font-size: 14px; }

/* ---------- Services tabs ---------- */
.services { background: var(--navy-900); padding: 80px 0; }
.services .section-title,
.services .eyebrow { color: var(--white); }

.services-tabs { margin-top: 40px; }
.services-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}
.tab-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: #cfe0f0;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.tab-btn:hover { background: rgba(255,255,255,0.14); }
.tab-btn.is-active {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: var(--white);
}

.services-tabs__panels {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeIn 0.25s ease; }
.tab-panel h3 { font-family: 'Lobster', cursive; font-weight: 400; font-size: 26px; }
.tab-panel__lead { margin-bottom: 6px; font-size: 17px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Short highlight bullets used consistently across every services tab */
.tab-highlights { margin: 4px 0 22px; display: flex; flex-direction: column; gap: 10px; }
.tab-highlights li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--ink);
}
.tab-highlights li::before {
  content: "\2605";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--blue-500);
  font-size: 13px;
}

/* Why Fleet Managers Choose Freedom — red vertical-bar callouts, matching the flyer */
.fleet-why { margin: 20px 0 26px; }
.fleet-why__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-900);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.fleet-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.fleet-why__item { border-left: 3px solid var(--blue-500); padding-left: 14px; }
.fleet-why__item h5 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy-900);
  margin: 0 0 4px;
}
.fleet-why__item p { font-size: 13.5px; margin: 0; color: var(--ink-light); }

/* Freedom Fleet Advantage — cream box with navy header bar + red star bullets */
.fleet-list { background: var(--bg-light); border-radius: 10px; overflow: hidden; margin-bottom: 24px; }
.fleet-list__header {
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 18px;
  margin: 0;
}
.fleet-list__items { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 14px; }
.fleet-list__items li { position: relative; padding-left: 22px; }
.fleet-list__items li::before {
  content: "\2605";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--blue-500);
  font-size: 14px;
}
.fleet-list__items li strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy-900);
  margin-bottom: 2px;
}
.fleet-list__items li span { display: block; font-size: 13px; color: var(--ink-light); }

@media (max-width: 600px) {
  .fleet-why__grid { grid-template-columns: 1fr; }
}

/* ---------- Process ---------- */
.process { padding: 80px 0; background: var(--bg-light); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: #2f80ed 6px solid;
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Big faint step number tucked in the corner, echoing the highlight-card watermark treatment */
.process-step__watermark {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  color: var(--navy-900);
  opacity: 0.09;
  pointer-events: none;
  transition: color 0.25s ease;
}
.process-step:hover .process-step__watermark {
  color: #2f80ed;
}

.process-step__icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--navy-700);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.process-step__icon svg { width: 32px; height: 32px; }
.process-step__icon .icon-accent-fill { fill: var(--blue-500); }
.process-step:hover .process-step__icon {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.process-step h3 { position: relative; z-index: 1; font-family: 'Lobster', cursive; font-weight: 400; font-size: 20px; }
.process-step p { position: relative; z-index: 1; font-size: 14px; }

/* Connecting arrows between steps — desktop 4-column layout only */
@media (min-width: 961px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 45px;
    right: -19px;
    width: 14px;
    height: 14px;
    border-top: 3px solid var(--blue-500);
    border-right: 3px solid var(--blue-500);
    transform: rotate(45deg);
    opacity: 0.45;
    z-index: 2;
  }
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 80px 0; }

.testimonial-carousel {
  position: relative;
  max-width: 680px;
  margin: 40px auto 0;
}
.testimonial-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  position: relative;
  text-align: center;
}
.testimonial-card .avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}
.testimonial-card p { color: var(--navy-900); font-size: 19px; font-weight: 600; line-height: 1.5; max-width: 520px; margin-left: auto; margin-right: auto; }
.testimonial-card footer { font-family: 'Lobster', cursive; font-weight: 400; color: var(--navy-900); font-size: 17px; }

.carousel-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 50px;
  height: 44px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: var(--navy-900);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-arrow--prev svg { margin-right: 2px; }
.carousel-arrow--next svg { margin-left: 2px; }
.carousel-arrow:hover { background: var(--blue-500); }
.carousel-arrow:active { transform: translateY(-50%) scale(0.92); }
.carousel-arrow--prev { left: -22px; }
.carousel-arrow--next { right: -22px; }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dot.is-active { background: var(--blue-500); transform: scale(1.25); }

/* ---------- Closing statement ---------- */
.closing-statement {
  background: var(--navy-900);
  border-top: 4px solid var(--blue-500);
  border-bottom: 4px solid var(--blue-500);
  color: var(--white);
  text-align: center;
  padding: 70px 20px;
}
.closing-statement h2 { color: var(--white); font-size: clamp(22px, 3vw, 30px); max-width: 780px; margin-left: auto; margin-right: auto; }
.closing-statement p { color: #dbe9f7; max-width: 600px; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #b9cadb; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding: 60px 20px 40px;
}
.footer__col h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: #b9cadb; font-size: 14px; }
.footer__col a:hover { color: var(--white); }
.footer__col--about p { font-size: 14px; color: #a9bdd0; }
.logo--footer { margin-bottom: 16px; display: inline-flex; }
.logo__img--footer {
  height: 88px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.footer__contact li { display: flex; flex-direction: column; gap: 2px; font-size: 14px; }
.footer__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: #7f95aa; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 20px;
  font-size: 13px;
}

/* ===========================================================
   Responsive — mobile-first breakpoints
   =========================================================== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--about { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .topbar__contact a { margin-right: 12px; font-size: 12px; }
  .logo__img { height: 48px; }
  .nav { display: none; }
  .nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 20px;
  }
  .nav.is-open ul { flex-direction: column; gap: 16px; }
  .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header { position: sticky; }

  .stat-strip__inner { grid-template-columns: 1fr 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row--split { grid-template-columns: 1fr; }
  .services-tabs__panels { padding: 26px; }
  .carousel-arrow { width: 40px; height: 40px; }
  .carousel-arrow svg { width: 16px; height: 16px; }
  .carousel-arrow--prev { left: 4px; }
  .carousel-arrow--next { right: 4px; }
  .testimonial-card { padding: 34px 44px; }
  .footer__grid { grid-template-columns: 1fr; padding: 50px 20px 30px; }
  .tagline-banner p { font-size: 11px; letter-spacing: 0.08em; }
  .tagline-banner .star { margin: 0 8px; }
}
