/* ============================================================
   home.css — Page-specific styles for index.html
   Overberg Service Centre
   ============================================================ */

/* ============================================================
   Hero load animations
   ============================================================ */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-image-reveal {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}

/* Staggered content items */
.hero-eyebrow {
  animation: hero-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.hero-content h1 {
  animation: hero-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.hero-sub {
  animation: hero-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
}

.hero-ctas {
  animation: hero-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

.hero-follow {
  animation: hero-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both;
}

/* Tyre image */
.hero-image {
  animation: hero-image-reveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

/* ============================================================
   Hero — two-column: text left, tire image right
   ============================================================ */
.hero {
  min-height: 80vh;
  background-color: #000;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* ── Left column: text ── */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
  flex-shrink: 0;
  width: clamp(420px, 48%, 900px);
  padding: var(--space-xl) var(--space-xl);
  padding-left: max(var(--space-xl), calc((80vw - 1280px) / 2 + var(--space-lg)));
  /* fade content column into the image on the right */
  background: linear-gradient(to right, #000 40%, transparent 100%);
}

/* ── Right column: tire image ── */
.hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

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

/* Blend the image back into black on the left edge */
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0;
  font-family: var(--font-display);
  white-space: nowrap;
}

.hero-content h1 {
  text-transform: uppercase;
  color: var(--color-white);
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 50ch;
  margin-bottom: 0;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Follow us */
.hero-follow {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-follow-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-display);
  white-space: nowrap;
}

.hero-social-icons {
  display: flex;
  gap: 10px;
}

.hero-social {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: border-color var(--transition), color var(--transition),
              background-color var(--transition);
}

.hero-social:hover {
  border-color: var(--color-accent);
  color: var(--color-white);
  background-color: var(--color-accent);
}


/* ============================================================
   Service Highlights — overlapping strip
   ============================================================ */
.service-highlights {
  position: relative;
  z-index: 2;
  margin-top: -110px;         /* pull up over the hero bottom */
  padding-bottom: var(--space-xl);
}

.sh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: transparent;
  border: none;
}

.sh-card {
  background: #0e0e14;
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: background-color var(--transition), transform var(--transition);
  position: relative;
}

.sh-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color var(--transition);
}

.sh-card:first-child::before {
  border-color: rgba(59, 130, 246, 0.35);
}

.sh-card:hover {
  background: #13131c;
}

.sh-card:hover::before {
  border-color: rgba(59, 130, 246, 0.45);
}

/* Pulse keyframes */
@keyframes icon-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(59, 130, 246, 0.50); }
  70%  { box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(59, 130, 246, 0);    }
}

.sh-icon {
  width: 56px;
  height: 56px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--color-white);
  flex-shrink: 0;
  animation: icon-pulse 2.4s ease-out infinite;
}

/* Stagger so each card's icon pulses at a different phase */
.sh-card:nth-child(2) .sh-icon { animation-delay: 0.8s; }
.sh-card:nth-child(3) .sh-icon { animation-delay: 1.6s; }

.sh-card h3 {
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.sh-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 28ch;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .service-highlights {
    margin-top: -60px;
  }

  .sh-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
}

/* ============================================================
   Why Choose Us
   ============================================================ */


.why-choose {
  background-color: var(--color-bg);
}

.why-choose-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ── Left: text ── */
.why-choose-text {
  position: relative;
}


/* All content children above watermark */
.why-choose-text > :not(.why-choose-watermark) {
  position: relative;
  z-index: 1;
}

.why-choose-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin-block: var(--space-sm) var(--space-md);
}

.why-choose-desc {
  color: var(--color-text-muted);
  max-width: 50ch;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.why-choose-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-lg);
}

/* Wire / outlined text using Barlow Condensed */
.why-choose-list li {
  font-family: 'Barlow Condensed', var(--font-display), sans-serif;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.30);
  paint-order: stroke fill;
  padding-block: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: -webkit-text-stroke-color 0.25s ease;
  cursor: default;
}

.why-choose-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.why-choose-list li:hover {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.78);
}

.why-choose-cta {
  display: inline-flex;
}

/* ── Right: image with rotated dark-maroon backing ── */
.why-choose-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* extra right + bottom padding so the backing frame has room to show */
  padding: 16px 50px 50px 16px;
}

.why-choose-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
}

/* Trapezoidal dark-navy slab — mirrored to left side, offset left + down */
.why-choose-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0e2044;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 100%);
  transform: translate(-18px, 18px);
  z-index: -1;
}

.why-choose-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 100%);
}

@media (max-width: 900px) {
  .why-choose-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .why-choose-frame img {
    height: 360px;
  }
}

/* ============================================================
   Services Section
   ============================================================ */
.services-section {
  position: relative;
  background-image: url('../../img/services-paralax.jpg');
  background-image: url('../../img/services-paralax.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay so cards remain legible */
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 16, 0.82);
  pointer-events: none;
}

/* Lift content above overlay */
.services-section-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.services-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.services-sub {
  margin-inline: auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: transparent;
  border: none;
  margin-top: var(--space-lg);
}

/* Card overrides scoped to services section */
.services-section .card {
  background-color: rgba(14, 14, 20, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color var(--transition), transform var(--transition);
}

/* Blue bottom border line */
.services-section .card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--color-accent);
  opacity: 0;
  transition: opacity var(--transition);
}

.services-section .card:hover {
  background-color: rgba(19, 19, 30, 0.88);
  transform: none;
  box-shadow: none;
}

.services-section .card:hover::after {
  opacity: 1;
}

/* Large solid-blue icon box */
.services-section .card-icon {
  width: 72px;
  height: 72px;
  background-color: var(--color-accent);
  border: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.services-section .card-icon svg {
  width: 28px;
  height: 28px;
}

.services-section .card-title {
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  text-align: center;
}

.services-section .card-desc {
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.services-more {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-sm);
  cursor: default;
  background-color: var(--color-surface-2);
  border-style: dashed;
}

.services-more:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--color-accent);
}

.services-more p {
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* ============================================================
   Stats Strip
   ============================================================ */
.stats-strip {
  background-color: var(--color-accent);
  padding-block: 52px;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.stat-number {
  font-family: 'Barlow Condensed', var(--font-display), sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  /* wire / outlined style */
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.70);
  paint-order: stroke fill;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-white);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-inner {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-section {
  background-color: var(--color-bg);
}

/* Header row: title left, nav right */
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.testimonials-heading {
  position: relative;
}

/* "TESTIMONIAL" watermark */
.testimonials-watermark {
  position: absolute;
  top: -8px;
  left: -4px;
  font-family: 'Barlow Condensed', var(--font-display), sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #1e1e28;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.testimonials-title {
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', var(--font-display), sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* PREV / NEXT buttons */
.testimonials-nav {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.testimonials-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color var(--transition), background-color var(--transition),
              color var(--transition);
}

.testimonials-btn:hover {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  color: var(--color-white);
}

/* Track — hides all cards except active */
.testimonial-track {
  position: relative;
}

.testimonial-card {
  display: none;
  background-color: #0e0e14;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.testimonial-card.is-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}

/* Left: text content */
.testimonial-content {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

.testimonial-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-white);
}

.testimonial-location {
  display: block;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.testimonial-quote-icon {
  color: var(--color-accent);
  line-height: 0;
}

.testimonial-quote-icon svg {
  width: 42px;
  height: auto;
  opacity: 0.85;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  border: none;
  padding: 0;
  margin: 0;
  max-width: 52ch;
}

/* Right: trapezoidal image — same style as why-choose */
.testimonial-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}

.testimonial-frame {
  position: relative;
  width: 100%;
}

.testimonial-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0e2044;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 100%);
  transform: translate(-14px, 14px);
  z-index: 0;
}

.testimonial-frame img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center top;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 100%);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .testimonial-card.is-active {
    grid-template-columns: 1fr;
  }

  .testimonial-frame img {
    min-height: 260px;
    clip-path: none;
  }

  .testimonial-frame::before {
    display: none;
  }

  .testimonial-content {
    padding: var(--space-lg) var(--space-md);
  }
}

/* Google review card extras */
.testimonial-stars {
  display: block;
  color: #FBBF24;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.testimonial-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.testimonial-avatar {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--color-accent);
  background: linear-gradient(135deg, #0d0d18 0%, #131320 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 100%);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
  user-select: none;
}

@media (max-width: 768px) {
  .testimonial-avatar {
    min-height: 200px;
    clip-path: none;
    font-size: 3.5rem;
  }
}

/* View More button row */
.testimonials-footer {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ============================================================
   Brand Logos Ticker
   ============================================================ */
@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brands-strip {
  background-color: #0a0a0f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-block: var(--space-lg);
  overflow: hidden;
}

.brands-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--space-lg);
}

/* Clip window — hides the overflow on both sides */
.brands-viewport {
  overflow: hidden;
  /* soft fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* The scrolling row — contains 2× the logos side by side */
.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brands-scroll 28s linear infinite;
}

/* Pause on hover */
.brands-viewport:hover .brands-track {
  animation-play-state: paused;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.brand-item img,
.brand-item svg {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.5);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease;
  display: block;
}

.brand-item:hover img,
.brand-item:hover svg {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .brands-track {
    animation: none;
  }
  .brands-viewport {
    overflow-x: auto;
  }
}

/* ============================================================
   About Teaser
   ============================================================ */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-visual {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
}

.about-big-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 6.5rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-big-sub {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-block: var(--space-sm) var(--space-md);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
}

.about-copy p {
  max-width: 55ch;
  margin-top: var(--space-xs);
  line-height: 1.75;
}

.about-copy p + p {
  margin-top: var(--space-sm);
}

/* ============================================================
   CTA Strip
   ============================================================ */
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta-strip-text h2 {
  margin-bottom: var(--space-xs);
}

.cta-strip-text p {
  max-width: 52ch;
}

.cta-strip-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    position: relative;
    align-items: center;
  }

  /* Image fills the full hero behind the text */
  .hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  /* On mobile crop toward the right so the tyre is visible */
  .hero-image img {
    object-position: 80% center;
  }

  /* Darken overall so text stays legible when centred over the tyre */
  .hero-image::before {
    background: linear-gradient(to right,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.30) 100%);
  }

  .hero-content {
    width: 100%;
    background: none;
    padding: var(--space-xl) var(--space-md);
    position: relative;
    z-index: 2;
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 6vw, 2.4rem);
  }

  .hero-eyebrow {
    white-space: normal;
  }

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-teaser {
    grid-template-columns: 1fr;
  }

  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip-buttons {
    justify-content: center;
  }
}
