/* ============================================================
   BLUEYS TOWING — STYLES
   Brand: Navy #1a3875 | Lime #a2ca28 | Gold #c9a84c
   Font: Outfit (body) + Dancing Script (logo cursive)
   ============================================================ */

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

:root {
  --navy:        #1a3875;
  --navy-dark:   #112558;
  --navy-light:  #22497a;
  --lime:        #a2ca28;
  --lime-dark:   #87ab1e;
  --lime-light:  #c8e55a;
  --gold:        #c9a84c;
  --silver:      #b8c4cc;
  --white:       #ffffff;
  --off-white:   #f2f6f9;
  --text:        #1a2f4a;
  --text-muted:  #5a7488;
  --border:      #dde8f0;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(26, 56, 117, 0.10);
  --shadow-lg:   0 12px 48px rgba(26, 56, 117, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(38px, 6vw, 64px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 3vw, 26px); font-weight: 700; line-height: 1.3; }
h4 { font-size: 16px; font-weight: 700; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-lime {
  background: var(--lime);
  color: var(--navy-dark);
}
.btn-lime:hover {
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-lg {
  font-size: 18px;
  padding: 18px 36px;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  max-width: 1160px;
  margin: 0 auto;
}
/* ---- LOGO ---- */
.nav-logo,
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
}

/* "Blueys" — same neon style as TOWING: dark fill + lime stroke */
.logo-script {
  font-family: 'Great Vibes', cursive;
  font-size: 28px;
  font-weight: 400;
  color: #0e1a2e;
  -webkit-text-stroke: 2px var(--lime);
  paint-order: stroke fill;
  text-shadow:
    0 0 8px  rgba(162, 202, 40, 0.45),
    0 0 16px rgba(162, 202, 40, 0.20);
  line-height: 1.1;
  margin-bottom: -4px;
  letter-spacing: 0.01em;
}

/* "TOWING" — dark fill + thick lime stroke = neon outline effect */
.logo-towing {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 30px;
  color: #0e1a2e;
  -webkit-text-stroke: 2.5px var(--lime);
  paint-order: stroke fill;
  text-shadow:
    0 0 8px  rgba(162, 202, 40, 0.45),
    0 0 16px rgba(162, 202, 40, 0.20);
  letter-spacing: 0.03em;
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(162, 202, 40, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 88px;
  padding-bottom: 88px;
  min-height: 640px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--lime);
  display: inline-block;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--lime); }
.hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-note i { color: var(--lime); font-size: 12px; }
.hero-image {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-image img {
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(162, 202, 40, 0.28);
  border-radius: 10px;
  padding: 14px 24px;
}
.hero-badge-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.hero-badge-stat span {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-badge-stat sup { font-size: 14px; vertical-align: super; }
.hero-badge-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.14);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy-dark);
  padding: 18px 0;
  border-bottom: 3px solid var(--lime);
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
}
.trust-item i { color: var(--lime); font-size: 15px; }
.trust-item strong { color: var(--white); font-weight: 700; }

/* ---- SECTION BASE ---- */
.section { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-header .eyebrow { display: block; margin-bottom: 14px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 18px; line-height: 1.7; }

/* ---- CAPACITY FEATURE (split layout) ---- */
.feature-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 64px;
}
.feature-split.reverse .feature-img { order: -1; }

.feature-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-content .eyebrow { display: block; margin-bottom: 14px; }
.feature-content h2 { margin-bottom: 16px; }
.feature-content h2 .accent { color: var(--lime); }
.feature-content > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
  font-size: 17px;
}

.stat-row {
  display: flex;
  gap: 48px;
  margin-bottom: 36px;
}
.stat-number {
  font-size: 52px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-number sup {
  font-size: 24px;
  vertical-align: super;
  color: var(--lime);
}
.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all 0.22s ease;
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lime);
}
.service-icon {
  width: 54px;
  height: 54px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--lime);
  flex-shrink: 0;
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }

/* ---- CASH FOR CARS BANNER ---- */
.cash-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  position: relative;
}
.cash-banner::after {
  content: '$';
  position: absolute;
  right: -30px;
  top: -40px;
  font-size: 280px;
  font-weight: 900;
  color: rgba(162, 202, 40, 0.07);
  line-height: 1;
  pointer-events: none;
  font-family: 'Outfit', sans-serif;
}
.cash-banner .eyebrow { color: var(--lime-light); margin-bottom: 12px; display: block; }
.cash-banner h2 { color: var(--white); margin-bottom: 12px; }
.cash-banner p { color: rgba(255,255,255,0.7); max-width: 480px; font-size: 17px; line-height: 1.7; }

/* ---- COVERAGE ---- */
.coverage-cta {
  text-align: center;
  margin-top: 32px;
}
.coverage-cta-heading {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.coverage-cta .btn {
  padding: 10px 22px;
  font-size: 17px;
}

/* ---- SUBURB TICKER ---- */
.suburb-ticker {
  overflow: hidden;
  position: relative;
  margin: 0 0 32px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.suburb-ticker::before,
.suburb-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}
.suburb-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}
.suburb-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}
.suburb-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}
.suburb-track span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 0 2px;
}
.suburb-track .sep {
  color: var(--lime);
  font-weight: 900;
  padding: 0 10px;
  font-size: 16px;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- COVERAGE MAP ---- */
.coverage-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.coverage-map iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
/* Row 1: two 50%-wide landscape panels */
.gallery-item:nth-child(1),
.gallery-item:nth-child(2) { grid-column: span 3; }
/* Row 2: three 33%-wide landscape panels */
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ---- REVIEWS ---- */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  margin-top: 16px;
  box-shadow: var(--shadow);
}
.g-logo { flex-shrink: 0; }
.g-rating-score { font-size: 17px; font-weight: 800; color: var(--text); }
.g-stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.g-label { font-size: 14px; color: var(--text-muted); }

.reviews-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 52px;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 calc(min(1104px, 100vw - 56px) / 3 - 16px);
  min-width: 0;
}
.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author { font-weight: 700; font-size: 15px; color: var(--navy); }
.review-date { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.review-g-logo { flex-shrink: 0; margin-top: 2px; }
.review-stars { color: #f59e0b; font-size: 16px; letter-spacing: 1px; }
.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }
.review-source {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: 4px;
}
.review-source:hover { color: var(--navy); text-decoration: underline; }

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.dot.active {
  background: var(--navy);
  width: 24px;
  border-radius: 4px;
}
.carousel-arrow {
  position: absolute;
  top: calc(50% - 26px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.2s;
  z-index: 2;
}
.carousel-arrow:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.carousel-prev { left: 4px; }
.carousel-next { right: 4px; }

.reviews-cta {
  text-align: center;
  margin-top: 32px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--lime);
  padding: 88px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--navy-dark); margin-bottom: 12px; }
.cta-banner .sub { color: rgba(17, 37, 88, 0.72); font-size: 18px; margin-bottom: 40px; }
.cta-phone {
  display: block;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 36px;
  letter-spacing: -0.03em;
  transition: opacity 0.2s;
}
.cta-phone:hover { opacity: 0.82; }
.cta-sub-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- FOOTER SCENIC ---- */
.footer-scenic {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--navy-dark);
}
.footer-scenic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.footer-scenic-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
}
.footer-scenic-content h2 {
  color: var(--white);
  font-size: clamp(28px, 5vw, 52px);
  margin-bottom: 12px;
}
.footer-scenic-content h2 .accent { color: var(--lime); }
.footer-scenic-content p { color: rgba(255,255,255,0.6); font-size: 18px; }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-logo-wrap {
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--lime); }
.footer-contact-item i { color: var(--lime); width: 16px; flex-shrink: 0; }

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.42);
}
.footer-legal strong { color: rgba(255,255,255,0.6); }

/* ---- MOBILE CALL FAB ---- */
.call-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy-dark);
  font-size: 22px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(26, 56, 117, 0.35);
  transition: transform 0.2s;
}
.call-fab:hover { transform: scale(1.08); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
    gap: 40px;
  }
  .hero-image { display: flex; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse .feature-img { order: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-map iframe { height: 420px; }
  /* Gallery: 2+2+1 at tablet */
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2) { grid-column: span 2; }
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 4; }
  .review-card { flex: 0 0 calc((100vw - 80px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cash-banner { grid-template-columns: 1fr; padding: 44px; }
  .trust-bar-inner { gap: 20px; }
  .nav-links { display: none; }
  .call-fab { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  /* Gallery: full-width top image, then pairs */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { aspect-ratio: 16 / 9; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 32px; }
  .coverage-map iframe { height: 280px; }
  .coverage-cta .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    box-sizing: border-box;
  }
  .review-card { flex: 0 0 calc(100vw - 56px); }
  .carousel-arrow { display: none; }
  .suburb-ticker::before,
  .suburb-ticker::after { width: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-phone { font-size: 48px; }
  .cash-banner { padding: 36px 28px; }
}
