/* Fone World landing — PDF section layout, red & white, no PDF images */

.btn-pill { border-radius: 999px; }

/* —— Hero (split: dark content + photo) —— */
.home-hero {
  position: relative;
  background: #121212;
  overflow: hidden;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(88vh, 640px);
  max-height: 720px;
}

.home-hero-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background:
    linear-gradient(135deg, #1a1a1a 0%, #252525 55%, #1f1415 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.home-hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-red), #ff6b6b);
}

.home-hero-content-inner {
  padding: 3.5rem 1.5rem 3.5rem 0;
  max-width: 540px;
}

.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.home-hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 12px rgba(215, 25, 32, 0.8);
  animation: home-dot-pulse 2s ease-in-out infinite;
}

@keyframes home-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.15rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.home-hero h1 span {
  color: var(--color-red);
  background: linear-gradient(90deg, #ff4d4d, var(--color-red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.home-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.home-hero-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  transition: transform 0.25s ease;
}

.home-hero-phone:hover {
  color: #fff;
  transform: translateX(4px);
}

.home-hero-phone-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  border-radius: 12px;
  font-size: 1.2rem;
}

.home-hero-phone strong {
  display: block;
  font-size: 1.15rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.home-hero-phone small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.home-hero-rating {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.home-hero-stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.home-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.home-hero-btn-main {
  box-shadow: 0 8px 28px rgba(215, 25, 32, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-hero-btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(215, 25, 32, 0.55);
}

.btn-hero-whatsapp {
  background: #25d366;
  color: #fff;
  border: 2px solid #25d366;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn-hero-whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
  color: #fff;
  transform: translateY(-3px);
}

.home-hero-cta-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Hero photo panel */
.home-hero-media {
  position: relative;
  background-image: url('../img/hero/shop-front.jpg');
  background-size: cover;
  background-position: center 40%;
  min-height: 320px;
}

.home-hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 18, 18, 0.92) 0%,
    rgba(18, 18, 18, 0.45) 28%,
    rgba(0, 0, 0, 0.08) 55%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.home-hero-float {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a1a1a;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  animation: home-float-bob 4s ease-in-out infinite;
}

.home-hero-float span:first-child {
  color: var(--color-red);
  margin-right: 0.25rem;
}

.home-hero-float-time {
  top: 12%;
  right: 8%;
  text-align: center;
  padding: 1rem 1.25rem;
  animation-delay: 0s;
}

.home-hero-float-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-red);
  line-height: 1;
}

.home-hero-float-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-top: 0.2rem;
}

.home-hero-float-warranty {
  bottom: 28%;
  left: 10%;
  animation-delay: 0.5s;
}

.home-hero-float-location {
  bottom: 12%;
  right: 6%;
  animation-delay: 1s;
  max-width: 200px;
}

@keyframes home-float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.home-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.home-hero-wave svg {
  display: block;
  width: 100%;
  height: 48px;
}

/* —— Sections —— */
.home-section {
  padding: 3rem 0;
  background: #fff;
}

.home-section-grey { background: #f7f7f7; }

.home-section-head {
  background: var(--color-red);
  padding: 0.85rem 0;
  margin-bottom: 2rem;
}

.home-section-head h2 {
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.home-heading {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.home-heading.center { text-align: center; }
.home-heading.red { color: var(--color-red); }

.home-intro {
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 640px;
}

.home-intro.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-title-boxed {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: 0.75rem 1rem;
  border: 2px solid #1a1a1a;
  margin-bottom: 2rem;
}

.center { text-align: center; }

/* —— Action cards (6) —— */
.home-actions { background: #fafafa; padding: 2.5rem 0 2rem; margin-top: -1px; }

.home-actions-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.home-section-intro {
  text-align: center;
  margin-bottom: 1.75rem;
}

.home-section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 0.35rem;
}

.home-section-eyebrow.center { text-align: center; }

.home-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.home-action-card {
  background: #fff;
  border: 2px solid var(--color-red);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}

.home-action-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.06), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.home-action-card .btn {
  position: relative;
  z-index: 1;
}

.home-action-card:hover::before { opacity: 1; }

.home-action-img {
  width: 100%;
  height: 90px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.home-action-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-action-card:hover .home-action-img img {
  transform: scale(1.08);
}

.home-action-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-red);
}

.home-action-card p {
  font-size: 0.8rem;
  color: var(--color-muted);
  flex: 1;
  margin-bottom: 0.75rem;
}

/* —— Devices (5) —— */
.home-devices-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.home-device-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}

.home-device-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(215, 25, 32, 0.18);
  border-color: var(--color-red);
  color: inherit;
}

.home-device-card:hover .home-device-visual img {
  transform: scale(1.06);
}

.home-card-arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s, transform 0.25s;
  display: inline-block;
}

.home-device-card:hover .home-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.home-device-visual {
  background: #f5f0eb;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.home-device-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-device-label {
  background: var(--color-red);
  color: #fff;
  text-align: center;
  padding: 0.7rem 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
}

/* —— Repair services (dynamic grid) —— */
.home-repairs-section {
  position: relative;
  overflow: hidden;
}

.home-repairs-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(215, 25, 32, 0.06), transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(215, 25, 32, 0.04), transparent 60%);
  pointer-events: none;
  animation: home-repairs-bg-pulse 6s ease-in-out infinite;
}

@keyframes home-repairs-bg-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.home-repairs-inner {
  position: relative;
  z-index: 1;
}

.home-repairs-lead {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin: -1rem auto 1.75rem;
  max-width: 520px;
}

.home-repairs-foot {
  margin-top: 2rem;
}

.home-repairs-empty {
  color: var(--color-muted);
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  border: 1px dashed #ddd;
}

.home-repairs-grid {
  display: grid;
  /* 8 columns × 2 rows for up to 16 services (see seed_home_repairs + home view cap) */
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.75rem 0.5rem;
  width: 100%;
  margin-inline: auto;
}

@media (min-width: 1101px) {
  .home-repairs-grid .home-repair-label {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .home-repairs-grid .home-repair-meta {
    font-size: 0.58rem;
  }

  .home-repairs-grid .home-repair-overlay {
    font-size: 0.62rem;
  }
}

.home-repair-cell {
  position: relative;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 0.65rem 0.5rem 0.85rem;
  text-align: center;
  color: inherit;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}

.home-repair-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 3;
}

.home-repair-cell:hover .home-repair-shine {
  transform: translateX(120%);
}

.home-repair-cell:hover {
  border-color: var(--color-red);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(215, 25, 32, 0.16);
  color: inherit;
}

.home-repair-cell:hover .home-repair-img img {
  transform: scale(1.12);
}

.home-repair-cell:hover .home-repair-overlay {
  opacity: 1;
}

.home-repair-cell:hover .home-repair-label {
  color: var(--color-red);
}

.home-repair-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  background: #f3f3f3;
}

.home-repair-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-repair-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(215, 25, 32, 0.75);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.home-repair-label {
  display: block;
  font-size: 0.82rem;
  line-height: 1.3;
  color: #1a1a1a;
  font-weight: 700;
  transition: color 0.25s ease;
  padding: 0 0.15rem;
}

.home-repair-meta {
  display: block;
  font-size: 0.65rem;
  color: var(--color-muted);
  margin-top: 0.2rem;
  font-weight: 500;
}

.home-stagger.is-visible .home-repair-cell {
  animation: home-repair-pop 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(var(--stagger-index, 0) * 0.07s + 0.1s);
}

@keyframes home-repair-pop {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.home-repairs-section .home-stagger.is-visible .home-repair-cell:nth-child(odd) {
  animation-name: home-repair-pop-alt;
}

@keyframes home-repair-pop-alt {
  0% {
    opacity: 0;
    transform: translateY(28px) rotate(-1deg) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

/* —— Why choose —— */
.home-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.home-why-card {
  text-align: center;
  padding: 0 0 1.5rem;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s;
}

.home-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(215, 25, 32, 0.12);
  border-color: rgba(215, 25, 32, 0.35);
}

.home-why-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #f5f5f5;
}

.home-why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-why-card:hover .home-why-img img {
  transform: scale(1.06);
}

.home-why-card h3,
.home-why-card p {
  padding: 0 1rem;
}

.home-why-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.home-why-card h3 {
  font-size: 1rem;
  color: var(--color-red);
  margin-bottom: 0.35rem;
}

.home-why-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
}

/* —— About —— */
.home-about { background: #f5f0e8; }

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.home-about-visual {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--color-red);
  box-shadow: var(--shadow);
}

.home-about-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 260px;
  max-height: 420px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.home-about-grid h2 {
  font-family: var(--font-display);
  color: var(--color-red);
  font-size: 1.65rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.home-about-grid p { color: var(--color-muted); margin-bottom: 0.75rem; }

/* —— Section labels (OUR CLIENTS, SUPPORTED BRANDS) —— */
.home-section-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}

/* —— Our Clients —— */
.home-clients { background: #fff; }

.home-clients-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.home-client-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #333;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.home-client-box:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

/* —— Become a Partner —— */
.home-partner {
  background-image: url('../img/partner/handshake.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.home-partner-overlay {
  background: linear-gradient(90deg, rgba(183, 20, 26, 0.92), rgba(215, 25, 32, 0.85));
  padding: 2.5rem 0;
}

.home-partner-inner { position: relative; z-index: 1; }

.home-partner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.home-partner-text {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0;
}

.home-partner-text strong { font-weight: 800; }

.home-partner .btn-white {
  background: #fff;
  color: var(--color-red);
  font-weight: 700;
  flex-shrink: 0;
}

.home-partner .btn-white:hover {
  background: #fef2f2;
  color: var(--color-red-dark);
}

/* —— Supported Brands slider —— */
.home-brands { background: #fff; }

.home-brands-slider-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-brands-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  padding: 0.5rem 0;
  scrollbar-width: none;
}

.home-brands-track::-webkit-scrollbar { display: none; }

.home-brand-box {
  flex: 0 0 120px;
  height: 70px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.home-brand-box img {
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
}

.home-brand-fallback {
  display: none;
  font-weight: 800;
  font-size: 0.75rem;
  color: #333;
  align-items: center;
  justify-content: center;
}

.home-brand-box:hover { border-color: var(--color-red); }

.home-brands-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}

.home-brands-arrow:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

/* —— Stats —— */
.home-stats {
  background: var(--color-red);
  color: #fff;
  padding: 2.25rem 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.home-stat-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.home-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
}

.home-stat span { font-size: 0.9rem; opacity: 0.95; }

/* —— Reviews —— */
.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.home-review {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: 4px solid var(--color-red);
  border-radius: 8px;
  padding: 1.25rem;
  margin: 0;
}

.home-review .stars { color: #f59e0b; margin-bottom: 0.5rem; letter-spacing: 2px; }

.home-review p {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.home-review footer strong { color: var(--color-red); }

/* —— FAQ —— */
.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.home-faq {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
}

.home-faq summary {
  padding: 0.85rem 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.home-faq summary::after {
  content: '+';
  float: right;
  color: var(--color-red);
  font-weight: 700;
}

.home-faq[open] summary::after { content: '−'; }

.home-faq p {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* —— Before / After (PDF layout — uniform card size) —— */
.home-ba-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.home-ba-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.home-ba-head {
  background: var(--color-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  padding: 0.55rem 0.35rem;
  text-transform: uppercase;
  line-height: 1.25;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-ba-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 8 / 3;
  min-height: 200px;
  flex-shrink: 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.home-ba-side.before {
  border-right: 2px solid #fff;
}

.home-ba-side {
  position: relative;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.home-ba-side.before {
  background: #e8e8e8;
}

.home-ba-side.after {
  background: #f5f5f5;
}

.home-ba-side img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.home-ba-foot {
  background: var(--color-red);
  color: #fff;
  font-size: 0.65rem;
  text-align: center;
  padding: 0.45rem;
  margin-top: auto;
}


/* —— CTA —— */
.home-cta {
  background: var(--color-red);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}

.home-cta h2 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.home-cta p { margin-bottom: 1.25rem; opacity: 0.95; }

.home-cta a:not(.btn) { color: #fff; text-decoration: underline; }

/* —— Shared interactive card + buttons —— */
.home-card-hover {
  will-change: transform;
}

.home-btn-glow {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(215, 25, 32, 0.35);
}

.home-link-arrow {
  font-weight: 600;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.home-link-arrow:hover {
  transform: translateX(4px);
}

.home-about-visual {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-about-visual:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 48px rgba(215, 25, 32, 0.2);
}

.home-partner {
  transition: transform 0.5s ease;
}

.home-partner:hover {
  transform: scale(1.01);
}

.home-partner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.home-stat {
  padding: 0.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.home-stat:hover {
  transform: translateY(-4px) scale(1.03);
  background: rgba(255, 255, 255, 0.1);
}

.home-stat-icon {
  transition: transform 0.35s ease;
}

.home-stat:hover .home-stat-icon {
  transform: scale(1.15) rotate(-5deg);
}

.home-review {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-review:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.home-faq {
  transition: border-color 0.25s, box-shadow 0.3s, transform 0.3s;
}

.home-faq:hover {
  border-color: var(--color-red);
  box-shadow: 0 6px 20px rgba(215, 25, 32, 0.08);
}

.home-faq[open] {
  transform: scale(1.01);
  box-shadow: 0 8px 24px rgba(215, 25, 32, 0.1);
}

.home-ba-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-ba-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.home-ba-card:hover .home-ba-side img {
  transform: scale(1.05);
}

.home-ba-side img {
  transition: transform 0.5s ease;
}

.home-cta {
  position: relative;
  overflow: hidden;
}

.home-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.12), transparent 55%);
  pointer-events: none;
}

.home-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.home-section-head-animated h2 {
  animation: home-head-glow 3s ease-in-out infinite;
}

@keyframes home-head-glow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }
}

.home-title-animated {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-title-animated:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.home-brand-box {
  transition: transform 0.3s ease, border-color 0.25s, box-shadow 0.3s;
}

.home-brand-box:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(215, 25, 32, 0.12);
}

/* —— Scroll reveal & hero entrance —— */
.home-hero-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-hero-in-delay-1 { transition-delay: 0.1s; }
.home-hero-in-delay-2 { transition-delay: 0.2s; }
.home-hero-in-delay-3 { transition-delay: 0.35s; }

.home-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--stagger-index, 0) * 0.06s);
}

.home-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.home-action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(215, 25, 32, 0.15);
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-eyebrow-dot,
  .home-hero-float,
  .home-section-head-animated h2,
  .home-repairs-bg,
  .home-stagger.is-visible .home-repair-cell {
    animation: none;
  }

  .home-hero-in,
  .home-reveal,
  .home-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .home-actions-grid,
  .home-devices-grid { grid-template-columns: repeat(3, 1fr); }
  .home-why-grid,
  .home-ba-grid,
  .home-clients-row { grid-template-columns: repeat(2, 1fr); }

  .home-repairs-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem 0.65rem;
  }
}

@media (max-width: 768px) {
  .home-actions-grid,
  .home-devices-grid { grid-template-columns: repeat(2, 1fr); }
  .home-why-grid,
  .home-stats-grid,
  .home-reviews-grid,
  .home-faq-grid,
  .home-ba-grid,
  .home-about-grid,
  .home-partner-inner { grid-template-columns: 1fr; flex-direction: column; text-align: center; }

  .home-clients-row { grid-template-columns: 1fr 1fr; }

  .home-repairs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 0.6rem;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  .home-hero-media {
    order: -1;
    min-height: 220px;
    max-height: 280px;
  }

  .home-hero-content-inner {
    padding: 2rem 0 2.5rem;
    text-align: center;
    margin: 0 auto;
  }

  .home-hero-lead { margin-left: auto; margin-right: auto; }

  .home-hero-trust {
    flex-direction: column;
    text-align: center;
  }

  .home-hero-phone { justify-content: center; }

  .home-hero-cta,
  .home-hero-cta-secondary { justify-content: center; }

  .home-hero-float-time { top: 8%; right: 5%; padding: 0.75rem 1rem; }
  .home-hero-float-num { font-size: 2rem; }
  .home-hero-float-warranty { bottom: auto; top: 55%; left: 5%; }
  .home-hero-float-location { display: none; }
}

@media (max-width: 480px) {
  .home-actions-grid,
  .home-devices-grid {
    grid-template-columns: 1fr;
  }

  .home-repairs-grid {
    gap: 0.65rem 0.5rem;
  }

  .home-clients-row {
    grid-template-columns: 1fr;
  }

  .home-hero-cta,
  .home-hero-cta-secondary {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero-cta .btn,
  .home-hero-cta-secondary .btn {
    width: 100%;
  }

  .home-hero-float-warranty {
    display: none;
  }
}
