  /* ============================================================
     HOME 5 — SPLIT-SCREEN / ASYMMETRIC BOLD LAYOUT (ENHANCED)
     Inspired by: Balenciaga, Off-White, high-end architecture
     Principle: Deliberate asymmetry, dramatic scale, sharp edges
     ============================================================ */

  /* --- RESET & BASE --- */
  .h5-page { background: var(--black); color: var(--white); overflow-x: hidden; }
  .h5-page *, .h5-page *::before, .h5-page *::after { box-sizing: border-box; }
  .h5-page img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .h5-page a { color: inherit; text-decoration: none; }
  .h5-page .accent-bar { width: 60px; height: 4px; background: var(--red); }
  .h5-page .accent-bar--v { width: 4px; height: 60px; background: var(--red); }
  .h5-page .label-tiny {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-500, #666);
    font-weight: 600;
  }

  /* --- HERO: CINEMATIC FULL-BLEED --- */
  .h5-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .h5-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .h5-hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.08) brightness(0.55);
    transform: scale(1.15);
    animation: heroZoom 2.5s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform;
  }
  @keyframes heroZoom {
    0% { transform: scale(1.15); }
    100% { transform: scale(1.0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .h5-hero__bg img { animation: none; transform: scale(1.0); }
    .h5-hero__glow, .h5-hero__ember, .h5-hero__scanline { animation: none; }
  }
  /* Cinematic reveal curtain */
  .h5-hero__reveal {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--black);
    animation: heroReveal 1.8s 0.1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    pointer-events: none;
  }
  @keyframes heroReveal {
    0% { clip-path: inset(0 0 0 0); }
    100% { clip-path: inset(0 0 100% 0); }
  }
  /* Horizontal scan line */
  .h5-hero__scanline {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    animation: heroScanFade 3s 1s forwards;
  }
  .h5-hero__scanline::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(196,30,30,0.6), rgba(255,255,255,0.3), rgba(196,30,30,0.6), transparent);
    box-shadow: 0 0 20px rgba(196,30,30,0.4), 0 0 60px rgba(196,30,30,0.15);
    animation: heroScanMove 2.5s 1.2s ease-in-out forwards;
    top: 0;
  }
  @keyframes heroScanFade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
  }
  @keyframes heroScanMove {
    0% { top: 0; }
    100% { top: 100%; }
  }
  /* Red light streaks */
  .h5-hero__streaks {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
  }
  .h5-hero__streak {
    position: absolute;
    width: 1px;
    height: 200%;
    background: linear-gradient(180deg, transparent, rgba(196,30,30,0.15), transparent);
    transform: rotate(-25deg);
    opacity: 0;
  }
  .h5-hero__streak--1 {
    left: 20%;
    animation: heroStreak 4s 2s ease-in-out forwards;
  }
  .h5-hero__streak--2 {
    left: 55%;
    width: 2px;
    animation: heroStreak 4s 2.8s ease-in-out forwards;
  }
  .h5-hero__streak--3 {
    left: 80%;
    animation: heroStreak 4s 3.5s ease-in-out forwards;
  }
  @keyframes heroStreak {
    0% { opacity: 0; transform: rotate(-25deg) translateY(50%); }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; transform: rotate(-25deg) translateY(-50%); }
  }
  /* Floating embers */
  .h5-hero__embers {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
  }
  .h5-hero__ember {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px rgba(196,30,30,0.6);
  }
  .h5-hero__ember--1 { left: 15%; bottom: 10%; animation: emberFloat 8s 3s ease-out infinite; }
  .h5-hero__ember--2 { left: 35%; bottom: 5%; width: 2px; height: 2px; animation: emberFloat 10s 4s ease-out infinite; }
  .h5-hero__ember--3 { left: 60%; bottom: 15%; animation: emberFloat 7s 5s ease-out infinite; }
  .h5-hero__ember--4 { left: 80%; bottom: 8%; width: 2px; height: 2px; animation: emberFloat 9s 3.5s ease-out infinite; }
  .h5-hero__ember--5 { left: 45%; bottom: 3%; animation: emberFloat 11s 6s ease-out infinite; }
  @keyframes emberFloat {
    0% { opacity: 0; transform: translateY(0) scale(1); }
    10% { opacity: 0.8; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-80vh) scale(0.3); }
  }
  /* Film grain overlay */
  .h5-hero__grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    pointer-events: none;
  }
  /* Gradient overlays */
  .h5-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.1) 30%, rgba(10,10,15,0.6) 70%, rgba(10,10,15,0.95) 100%),
      radial-gradient(ellipse at 20% 80%, rgba(196,30,30,0.15) 0%, transparent 60%);
  }
  /* Red accent light */
  .h5-hero__glow {
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196,30,30,0.2) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
    animation: heroGlowPulse 6s ease-in-out infinite;
  }
  @keyframes heroGlowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
  }
  .h5-hero__content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(100px, 18vh, 160px) 3rem 6rem;
  }
  .h5-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: rgba(196,30,30,0.08);
    border: 1px solid rgba(196,30,30,0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(10px);
    animation: heroFadeUp 0.6s 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .h5-hero__badge svg {
    width: 14px;
    height: 14px;
    fill: var(--red);
    flex-shrink: 0;
  }
  .h5-hero__title {
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 900;
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem -0.2rem;
  }
  .h5-hero__title-line {
    display: block;
    overflow: hidden;
  }
  .h5-hero__title-word {
    display: inline-block;
    transform: translateY(110%);
    animation: heroWordReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .h5-hero__title-word--1 { animation-delay: 1.2s; }
  .h5-hero__title-word--2 { animation-delay: 1.4s; }
  .h5-hero__title-word--3 { animation-delay: 1.6s; color: var(--red); }
  @keyframes heroWordReveal {
    0% { transform: translateY(110%) rotateX(-8deg); }
    100% { transform: translateY(0) rotateX(0deg); }
  }
  .h5-hero__sub {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .h5-hero__line {
    width: 50px;
    height: 3px;
    background: var(--red);
    flex-shrink: 0;
    transform: scaleX(0);
    transform-origin: left;
    animation: heroLineGrow 0.8s 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes heroLineGrow {
    to { transform: scaleX(1); }
  }
  .h5-hero__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 460px;
    opacity: 0;
    transform: translateY(15px);
    animation: heroFadeUp 0.7s 1.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .h5-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(15px);
    animation: heroFadeUp 0.7s 2.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
  }


  .h5-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .h5-btn--primary {
    background: var(--red);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .h5-btn--primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--red), #ff6b6b, var(--red));
    background-size: 200% 100%;
    border-radius: inherit;
    z-index: -1;
    animation: btnGlow 3s ease-in-out infinite;
    opacity: 0.5;
  }
  @keyframes btnGlow {
    0%, 100% { background-position: 0% 50%; opacity: 0.3; }
    50% { background-position: 100% 50%; opacity: 0.7; }
  }
  .h5-btn--primary:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196,30,30,0.4);
  }
  .h5-btn--outline {
    background: rgba(255,255,255,0.04);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
  }
  .h5-btn--outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
  }


  /* Upgraded glassmorphism stat badges */
  .h5-hero__stats {
    position: absolute;
    right: 3rem;
    bottom: 7rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    z-index: 5;
  }
  .h5-hero__stat {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    text-align: center;
    min-width: 120px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    opacity: 0;
    transform: translateX(40px);
    animation: heroStatSlide 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               heroStatFloat var(--float-dur, 4s) ease-in-out infinite;
    animation-delay: var(--entry-delay), calc(var(--entry-delay) + 0.7s);
    transition: box-shadow 0.4s, border-color 0.4s, transform 0.3s;
  }
  /* Gradient border via pseudo-element */
  .h5-hero__stat::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(196,30,30,0.3), rgba(255,255,255,0.1) 50%, rgba(196,30,30,0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
  /* Inner glow */
  .h5-hero__stat::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(196,30,30,0.06) 0%, transparent 50%);
    pointer-events: none;
  }
  .h5-hero__stat:hover {
    box-shadow: 0 8px 32px rgba(196,30,30,0.2);
    border-color: rgba(196,30,30,0.2);
    transform: translateY(-3px);
  }
  .h5-hero__stat:nth-child(1) { --entry-delay: 2s; --float-dur: 4s; --float-offset: -6px; }
  .h5-hero__stat:nth-child(2) { --entry-delay: 2.3s; --float-dur: 4.8s; --float-offset: 6px; }

  /* --- Google 5-Star Rating Card --- */
  .h5-hero__stat--google {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.5rem;
    text-align: left;
    min-width: 180px;
  }
  .h5-hero__stat-google-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  .h5-hero__stat-google-icon svg { width: 28px; height: 28px; }
  .h5-hero__stat-gtext {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    position: relative;
    z-index: 1;
  }
  .h5-hero__stat-gstars {
    display: flex;
    gap: 2px;
  }
  .h5-hero__stat-gstars svg {
    width: 14px;
    height: 14px;
    fill: #FBBC04;
    filter: drop-shadow(0 0 3px rgba(251,188,4,0.4));
  }
  .h5-hero__stat-grating {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-weight: 600;
  }

  /* --- Split Section Video Play Overlay (Subtle, bottom-left) --- */
  .h5-split__media--has-video {
    position: relative;
    cursor: pointer;
  }
  .h5-split__play-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.65rem 1.1rem 0.65rem 0.65rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s ease;
    opacity: 0.85;
  }
  .h5-split__media--has-video:hover .h5-split__play-overlay {
    background: rgba(196,30,30,0.85);
    border-color: rgba(196,30,30,0.4);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196,30,30,0.3);
  }
  .h5-split__play-btn {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .h5-split__media--has-video:hover .h5-split__play-btn {
    background: var(--white);
    transform: scale(1.05);
  }
  .h5-split__play-btn svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
  }
  .h5-split__media--has-video:hover .h5-split__play-btn svg {
    fill: var(--red);
  }
  .h5-split__play-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    white-space: nowrap;
  }

  /* --- Fullscreen Video Lightbox --- */
  .video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }
  .video-lightbox.is-open {
    opacity: 1;
    visibility: visible;
  }
  .video-lightbox__bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
  }
  .video-lightbox__wrap {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 400px;
    aspect-ratio: 9 / 16;
    background: #000;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(196,30,30,0.15);
  }
  .video-lightbox.is-open .video-lightbox__wrap {
    transform: scale(1) translateY(0);
  }
  .video-lightbox__wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  .video-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    color: var(--white);
  }
  .video-lightbox__close:hover {
    background: var(--red);
    transform: rotate(90deg);
  }
  .video-lightbox__title {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    white-space: nowrap;
  }
  @media (max-width: 768px) {
    .video-lightbox__wrap {
      width: 92vw;
      max-width: 340px;
    }
    .h5-hero__stat--google {
      min-width: 140px;
      gap: 0.5rem;
      padding: 0.75rem 1rem;
    }
    .h5-hero__stat-google-icon { width: 28px; height: 28px; }
    .h5-hero__stat-google-icon svg { width: 22px; height: 22px; }
    .h5-split__play-overlay {
      left: 50%;
      transform: translateX(-50%);
      bottom: 1rem;
      padding: 0.5rem 0.85rem 0.5rem 0.5rem;
      max-width: 88%;
    }
    .h5-split__media--has-video:hover .h5-split__play-overlay {
      transform: translateX(-50%) translateY(-2px);
    }
    .h5-split__play-btn { width: 30px; height: 30px; flex-shrink: 0; }
    .h5-split__play-btn svg { width: 11px; height: 11px; }
    .h5-split__play-label { font-size: 0.5rem; letter-spacing: 0.06em; white-space: normal; line-height: 1.4; }
  }
  @keyframes heroStatSlide {
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes heroStatFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(var(--float-offset, -8px)); }
  }
  /* Green indicator dot */
  .h5-hero__stat-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: heroDotPulse 2s ease-in-out infinite;
    z-index: 2;
  }
  @keyframes heroDotPulse {
    0%, 100% { opacity: 0.5; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50% { opacity: 1; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
  }
  .h5-hero__stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    position: relative;
    z-index: 1;
  }
  .h5-hero__stat-label {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 0.35rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
  }
  /* Red progress bar */
  .h5-hero__stat-bar {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 1px;
    margin-top: 0.6rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .h5-hero__stat-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--red);
    border-radius: 1px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .h5-hero__stat.counted .h5-hero__stat-bar-fill {
    width: 100%;
  }

  /* Scroll indicator */
  .h5-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: heroFadeUp 0.7s 3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .h5-hero__scroll-text {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
  }
  .h5-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  }

  /* --- TRUST STRIP --- */
  .h5-trust {
    display: flex;
    border-top: 1px solid var(--gray-800, #222);
    border-bottom: 1px solid var(--gray-800, #222);
  }
  .h5-trust__item {
    flex: 1;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400, #999);
    border-right: 1px solid var(--gray-800, #222);
    transition: color 0.3s;
  }
  .h5-trust__item:last-child { border-right: none; }
  .h5-trust__item:hover { color: var(--white); }
  .h5-trust__item svg {
    width: 18px;
    height: 18px;
    stroke: var(--red);
    flex-shrink: 0;
  }

  /* --- TEXT TICKER --- */
  .h5-ticker {
    overflow: hidden;
    background: var(--black);
    border-bottom: 1px solid var(--gray-800, #222);
    padding: 1rem 0;
    position: relative;
  }
  .h5-ticker::before,
  .h5-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .h5-ticker::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
  .h5-ticker::after { right: 0; background: linear-gradient(to left, var(--black), transparent); }
  .h5-ticker__track {
    display: flex;
    width: max-content;
    animation: h5-tickerScroll 30s linear infinite;
  }
  .h5-ticker__track:hover { animation-play-state: paused; }
  .h5-ticker__content {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .h5-ticker__item {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    padding: 0 1.5rem;
  }
  .h5-ticker__dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
  }
  @keyframes h5-tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* --- IMAGE MARQUEE --- */
  .h5-marquee {
    overflow: hidden;
    background: var(--black);
    border-bottom: 1px solid var(--gray-800, #222);
    padding: 0.75rem 0;
    position: relative;
  }
  .h5-marquee::before,
  .h5-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
  }
  .h5-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--black), transparent);
  }
  .h5-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--black), transparent);
  }
  .h5-marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
  }
  .h5-marquee__track:hover {
    animation-play-state: paused;
  }
  .h5-marquee__set {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    padding-right: 0.75rem;
  }
  .h5-marquee__img {
    width: 180px;
    height: 110px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .h5-marquee__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4) brightness(0.8);
    transition: filter 0.4s, transform 0.4s;
  }
  .h5-marquee__img:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
  }
  .h5-marquee__img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    pointer-events: none;
  }
  @keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* --- SECTION SPLIT (alternating image/text) --- */
  .h5-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
  }
  .h5-split--reverse .h5-split__media { order: 2; }
  .h5-split--reverse .h5-split__text { order: 1; }
  .h5-split__media {
    position: relative;
    overflow: hidden;
  }
  .h5-split__media img {
    position: absolute;
    inset: 0;
  }
  .h5-split__media--danny-hero img {
    object-position: center 15%;
  }
  .h5-split__text {
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .h5-split__text--dark { background: var(--gray-900, #111); }
  .h5-split__text--black { background: var(--black); }
  .h5-split__number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--gray-900, #111);
    line-height: 1;
    position: absolute;
    top: 3rem;
    right: 3rem;
    user-select: none;
    pointer-events: none;
  }
  .h5-split__text--dark .h5-split__number { color: var(--gray-800, #222); }
  .h5-split__heading {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
  }
  .h5-split__heading span { color: var(--red); }
  .h5-split__body {
    color: var(--gray-400, #999);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 2rem;
  }
  .h5-split__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
  }
  .h5-split__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid var(--gray-800, #222);
  }
  .h5-split__list li::before {
    content: '';
    width: 8px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
  }

  /* --- VIEW ALL SERVICES BANNER --- */
  .h5-all-services {
    border-top: 1px solid var(--gray-800, #222);
    border-bottom: 1px solid var(--gray-800, #222);
  }
  .h5-all-services__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 4rem;
    text-decoration: none;
    color: var(--white);
    transition: background 0.4s;
    text-align: center;
  }
  .h5-all-services__link:hover {
    background: var(--red);
  }
  .h5-all-services__text {
    text-align: center;
  }
  .h5-all-services__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gray-500, #666);
    margin-bottom: 0.5rem;
    transition: color 0.4s;
  }
  .h5-all-services__link:hover .h5-all-services__label {
    color: rgba(255,255,255,0.7);
  }
  .h5-all-services__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .h5-all-services__title span {
    color: var(--red);
    transition: color 0.4s;
  }
  .h5-all-services__link:hover .h5-all-services__title span {
    color: var(--white);
  }
  .h5-all-services__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid var(--gray-700, #333);
    flex-shrink: 0;
    transition: border-color 0.4s, transform 0.4s, background 0.4s;
  }
  .h5-all-services__link:hover .h5-all-services__arrow {
    border-color: var(--white);
    transform: translateX(8px);
    background: rgba(255,255,255,0.1);
  }

  /* --- AS SEEN ON TV: 3-CARD STRIP --- */
  /* --- MEDIA SHOWCASE: BOOK, PODCAST, VIDEO --- */
  .h5-media {
    border-top: 1px solid var(--gray-800, #222);
    border-bottom: 1px solid var(--gray-800, #222);
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 3rem;
  }
  .h5-media__header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .h5-media__header h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--white);
  }
  .h5-media__header h2 span { color: var(--red); }
  .h5-media__header p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--gray-400, #999);
    margin-top: 0.75rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .h5-media__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .h5-media__card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--gray-800, #222);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s, border-color 0.4s;
  }
  .h5-media__card:hover {
    transform: translateY(-4px);
    border-color: rgba(196,30,30,0.3);
  }
  .h5-media__embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--black);
    overflow: hidden;
  }
  .h5-media__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  .h5-media__embed--book {
    aspect-ratio: auto;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5e6a3;
    position: relative;
    overflow: hidden;
  }
  .h5-media__embed--book img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  .h5-media__card:hover .h5-media__embed--book img {
    transform: scale(1.05);
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .h5-media__info {
    padding: 1.5rem;
  }
  .h5-media__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.5rem;
  }
  .h5-media__badge svg { width: 14px; height: 14px; }
  .h5-media__name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.35rem;
  }
  .h5-media__desc {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--gray-500, #666);
    margin-bottom: 1rem;
  }
  .h5-media__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    transition: gap 0.3s;
  }
  .h5-media__link:hover { gap: 0.75rem; }
  .h5-media__link svg { width: 14px; height: 14px; transition: transform 0.3s; }
  .h5-media__link:hover svg { transform: translateX(2px); }

  /* --- MEDIA MODAL --- */
  .h5-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .h5-modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .h5-modal {
    position: relative;
    width: 90%;
    max-width: 640px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  }
  .h5-modal-overlay.active .h5-modal {
    transform: scale(1) translateY(0);
  }
  .h5-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .h5-modal__close:hover { background: var(--red); }
  .h5-modal__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }
  .h5-modal__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .h5-modal__body {
    padding: 1.5rem 2rem 2rem;
  }
  .h5-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.6rem;
  }
  .h5-modal__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .h5-modal__desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #999;
    margin-bottom: 1.5rem;
  }
  .h5-modal__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.8rem;
    background: var(--red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s, transform 0.2s;
  }
  .h5-modal__cta:hover {
    background: #e02020;
    transform: translateY(-1px);
  }
  .h5-modal__cta svg { width: 14px; height: 14px; }

  /* --- STATS: SPLIT LAYOUT — TRUST LEFT, ANIMATED REVIEWS RIGHT --- */
  .h5-stats {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gray-800, #222);
    border-bottom: 1px solid var(--gray-800, #222);
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }
  .h5-stats__left {
    position: relative;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .h5-stats__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .h5-stats__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.15) contrast(1.1);
  }
  .h5-stats__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.85) 100%);
  }
  .h5-stats__wrap {
    position: relative;
    z-index: 1;
  }
  .h5-stats__heading {
    margin-bottom: 2rem;
  }
  .h5-stats__heading h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--white);
  }
  .h5-stats__heading h2 span { color: var(--red); }
  .h5-stats__heading p {
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--gray-400, #999);
    margin-top: 0.75rem;
    max-width: 400px;
  }
  /* Trust items — stacked list */
  .h5-trust-items {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .h5-trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
  }
  .h5-trust-item:last-child { border-bottom: none; }
  .h5-trust-item:hover {
    padding-left: 0.5rem;
  }
  .h5-trust-item__icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196,30,30,0.1);
    border: 1px solid rgba(196,30,30,0.2);
    border-radius: 8px;
  }
  .h5-trust-item__icon svg {
    width: 16px;
    height: 16px;
  }
  .h5-trust-item__title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
  }
  .h5-trust-item__desc {
    font-size: 0.7rem;
    line-height: 1.4;
    color: var(--gray-500, #666);
    margin-top: 0.1rem;
  }
  /* --- RIGHT: Google Reviews Showpiece --- */
  .h5-stats__right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(160deg, rgba(196,30,30,0.06) 0%, rgba(10,10,15,0.95) 40%, rgba(10,10,15,0.98) 100%);
    border-left: 1px solid var(--gray-800, #222);
    overflow: hidden;
  }
  /* Subtle radial glow */
  .h5-stats__right::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196,30,30,0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: statsGlowPulse 6s ease-in-out infinite;
  }
  @keyframes statsGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
  }
  /* Google badge at top */
  .h5-stats__google-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    z-index: 1;
  }
  .h5-stats__google-header svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(66,133,244,0.3));
  }
  .h5-stats__google-header span {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
  }
  /* Big 5.0 rating */
  .h5-stats__big-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    z-index: 1;
  }
  .h5-stats__big-rating-num {
    font-size: clamp(3.5rem, 5vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: 0 0 40px rgba(196,30,30,0.15);
  }
  .h5-stats__big-rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .h5-stats__big-stars {
    display: flex;
    gap: 3px;
  }
  .h5-stats__big-stars svg {
    width: 22px;
    height: 22px;
    fill: #FBBC04;
    filter: drop-shadow(0 0 6px rgba(251,188,4,0.4));
  }
  .h5-stats__big-rating-count {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-400, #999);
    letter-spacing: 0.05em;
  }
  /* Dog avatar circle */
  .h5-stats__dog-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(196,30,30,0.4);
    margin-bottom: 1.25rem;
    z-index: 1;
    box-shadow: 0 0 20px rgba(196,30,30,0.15);
    animation: avatarFloat 5s ease-in-out infinite;
  }
  .h5-stats__dog-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @keyframes avatarFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }
  /* Review carousel area */
  .h5-stats__reviews {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 1;
  }
  .h5-stats__reviews-track {
    position: relative;
    height: 100%;
  }
  .h5-stats__review-item {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 0.5rem;
    opacity: 0;
    transform: translateY(20px);
  }
  .h5-stats__review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    justify-content: center;
  }
  .h5-stats__review-stars svg {
    width: 18px;
    height: 18px;
    fill: #FBBC04;
    filter: drop-shadow(0 0 4px rgba(251,188,4,0.3));
  }
  .h5-stats__review-quote {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    font-style: italic;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
    max-width: 460px;
  }
  .h5-stats__review-name {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
  }
  .h5-stats__review-service {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500, #666);
    margin-top: 0.25rem;
  }
  /* Bottom bar — animated count */
  .h5-stats__review-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    max-width: 400px;
    z-index: 1;
  }
  .h5-stats__review-bottom-item {
    text-align: center;
  }
  .h5-stats__review-bottom-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
  }
  .h5-stats__review-bottom-label {
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-500, #666);
    margin-top: 0.2rem;
  }
  .h5-stats__review-bottom-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.08);
  }
  /* Google Reviews external link */
  .h5-stats__google-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    z-index: 1;
  }
  .h5-stats__google-link:hover {
    background: rgba(196,30,30,0.1);
    border-color: rgba(196,30,30,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(196,30,30,0.15);
  }
  /* Review animation driven by JS below */

  /* --- GUARANTEE CALLOUT BOX --- */
  .h5-guarantee {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--red);
    background: rgba(196,30,30,0.08);
  }
  .h5-guarantee__title {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .h5-guarantee__text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
  }

  /* --- VIDEO TRIGGER --- */
  .h5-video-trigger {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .h5-video-trigger:hover { opacity: 0.8; }
  .h5-video-trigger__icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .h5-video-trigger:hover .h5-video-trigger__icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(196,30,30,0.5);
  }
  .h5-video-trigger__text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
  }

  /* --- VIDEO MODAL --- */
  .h5-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  .h5-video-modal__inner {
    position: relative;
    width: 100%;
    max-width: 640px;
    background: #111;
    padding: 4px;
  }
  .h5-video-modal__close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    transition: color 0.3s;
  }
  .h5-video-modal__close:hover { color: var(--red); }
  .h5-video-modal__embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .h5-video-modal__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  /* --- PROMO BANNER --- */
  .h5-promo {
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
    overflow: hidden;
  }
  .h5-promo__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .h5-promo__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25) contrast(1.1);
  }
  .h5-promo__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(196,30,30,0.15) 50%, rgba(10,10,10,0.85) 100%);
    z-index: 1;
  }
  .h5-promo__inner {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
  }
  .h5-promo__price-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
  }
  .h5-promo__price-amount {
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--red);
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 40px rgba(196,30,30,0.4);
  }
  .h5-promo__price-unit {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--white);
    margin-top: 0.25rem;
  }
  .h5-promo__divider {
    width: 60px;
    height: 4px;
    background: var(--red);
    margin: 2rem auto;
  }
  .h5-promo__heading {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
  }
  .h5-promo__heading span { color: var(--red); }
  .h5-promo__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
  }

  /* --- BEFORE & AFTER: HEADER + VIDEO CARDS --- */
  .h5-ba {
    position: relative;
    border-top: 1px solid var(--gray-800, #222);
    overflow: hidden;
    background: linear-gradient(160deg, #0e0e12 0%, #0a0a0e 100%);
  }
  .h5-ba__header {
    text-align: center;
    padding: 4rem 2rem 2.5rem;
    max-width: 700px;
    margin: 0 auto;
  }
  .h5-ba__header h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--white);
  }
  .h5-ba__header h2 span { color: var(--red); }
  .h5-ba__header p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-400, #999);
    margin-top: 0.75rem;
  }
  /* --- Results Split: Text Left + Floating Reviews Right --- */
  .h5-ba__results-split {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 3rem 2rem;
    overflow: hidden;
  }
  .h5-ba__results-split::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/gallery/training-pro-5.webp') center/cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
  }
  .h5-ba__results-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  .h5-ba__results-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
  }
  /* Review cards — flat in a row, no absolute positioning */
  .h5-ba__float-review {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: floatCard1 6s ease-in-out infinite;
  }
  .h5-ba__float-review:nth-child(2) {
    animation: floatCard2 7s ease-in-out infinite;
  }
  .h5-ba__float-review:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 30px rgba(196,30,30,0.15);
    border-color: rgba(196,30,30,0.2);
  }
  .h5-ba__float-stars {
    color: #FBBC04;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
    filter: drop-shadow(0 0 4px rgba(251,188,4,0.3));
  }
  .h5-ba__float-review p {
    font-size: 0.78rem;
    line-height: 1.65;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    margin: 0 0 0.6rem;
  }
  .h5-ba__float-review span {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400, #999);
  }
  @keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-0.5deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
  }
  @keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(0.5deg); }
    50% { transform: translateY(-8px) rotate(-0.3deg); }
  }
  @keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(0.3deg); }
    50% { transform: translateY(-12px) rotate(-0.5deg); }
  }
  @keyframes floatCard4 {
    0%, 100% { transform: translateY(0) rotate(-0.3deg); }
    50% { transform: translateY(-6px) rotate(0.4deg); }
  }

  .h5-ba__split {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 85vh;
  }
  /* Left: Statements column */
  .h5-ba__left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 4rem;
    background: linear-gradient(160deg, #0e0e12 0%, #0a0a0e 100%);
  }
  .h5-ba__left::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(196,30,30,0.3), transparent);
  }
  .h5-ba__heading {
    margin-bottom: 2.5rem;
  }
  .h5-ba__heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--white);
  }
  .h5-ba__heading h2 span { color: var(--red); }
  .h5-ba__heading p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--gray-400, #999);
    margin-top: 0.75rem;
    max-width: 420px;
  }
  /* Statement items */
  .h5-ba__statements {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .h5-ba__statement {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .h5-ba.visible .h5-ba__statement {
    opacity: 1;
    transform: translateX(0);
  }
  .h5-ba.visible .h5-ba__statement:nth-child(1) { transition-delay: 0.1s; }
  .h5-ba.visible .h5-ba__statement:nth-child(2) { transition-delay: 0.2s; }
  .h5-ba.visible .h5-ba__statement:nth-child(3) { transition-delay: 0.3s; }
  .h5-ba.visible .h5-ba__statement:nth-child(4) { transition-delay: 0.4s; }
  .h5-ba.visible .h5-ba__statement:nth-child(5) { transition-delay: 0.5s; }
  .h5-ba.visible .h5-ba__statement:nth-child(6) { transition-delay: 0.6s; }
  .h5-ba__statement:last-child { border-bottom: none; }
  .h5-ba__statement-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196,30,30,0.08);
    border: 1px solid rgba(196,30,30,0.2);
    border-radius: 10px;
    transition: all 0.3s;
  }
  .h5-ba__statement:hover .h5-ba__statement-icon {
    background: rgba(196,30,30,0.15);
    border-color: rgba(196,30,30,0.4);
    transform: scale(1.08);
  }
  .h5-ba__statement-icon svg {
    width: 20px;
    height: 20px;
  }
  .h5-ba__statement-text {
    flex: 1;
  }
  .h5-ba__statement-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.15rem;
  }
  .h5-ba__statement-desc {
    font-size: 0.72rem;
    line-height: 1.5;
    color: var(--gray-500, #666);
  }
  .h5-ba__statement-badge {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    background: rgba(196,30,30,0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    margin-top: 0.3rem;
    display: inline-block;
  }

  /* Right: Large animated Google review quotes */
  .h5-ba__right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #111116 0%, #0c0c10 100%);
    overflow: hidden;
  }
  .h5-ba__right::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(196,30,30,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  /* Google icon watermark */
  .h5-ba__google-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255,255,255,0.015);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
  }
  /* Review cards — stacked with spin entrance */
  .h5-ba__review-stack {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 340px;
  }
  .h5-ba__review-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem;
    opacity: 0;
    transform: scale(0.7) rotate(-8deg);
    animation: baReviewSpin var(--ba-review-total) infinite;
  }
  .h5-ba__review-stars {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
    justify-content: center;
  }
  .h5-ba__review-stars svg {
    width: 22px;
    height: 22px;
    fill: #f4b400;
    filter: drop-shadow(0 0 6px rgba(244,180,0,0.3));
  }
  .h5-ba__review-text {
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    line-height: 1.55;
    font-style: italic;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 480px;
    position: relative;
  }
  .h5-ba__review-text::before {
    content: '\201C';
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.3;
    font-style: normal;
    line-height: 1;
  }
  .h5-ba__review-author {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
  }
  .h5-ba__review-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500, #666);
  }
  .h5-ba__review-meta svg {
    width: 14px;
    height: 14px;
  }
  /* Spin-in / scale-up keyframe for review cards */
  @keyframes baReviewSpin {
    0%, 100% { opacity: 0; transform: scale(0.7) rotate(-8deg); }
    3% { opacity: 1; transform: scale(1) rotate(0deg); }
    20% { opacity: 1; transform: scale(1) rotate(0deg); }
    23% { opacity: 0; transform: scale(0.7) rotate(8deg); }
  }
  /* Google badge floating */
  .h5-ba__google-badge {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
  }
  .h5-ba__google-badge svg {
    width: 18px;
    height: 18px;
  }
  .h5-ba__google-badge span {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400, #999);
  }

  /* === BEFORE & AFTER VIDEO STRIP === */
  .h5-ba__videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.04);
  }
  .h5-ba__video-card {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid rgba(255,255,255,0.04);
  }
  .h5-ba__video-card:last-child { border-right: none; }
  .h5-ba__video-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.1);
    transition: filter 0.5s, transform 0.5s;
  }
  .h5-ba__video-card:hover img {
    filter: brightness(0.7) contrast(1.05);
    transform: scale(1.05);
  }
  .h5-ba__video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
  }
  .h5-ba__video-play {
    width: 56px;
    height: 56px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 30px rgba(196,30,30,0.4);
  }
  .h5-ba__video-card:hover .h5-ba__video-play {
    transform: scale(1.15);
    box-shadow: 0 6px 40px rgba(196,30,30,0.6);
  }
  .h5-ba__video-play svg {
    width: 20px;
    height: 20px;
    fill: white;
    margin-left: 2px;
  }
  .h5-ba__video-label {
    margin-top: 0.8rem;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.7);
  }
  .h5-ba__video-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    background: rgba(196,30,30,0.85);
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    backdrop-filter: blur(4px);
  }
  .h5-ba__video-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: baPulse 1.5s ease-in-out infinite;
  }
  @keyframes baPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }


  /* --- AMBIENT BG VIDEO (Real Dogs Real Results) --- */
  /* --- Cropped Video Viewport --- */
  .h5-ba__video-viewport {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 80px rgba(196,30,30,0.06);
  }
  .h5-ba__video-viewport::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(10,10,15,0.2) 0%, transparent 30%, transparent 70%, rgba(10,10,15,0.3) 100%);
    pointer-events: none;
  }
  .h5-ba__video-viewport::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    pointer-events: none;
  }
  .h5-ba__video-viewport video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 200%;
    width: auto;
    height: auto;
    object-fit: cover;
    animation: baVideoPan 25s ease-in-out infinite alternate;
  }
  @keyframes baVideoPan {
    0% { transform: translate(-50%, -35%) scale(1.05); }
    50% { transform: translate(-50%, -55%) scale(1.05); }
    100% { transform: translate(-50%, -45%) scale(1.1); }
  }
  /* Red accent glow under viewport */
  .h5-ba__video-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(196,30,30,0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }

  .h5-ba__ambient {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: -1rem auto 2rem;
    aspect-ratio: 480 / 222;
    overflow: hidden;
    border-radius: 8px;
    opacity: 0.3;
    filter: blur(1px);
    pointer-events: none;
  }
  .h5-ba__ambient video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* --- TEAM: ASYMMETRIC PANELS --- */
  .h5-team-header {
    padding: 5rem 4rem 0;
    border-top: 1px solid var(--gray-800, #222);
  }
  .h5-team-header h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .h5-team-header h2 span { color: var(--red); }
  .h5-team {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 90vh;
  }
  /* Book Now button on trainers */
  .h5-team__book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    background: var(--red);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 5;
  }
  .h5-team__book-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 25px rgba(196,30,30,0.4);
  }
  .h5-team__book-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
  }
  .h5-team__book-btn:hover::after {
    left: 100%;
  }
  .h5-team__book-btn svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
  }
  .h5-team__book-btn:hover svg {
    transform: translateX(3px);
  }

  /* === FLIP CARD MECHANICS === */
  .h5-team__card {
    perspective: 1200px;
    cursor: pointer;
    position: relative;
  }
  .h5-team__card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
  }
  .h5-team__card:hover .h5-team__card-inner {
    transform: rotateY(180deg);
  }
  .h5-team__card-front,
  .h5-team__card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  /* Front: photo + overlay */
  .h5-team__card-front {
    z-index: 2;
  }
  .h5-team__card-front img {
    position: absolute;
    inset: 0;
    object-position: center 20%;
    filter: contrast(1.05) brightness(0.85);
    transition: filter 0.4s;
  }
  .h5-team__support .h5-team__card:last-child .h5-team__card-front img {
    object-position: center 10%;
  }
  .h5-team__card:hover .h5-team__card-front img {
    filter: contrast(1.1) brightness(0.7);
  }
  .h5-team__card-front-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9) 55%);
    z-index: 2;
  }
  .h5-team__card-name {
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .h5-team__card-role {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
  }
  .h5-team__card-hint {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.4s;
  }
  .h5-team__card:hover .h5-team__card-hint {
    color: var(--white);
  }
  .h5-team__card-hint svg {
    transition: transform 0.4s;
  }
  .h5-team__card:hover .h5-team__card-hint svg {
    transform: rotate(15deg) scale(1.1);
  }
  /* Back: bio panel */
  .h5-team__card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #111 0%, #0a0a0a 50%, #111 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 3rem;
    z-index: 1;
    overflow: hidden;
  }
  .h5-team__card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--red);
  }
  .h5-team__card-back-label {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .h5-team__card-back-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-800, #222);
  }
  .h5-team__card-back-name {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0.6rem;
  }
  .h5-team__card-back-bio {
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--gray-400, #999);
    margin-bottom: 1rem;
  }
  .h5-team__card-back-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .h5-team__card-back-specs li {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--gray-700, #333);
    color: var(--gray-300, #bbb);
    transition: border-color 0.3s, color 0.3s;
  }
  .h5-team__card-back-specs li:hover {
    border-color: var(--red);
    color: var(--white);
  }
  .h5-team__card-back-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
  }
  .h5-team__card-back-actions .h5-team__book-btn--ghost {
    background: transparent;
    border: 1px solid var(--gray-600, #555);
    color: var(--white);
  }
  .h5-team__card-back-actions .h5-team__book-btn--ghost:hover {
    border-color: var(--white);
    box-shadow: none;
  }
  /* Support section stacking */
  .h5-team__support {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .h5-team__support .h5-team__card {
    border-bottom: 1px solid var(--gray-800, #222);
  }
  .h5-team__support .h5-team__card:last-child {
    border-bottom: none;
  }
  .h5-team__support .h5-team__card-back {
    padding: 1.1rem 1.4rem;
    justify-content: center;
  }
  .h5-team__support .h5-team__card-back-label {
    margin-bottom: 0.3rem;
  }
  .h5-team__support .h5-team__card-back-name {
    font-size: clamp(1rem, 1.6vw, 1.5rem);
    margin-bottom: 0.4rem;
  }
  .h5-team__support .h5-team__card-back-bio {
    font-size: 0.68rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
  }
  .h5-team__support .h5-team__card-back-specs {
    margin-bottom: 0.6rem;
    gap: 0.3rem;
  }
  .h5-team__support .h5-team__card-back-specs li {
    font-size: 0.45rem;
    padding: 0.25rem 0.5rem;
  }
  .h5-team__support .h5-team__card-back-actions .h5-team__book-btn {
    padding: 0.5rem 1rem;
    font-size: 0.55rem;
    margin-top: 0;
  }
  .h5-team__support .h5-team__card-name {
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  }


  /* --- FAQ SECTION --- */
  .h5-faq-wrapper {
    position: relative;
    border-top: 1px solid var(--gray-800, #222);
    padding: 2.5rem 4rem 4rem;
  }
  .h5-faq__top {
    text-align: center;
    margin-bottom: 3rem;
  }
  .h5-faq__heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 1rem;
  }
  .h5-faq__heading span { color: var(--red); }
  .h5-faq__desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-400, #999);
    max-width: 600px;
    margin: 0 auto;
  }
  .h5-faq {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  /* FAQ questions column */
  .h5-faq__center {
    padding: 0;
  }
  .h5-faq-item {
    border-bottom: 1px solid var(--gray-800, #222);
  }
  .h5-faq-item:first-child { border-top: 1px solid var(--gray-800, #222); }
  .h5-faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
  }
  .h5-faq-item__q:hover { color: var(--red); }
  .h5-faq-item__q svg {
    width: 14px;
    height: 14px;
    stroke: var(--gray-500, #666);
    flex-shrink: 0;
    transition: transform 0.3s, stroke 0.3s;
  }
  .h5-faq-item.open .h5-faq-item__q svg {
    transform: rotate(45deg);
    stroke: var(--red);
  }
  .h5-faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .h5-faq-item.open .h5-faq-item__a {
    max-height: 400px;
  }
  .h5-faq-item__a-inner {
    padding: 0 0 1.25rem;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--gray-400, #999);
  }
  /* FAQ sidebar */
  .h5-faq__sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
  }
  .h5-faq__sidebar-card {
    background: linear-gradient(160deg, #141418 0%, #111114 100%);
    border: 1px solid var(--gray-800, #222);
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
  }
  .h5-faq__sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--red);
  }
  .h5-faq__sidebar-card h3 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--white);
  }
  .h5-faq__sidebar-card p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--gray-400, #999);
    margin-bottom: 1rem;
  }
  .h5-faq__sidebar-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .h5-faq__sidebar-stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--red);
    min-width: 60px;
  }
  .h5-faq__sidebar-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500, #666);
  }

  /* Latest Transformations — before/after hover cards */
  .h5-faq__transforms {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
  }
  .h5-faq__transform-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    height: 110px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .h5-faq__transform-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
  }
  .h5-faq__transform-card .h5-faq__tf-after {
    opacity: 0;
  }
  .h5-faq__transform-card:hover .h5-faq__tf-before {
    opacity: 0;
  }
  .h5-faq__transform-card:hover .h5-faq__tf-after {
    opacity: 1;
  }
  .h5-faq__transform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
  }
  .h5-faq__tf-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem 0.75rem;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .h5-faq__tf-name {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
  }
  .h5-faq__tf-breed {
    font-size: 0.55rem;
    color: var(--gray-400, #999);
    margin-top: 1px;
  }
  .h5-faq__tf-badge {
    font-size: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    transition: all 0.4s ease;
    white-space: nowrap;
  }
  .h5-faq__tf-badge--before {
    background: rgba(255,255,255,0.1);
    color: var(--gray-400, #999);
    border: 1px solid rgba(255,255,255,0.1);
  }
  .h5-faq__tf-badge--after {
    background: rgba(196,30,30,0.15);
    color: var(--red);
    border: 1px solid rgba(196,30,30,0.3);
    opacity: 0;
    position: absolute;
    right: 0.75rem;
  }
  .h5-faq__transform-card:hover .h5-faq__tf-badge--before {
    opacity: 0;
  }
  .h5-faq__transform-card:hover .h5-faq__tf-badge--after {
    opacity: 1;
  }
  /* Sweep line on hover */
  .h5-faq__transform-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 3px;
    height: 100%;
    background: var(--red);
    box-shadow: 0 0 12px rgba(196,30,30,0.6), 0 0 30px rgba(196,30,30,0.3);
    z-index: 4;
    transition: left 0.5s ease;
  }
  .h5-faq__transform-card:hover::after {
    left: 100%;
  }
  .h5-faq__tf-hint {
    text-align: center;
    font-size: 0.55rem;
    color: var(--gray-600, #555);
    margin-top: 0.5rem;
    font-style: italic;
  }

  /* --- VIDEO REELS SECTION --- */
  .h5-reels {
    padding: 4rem 4rem 3rem;
    border-top: 1px solid var(--gray-800, #222);
    position: relative;
    overflow: hidden;
  }
  .h5-reels__header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .h5-reels__header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.75rem;
  }
  .h5-reels__header h2 span { color: var(--red); }
  .h5-reels__header p {
    font-size: 0.85rem;
    color: var(--gray-400, #999);
    max-width: 500px;
    margin: 0 auto;
  }
  .h5-reels__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .h5-reels__grid::-webkit-scrollbar { display: none; }
  .h5-reels__card {
    flex: 0 0 220px;
    aspect-ratio: 9/16;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
  }
  .h5-reels__card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--red);
    box-shadow: 0 12px 40px rgba(196,30,30,0.2);
  }
  .h5-reels__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter 0.4s, transform 0.5s;
  }
  .h5-reels__card:hover img {
    filter: brightness(0.4);
    transform: scale(1.08);
  }
  .h5-reels__card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 50%);
  }
  .h5-reels__card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(196,30,30,0.3);
  }
  .h5-reels__card:hover .h5-reels__card-play {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 8px 30px rgba(196,30,30,0.5);
  }
  .h5-reels__card-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
  }
  .h5-reels__card-tag {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
  }
  .h5-reels__cta {
    text-align: center;
    margin-top: 2rem;
  }
  .h5-reels__cta a {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400, #999);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
  }
  .h5-reels__cta a:hover { color: var(--red); }
  .h5-reels__cta a svg { transition: transform 0.3s; }
  .h5-reels__cta a:hover svg { transform: translateX(3px); }

  /* --- CTA: FULL WIDTH SPLIT --- */
  .h5-cta {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 50vh;
    border-top: 1px solid var(--gray-800, #222);
  }
  .h5-cta__content {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--black);
    position: relative;
  }
  .h5-cta__content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--red);
  }
  .h5-cta__heading {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: 1.5rem;
  }
  .h5-cta__heading span { color: var(--red); }
  .h5-cta__body {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-400, #999);
    max-width: 500px;
    margin-bottom: 2.5rem;
  }
  .h5-cta__media {
    position: relative;
    overflow: hidden;
  }
  .h5-cta__media img {
    position: absolute;
    inset: 0;
  }
  .h5-cta__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(196, 30, 30, 0.15);
    mix-blend-mode: multiply;
    z-index: 1;
  }

  /* --- AREAS SERVED: INTERACTIVE NETWORK MAP --- */
  .h5-areas {
    padding: 5rem 4rem;
    border-top: 1px solid var(--gray-800, #222);
    position: relative;
    overflow: hidden;
    background: linear-gradient(175deg, #0c0c10 0%, #0f0f14 40%, #0d0d12 100%);
  }
  .h5-areas__header {
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .h5-areas__header h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .h5-areas__header h2 span { color: var(--red); }
  .h5-areas__header p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-400, #999);
    max-width: 550px;
    margin-top: 1rem;
  }
  .h5-areas__map-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 340px;
  }
  .h5-areas__canvas-container {
    position: relative;
    background: #0a0a0f;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    min-height: 380px;
  }
  .h5-areas__canvas-container canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    cursor: pointer;
  }
  .h5-areas__canvas-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,15,0.3) 0%, transparent 20%, transparent 80%, rgba(10,10,15,0.4) 100%);
    pointer-events: none;
  }
  .h5-areas__info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .h5-areas__panel {
    background: rgba(17,17,20,0.85);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 2rem;
    display: flex;
    flex-direction: column;
  }
  .h5-areas__info-block {
    background: rgba(10,10,14,0.9);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: none;
    padding: 2rem;
    display: flex;
    flex-direction: column;
  }
  .h5-areas__info-block-title {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-500, #666);
    margin-bottom: 1.5rem;
  }
  .h5-areas__info-stats {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .h5-areas__info-stat {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .h5-areas__info-stat-icon {
    width: 36px;
    height: 36px;
    background: rgba(196,30,30,0.12);
    border: 1px solid rgba(196,30,30,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .h5-areas__info-stat-icon svg {
    stroke: var(--red);
  }
  .h5-areas__info-stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500, #666);
    font-weight: 600;
  }
  .h5-areas__info-stat-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 0.15rem;
  }
  /* Direction buttons — Find Us */
  .h5-areas__dir-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.7rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  .h5-areas__dir-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s;
  }
  .h5-areas__dir-btn--gmaps {
    background: var(--red);
    color: var(--white);
    border: 1px solid var(--red);
  }
  .h5-areas__dir-btn--gmaps::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  }
  .h5-areas__dir-btn--gmaps:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196,30,30,0.4);
  }
  .h5-areas__dir-btn--gmaps:hover::before { opacity: 1; }
  .h5-areas__dir-btn--waze {
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
  }
  .h5-areas__dir-btn--waze:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.08);
  }
  .h5-areas__dir-arrow {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
  }
  .h5-areas__dir-btn:hover .h5-areas__dir-arrow {
    transform: translateX(4px);
    opacity: 1;
  }
  /* Email — masked with hover reveal */
  .h5-areas__email-reveal {
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.15rem;
    position: relative;
    cursor: pointer;
  }
  .h5-areas__email-masked {
    transition: opacity 0.3s ease;
  }
  .h5-areas__email-full {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    color: var(--red);
    transition: opacity 0.3s ease;
    white-space: nowrap;
  }
  .h5-areas__email-reveal:hover .h5-areas__email-masked {
    opacity: 0;
  }
  .h5-areas__email-reveal:hover .h5-areas__email-full {
    opacity: 1;
  }
  .h5-areas__panel-title {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-500, #666);
    margin-bottom: 1.5rem;
  }
  .h5-areas__panel-name {
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 0.25rem;
  }
  .h5-areas__panel-region {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  .h5-areas__panel-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--gray-400, #999);
    margin-bottom: 1.5rem;
    flex: 1;
  }
  .h5-areas__panel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    text-decoration: none;
    transition: gap 0.3s;
  }
  .h5-areas__panel-link:hover { gap: 0.8rem; }
  .h5-areas__list-fallback {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-800, #222);
  }
  .h5-areas__pill {
    padding: 0.4rem 0.8rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--gray-700, #333);
    color: var(--gray-400, #999);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
  }
  .h5-areas__pill:hover,
  .h5-areas__pill.active {
    border-color: var(--red);
    color: var(--white);
    background: rgba(196,30,30,0.1);
  }
  .h5-areas__pill--hq {
    border-color: var(--red);
    color: var(--red);
  }

  /* Areas image strip */
  /* Street View 3D Walkthrough */
  .h5-areas__streetview {
    margin-top: 2rem;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .h5-areas__streetview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .h5-areas__streetview-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
  }
  .h5-areas__streetview-title svg {
    width: 16px;
    height: 16px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2;
  }
  .h5-areas__streetview-badge {
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    background: rgba(196,30,30,0.12);
    color: var(--red);
    border: 1px solid rgba(196,30,30,0.2);
  }
  .h5-areas__streetview iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: 0;
  }
  .h5-areas__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .h5-areas__gallery-img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
  }
  .h5-areas__gallery-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    transition: filter 0.5s, transform 0.5s;
  }
  .h5-areas__gallery-img:hover img {
    filter: brightness(0.9) contrast(1.05);
    transform: scale(1.08);
  }

  /* --- GUARANTEE DISCLAIMER --- */
  .h5-disclaimer {
    padding: 2rem 4rem;
    border-top: 1px solid var(--gray-800, #222);
  }
  .h5-disclaimer p {
    font-size: 0.7rem;
    line-height: 1.7;
    color: var(--gray-500, #666);
    max-width: 900px;
  }


  /* --- REVEAL ANIMATIONS --- */
  /* Reveal animations removed — caused invisible content on mobile */
  .h5-reveal { opacity: 1; transform: none; }
  .h5-reveal.visible { opacity: 1; transform: none; }
  .h5-reveal-d1, .h5-reveal-d2, .h5-reveal-d3 { transition-delay: 0s; }

  /* --- SKEW DIVIDER --- */
  .h5-skew-divider {
    height: 80px;
    position: relative;
    overflow: hidden;
    background: var(--black);
  }
  .h5-skew-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gray-900, #111);
    clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
  }

  /* --- RESPONSIVE --- */
  @media (max-width: 1024px) {
    .h5-hero__content {
      padding: 0 2rem 4rem;
    }
    .h5-hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
    .h5-hero__stats { display: none; }
    .h5-hero__scroll { display: none; }

    .h5-trust { flex-wrap: wrap; }
    .h5-trust__item {
      flex: 1 1 45%;
      border-right: none;
    }

    .h5-split {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .h5-split__media { height: 50vh; order: 0 !important; }
    .h5-split__text { order: 1 !important; padding: 3rem 2rem; }
    .h5-split__number { font-size: 5rem; }

    .h5-stats {
      grid-template-columns: 1fr;
    }
    .h5-stats__left { padding: 3rem 2rem; }
    .h5-stats__right {
      border-left: none;
      border-top: 1px solid var(--gray-800, #222);
      padding: 3rem 2rem;
      min-height: 380px;
    }

    .h5-ba__results-split { padding: 2rem 1.5rem; }
    .h5-ba__results-row { grid-template-columns: 1fr; gap: 1rem; }
    .h5-ba__split { grid-template-columns: 1fr; }
    .h5-ba__left { padding: 3rem 2rem; }
    .h5-ba__left::after { display: none; }
    .h5-ba__right { padding: 3rem 2rem; min-height: 400px; }
    .h5-ba__review-stack { height: 280px; }
    .h5-ba__review-text { font-size: 1.1rem; }
    .h5-ba__videos { grid-template-columns: 1fr; }
    .h5-ba__video-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.04); }

    .h5-team {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .h5-team__card:first-child { min-height: 70vh; }
    .h5-team__support .h5-team__card { min-height: 50vh; }

    .h5-faq-wrapper { padding: 3rem 2rem; }
    .h5-faq {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .h5-faq__sidebar { position: relative; top: 0; }

    .h5-cta {
      grid-template-columns: 1fr;
    }
    .h5-cta__content { padding: 3rem 2rem; }
    .h5-cta__content::before { display: none; }
    .h5-cta__media { height: 40vh; }

    .h5-areas { padding: 2rem; }
    .h5-areas__map-wrap { grid-template-columns: 1fr; min-height: auto; }
    .h5-areas__info-split { grid-template-columns: 1fr; }
    .h5-areas__info-block { border-left: 1px solid var(--gray-800, #222); border-top: none; }
    .h5-areas__canvas-container { min-height: 300px; height: 300px; }
    .h5-areas__panel { padding: 1.5rem; }

    .h5-promo { padding: 4rem 2rem; }
    .h5-reels { padding: 3rem 2rem; }
    .h5-reels__card { flex: 0 0 170px; }
    .h5-all-services__link { padding: 2rem; flex-direction: column; gap: 1.5rem; text-align: center; }
    .h5-all-services__link:hover { padding: 2rem; }
    .h5-media { padding: 3rem 2rem; }
    .h5-media__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .h5-media__embed--book { height: 220px; }
  }

  @media (max-width: 640px) {
    .h5-hero__content { padding: 0 1.5rem 3rem; }
    .h5-hero__title { font-size: 2.5rem; }
    .h5-hero__actions { flex-direction: column; }
    .h5-hero__actions .h5-btn { width: 100%; justify-content: center; }

    .h5-trust__item {
      flex: 1 1 100%;
      padding: 1rem 1.5rem;
    }

    .h5-marquee__img {
      width: 140px;
      height: 85px;
    }

    .h5-media__embed--book { height: 200px; }
    .h5-media__book-cover { width: 120px; height: 170px; }

    .h5-stats__left { padding: 2.5rem 1.5rem; }
    .h5-stats__right { padding: 2.5rem 1.5rem; }
    .h5-stats__reviews { height: 180px; }
    .h5-stats__review-quote { font-size: 0.95rem; }
    .h5-stats__big-rating-num { font-size: 3rem; }
    .h5-stats__big-stars svg { width: 18px; height: 18px; }

    .h5-ba__left { padding: 2.5rem 1.5rem; }
    .h5-ba__right { padding: 2.5rem 1.5rem; }
    .h5-ba__review-stack { height: 250px; }
    .h5-ba__review-text { font-size: 1rem; }
    .h5-ba__google-badge { bottom: 1rem; right: 1rem; }
    .h5-ba__google-watermark { font-size: 6rem; }

    .h5-team__support .h5-team__card { min-height: 45vh; }
    .h5-team__card-back { padding: 1.5rem; }

  }