:root {
  --navy: #124da8;
  --navy-dark: #082f63;
  --blue: #124da8;
  --blue-dark: #0b3d8a;

  --green: #1f936d;
  --green-dark: #167454;
  --light-green: #eaf7f2;

  --light-blue: #edf4fc;
  --light: #f7f9fc;
  --white: #ffffff;
  --border: #d9e3ef;

  --dark-text: #111827;
  --muted: #334155;
  --soft-text: #475569;

  --shadow: 0 16px 36px rgba(8, 47, 99, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

/* HERO - SHRUNK HEIGHT */
.hero {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      rgba(5, 45, 90, 0.80),
      rgba(2, 32, 70, 0.88)
    ),
    url("../images/cutler-bay-plumbing-truck.jpg") center center / cover no-repeat;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  color: #fff;
  padding: 68px 0 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-section .eyebrow,
.contact-box .eyebrow,
.image-break .eyebrow {
  color: rgba(255,255,255,.92);
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 5.8vw, 70px);
  line-height: .98;
  letter-spacing: -.06em;
  color: #fff;
}

.hero-text {
  max-width: 780px;
  margin: 22px 0 0;
  font-size: 20px;
  color: rgba(255,255,255,.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover { background: var(--green-dark); }

.btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 14px;
  font-weight: 800;
}

/* PLACEHOLDER IMAGES */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  padding: 18px;
  background: #eef5fc;
}

.photo-card,
.service-image,
.image-slide,
.service-area-image,
.image-holder {
  background:
    linear-gradient(135deg, rgba(8,47,99,.12), rgba(31,147,109,.24)),
    repeating-linear-gradient(45deg, #f8fbff, #f8fbff 12px, #e7f2fd 12px, #e7f2fd 24px);
  position: relative;
  overflow: hidden;
}

.photo-card {
  min-height: 230px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.photo-card span,
.service-image span,
.image-slide span,
.service-area-image span,
.image-holder span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5,27,61,.78);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
}

/* GENERAL SECTIONS */
.section { padding: 88px 0; }

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.text-block p,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

h2 {
  margin: 0;
  font-size: clamp(34px,4vw,54px);
  line-height: 1.05;
  letter-spacing: -.045em;
  color: var(--navy-dark);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 44px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

/* SLIDERS */
.image-slider {
  min-height: 500px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  background: var(--light);
}

.image-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
}

.image-slide.active { opacity: 1; }

.image-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(5,27,61,.72);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.image-slider-arrow.left { left: 18px; }
.image-slider-arrow.right { right: 18px; }
.image-slider-arrow:hover { background: var(--green); }

/* =========================================================
   QUOTE SECTION
   ========================================================= */



.quote-line {
  width: 120px;
  height: 10px;
  margin: 0 0 26px;
  border-radius: 999px;
  background: var(--light-green);
}

.quote-slide-box p {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(20px, 2.6vw, 38px);
  line-height: 1.4;
  letter-spacing: -.015em;
}

/* SERVICES */
.services-section,
.process-section,
.why-section,
.faq-section {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-image { min-height: 190px; }

.service-card h3 {
  margin: 24px 24px 10px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--navy-dark);
}

.service-card p {
  margin: 0 24px 28px;
  color: var(--muted);
}

/* SERVICE AREAS */
.service-areas-section { background: #fff; }

.service-area-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 38px;
}

.service-area-text {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.service-area-text h3 {
  margin: 0 0 12px;
  color: var(--navy-dark);
  font-size: 28px;
  line-height: 1.15;
}

.service-area-text p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-area-image {
  min-height: 360px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px;
}

.city-grid a {
  display: block;
  padding: 18px;
  border-radius: 16px;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--navy-dark);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(8,47,99,.06);
  transition: all .2s ease;
}

.city-grid a:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

/* CITY TICKER */
.city-ticker-section {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.city-ticker-track {
  display: flex;
  width: max-content;
  animation: cityTickerMove 90s linear infinite;
}

.city-ticker-list {
  display: flex;
  align-items: center;
  gap: 90px;
  padding-right: 90px;
  white-space: nowrap;
}

.city-ticker-list span {
  color: var(--navy-dark);
  font-size: clamp(18px,2vw,28px);
  font-weight: 900;
  letter-spacing: -.02em;
}

@keyframes cityTickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.city-ticker-section:hover .city-ticker-track {
  animation-play-state: paused;
}

/* WHO / TRUST */
.who-section { background: #fff; }

.who-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.who-grid div {
  padding: 18px;
  border-radius: 16px;
  background: var(--light);
  border: 1px solid var(--border);
  font-weight: 900;
  color: var(--navy-dark);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.trust-card,
.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.trust-card span,
.process-card span {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.trust-card h3,
.process-card h3 {
  margin: 12px 0 10px;
  color: var(--navy-dark);
  font-size: 23px;
  line-height: 1.15;
}

.trust-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
}

/* DARK SECTION */
.dark-section {
  background:
    linear-gradient(rgba(5,27,61,.96), rgba(5,27,61,.96)),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
}

.dark-section h2,
.dark-section p {
  color: #fff;
}

.case-grid div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  font-weight: 900;
  color: #fff;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

/* IMAGE BREAK */
.image-break {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--green), var(--navy));
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,27,61,.70);
}

.image-break-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 920px;
}

.image-break-content h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  max-width: 900px;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-container {
  max-width: 960px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 47, 99, .08);
  transition:
    border-color .25s ease,
    box-shadow .25s ease;
}

.faq-item.open {
  border-color: rgba(31, 147, 109, .35);
  box-shadow: 0 14px 30px rgba(8, 47, 99, .11);
}

.faq-item button {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border: 0;
  background: #fff;
  color: var(--navy-dark);
  font-family: inherit;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition:
    color .2s ease,
    background-color .2s ease;
}

.faq-item button:hover {
  color: var(--green);
}

.faq-item button:focus-visible {
  outline: 3px solid rgba(31, 147, 109, .25);
  outline-offset: -4px;
}

.faq-item button::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--green);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  transition: transform .25s ease;
}

.faq-item.open button::after {
  content: "−";
}

.faq-item > div {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  opacity: 0;
  background: #fff;
  transition:
    max-height .35s ease,
    opacity .25s ease;
}

.faq-item.open > div {
  opacity: 1;
}

.faq-item > div p {
  margin: 0;
  padding: 4px 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* MOBILE FAQ */
@media (max-width: 620px) {
  .faq-list {
    gap: 12px;
  }

  .faq-item button {
    gap: 16px;
    padding: 20px 22px;
    font-size: 18px;
  }

  .faq-item > div {
    padding: 0 22px;
  }

  .faq-item > div p {
    padding: 2px 0 24px;
    font-size: 16px;
  }
}

/* CONTACT */
.contact-section {
  padding: 84px 0;
  background: var(--light);
}

.contact-box {
  background:
    linear-gradient(rgba(5,27,61,.95), rgba(5,27,61,.95)),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
  border-radius: 32px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow);
}

.contact-box h2,
.contact-box p {
  color: #fff;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info a,
.contact-info span {
  display: block;
  background: rgba(255,255,255,.10);
  padding: 18px 20px;
  border-radius: 16px;
  font-weight: 900;
  color: #fff;
  word-break: break-word;
}


.mobile-sticky-case-btn { display: none; }

/* TABLET */
@media (max-width: 980px) {
.hero {
    min-height: 500px;
  }

  .hero-content {
    padding: 58px 0 54px;
  }

  .hero h1 {
    font-size: clamp(38px, 7vw, 58px);
  }

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

  .two-column,
  .contact-box,
  .service-area-layout {
    grid-template-columns: 1fr;
  }

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

  .case-grid,
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* MOBILE */
@media (max-width: 768px) {
body { padding-bottom: 86px; }

  .hero-actions { display: none !important; }

  .hero {
    min-height: 470px;
  }

  .hero-content {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-badges {
    margin-top: 26px;
  }

  .mobile-sticky-case-btn {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 99999;
    display: block;
    background: var(--green);
    color: #fff;
    text-align: center;
    padding: 16px 20px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(0,0,0,.28);
  }
}

/* SMALL MOBILE */
@media (max-width: 620px) {
.container {
    width: min(100% - 26px,1180px);
  }

  .hero {
    min-height: 455px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 17px;
  }

  .section {
    padding: 64px 0;
  }

  .photo-strip,
  .service-grid,
  .process-grid,
  .trust-grid,
  .case-grid,
  .who-grid,
  .city-grid {
    grid-template-columns: 1fr;
  }

  .photo-card {
    min-height: 210px;
  }

  .image-slider,
  .service-area-image {
    min-height: 360px;
  }

  .contact-box {
    padding: 30px;
  }


  .city-ticker-list {
    gap: 54px;
    padding-right: 54px;
  }

  .city-ticker-list span {
    font-size: 20px;
  }
}

.image-break {
  min-height: 260px;
}

.image-break-content h2 {
  font-size: 30px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-card {
  min-height: 230px;
  overflow: hidden;
}

.image-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-slide {
  background: none;
}


.service-image {
  height: 260px;
  min-height: 260px;
  width: 100%;
  overflow: hidden;
  background: none;
}

.service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}


.service-area-image {
  min-height: 360px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: none;
}

.service-area-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-strip {
  align-items: stretch;
}

.photo-card {
  height: 230px;
  min-height: 230px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile: force all photo-strip images to same height */
@media (max-width: 620px) {
.photo-card {
    height: 220px;
    min-height: 220px;
  }
}

/* CLICKABLE SERVICE CARDS */
.service-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.service-card-link h3,
.service-card-link p {
  transition: color .2s ease;
}

.service-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(8, 47, 99, 0.20);
}

.service-card:hover h3 {
  color: var(--green);
}

.service-link-text {
  display: inline-block;
  margin: 0 24px 26px;
  color: var(--green);
  font-weight: 900;
}

.service-card:hover .service-link-text {
  color: var(--green-dark);
}


/* =========================================================
   9.5/10 HOMEPAGE ENHANCEMENTS
   ========================================================= */

body {
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  min-height: 610px;
}

.hero-content {
  max-width: 1040px;
}

.hero h1 {
  max-width: 950px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 940px;
}

.hero-proof div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 21px;
  line-height: 1;
  color: #fff;
}

.hero-proof span {
  margin-top: 7px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 700;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 108px;
  padding: 22px;
  border-right: 1px solid var(--border);
}

.trust-strip-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}

.trust-strip-item strong,
.trust-strip-item small {
  display: block;
}

.trust-strip-item strong {
  color: var(--navy-dark);
  line-height: 1.15;
}

.trust-strip-item small {
  margin-top: 5px;
  color: var(--soft-text);
}

.inline-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.text-link {
  color: var(--navy);
  font-weight: 900;
}

.text-link:hover {
  color: var(--green);
}

.stats-section {
  padding: 48px 0 88px;
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 28px;
  text-align: center;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 22px;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  color: var(--green);
  font-size: 42px;
  line-height: 1;
}

.stat-card span {
  margin-top: 10px;
  color: var(--navy-dark);
  font-weight: 900;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--navy-dark);
}

.btn-light:hover {
  background: var(--light-green);
}

.reviews-section {
  background: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--light);
  box-shadow: 0 12px 30px rgba(8,47,99,.08);
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 22px;
  color: rgba(31,147,109,.15);
  font-size: 92px;
  line-height: 1;
  font-family: Georgia, serif;
}

.review-stars {
  color: #e8a600;
  letter-spacing: .12em;
  font-size: 18px;
}

.review-card p {
  position: relative;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  color: var(--navy-dark);
}

.review-card span {
  margin-top: 3px;
  color: var(--soft-text);
  font-size: 14px;
}

.reviews-cta,
.gallery-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: 250px 250px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.gallery-item-large {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(5,27,61,.82));
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.financing-section {
  padding: 76px 0;
  background: var(--light);
}

.financing-box {
  padding: 48px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 38px;
  align-items: center;
  border-radius: 30px;
  background:
    linear-gradient(125deg, rgba(8,47,99,.98), rgba(18,77,168,.92)),
    var(--navy);
  box-shadow: var(--shadow);
}

.financing-box h2,
.financing-box p {
  color: #fff;
}

.financing-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 13px;
}

.contact-reassurance {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  font-weight: 800;
}

.contact-info small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,.68);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}


@media (max-width: 980px) {
.hero-proof,
  .trust-strip-inner,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip-item:nth-child(2) {
    border-right: 0;
  }

  .trust-strip-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 240px 240px;
  }

  .gallery-item-large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .financing-box {
  grid-template-columns: 1fr 1fr;
}

  .financing-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
.hero {
    min-height: 560px;
  }

.hero-proof,
.trust-strip-inner,
.stats-grid,
.financing-box {
  grid-template-columns: 1fr;
}

  .hero-proof div {
    padding: 13px 15px;
  }

  .trust-strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-strip-item:last-child {
    border-bottom: 0;
  }

  .inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 240px);
  }

  .gallery-item-large {
    grid-column: auto;
  }

  .financing-box {
    padding: 30px;
  }
}
