.elementor-widget-cb-home-hero > .elementor-widget-container {
  padding: 0;
  margin: 0;
}

/* On navy / blue sections, force white buttons */
[data-cb-home-hero] .hero .btn--orange, [data-cb-home-hero] .cta .btn--orange, [data-cb-home-hero] .process .btn--orange, [data-cb-home-hero] .daikin .btn--orange{
  background: var(--white);
  color: var(--navy-text);
  box-shadow: 0 5px 0 #d5dbe6, 0 14px 22px rgba(0, 0, 0, 0.25);
}

[data-cb-home-hero] .hero .btn--orange:hover, [data-cb-home-hero] .cta .btn--orange:hover, [data-cb-home-hero] .process .btn--orange:hover, [data-cb-home-hero] .daikin .btn--orange:hover{
  color: var(--navy);
  background: var(--white);
}

/* ---------- Hero ---------- */
[data-cb-home-hero] .hero-zone{ position: relative; }

[data-cb-home-hero] .hero{
  position: relative;
  height: calc(100dvh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  max-height: calc(100dvh - var(--header-h));
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

[data-cb-home-hero] .hero-slider{
  position: absolute;
  inset: 0;
  z-index: 1;
}

[data-cb-home-hero] .hero-slide{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 120px 0 110px;
  width: 100%;
  height: 100%;
}

[data-cb-home-hero] .hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  transform: scale(1);
}

[data-cb-home-hero] .hero-slide.is-active .hero-bg{
  animation: hero-kenburns 4.5s linear forwards;
}

/* Slight black overlay for readable type */
[data-cb-home-hero] .hero-slide::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
  pointer-events: none;
}

[data-cb-home-hero] .hero-slide.is-active{
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

[data-cb-home-hero] .hero-content{
  position: relative;
  z-index: 3;
  max-width: 640px;
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}

[data-cb-home-hero] .hero-slide.is-active .hero-content{
  opacity: 1;
  transform: none;
}

[data-cb-home-hero] .hero h1{
  color: var(--white);
  font-size: var(--text-5xl);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-shadow: none;
}

[data-cb-home-hero] .hero-lead{
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  line-height: var(--lh-body);
  font-weight: 400;
  margin: 0 0 28px;
  max-width: 42ch;
  text-shadow: none;
}

[data-cb-home-hero] .hero-dealer{
  display: inline-flex;
  align-items: center;
  margin: 0 0 24px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 12px 28px rgba(13, 90, 145, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}

[data-cb-home-hero] .hero-dealer img{
  display: block;
  width: min(220px, 70vw);
  height: auto;
}

[data-cb-home-hero] .cta-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}

[data-cb-home-hero] .hero-controls{
  position: absolute;
  right: max(32px, calc((100% - min(100% - 40px, var(--container))) / 2));
  bottom: 36px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 10px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

[data-cb-home-hero] .hero-arrow{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(13, 90, 145, 0.35);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-cb-home-hero] .hero-arrow:hover{
  background: var(--orange);
  border-color: var(--orange);
}

[data-cb-home-hero] .hero-arrow:active{
  transform: scale(0.96);
}

[data-cb-home-hero] .hero-dots{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
}

[data-cb-home-hero] .hero-dot{
  width: 26px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-cb-home-hero] .hero-dot.is-active{
  width: 40px;
  background: var(--orange);
}

[data-cb-home-hero] .page-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.04);
}

[data-cb-home-hero] .page-hero-content{
  text-align: center;
  animation: page-hero-copy 1s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  [data-cb-home-hero] .nav-links{ display: none; }
  [data-cb-home-hero] .nav-toggle{ display: inline-flex; }
  [data-cb-home-hero] .nav-inner{
    justify-content: space-between;
  }
  [data-cb-home-hero] .logo{
    margin-top: -28px;
  }
  [data-cb-home-hero] .logo > img{
    height: 100px;
  }
  [data-cb-home-hero] .navbar{ height: 88px; }
  [data-cb-home-hero] .site-header.is-stuck .navbar{ height: 72px; }
  [data-cb-home-hero] .site-header.is-stuck .logo > img{ height: 56px; }
  
  [data-cb-home-hero] .nav-cta{
    height: 44px;
    padding: 0 16px;
    font-size: var(--text-sm);
  }

  [data-cb-home-hero] .hero-content{ max-width: min(100%, 560px); }
  [data-cb-home-hero] .hero h1{ max-width: 16ch; }

  [data-cb-home-hero] .services-grid, [data-cb-home-hero] .testimonials-grid, [data-cb-home-hero] .feature-grids-row{ grid-template-columns: 1fr 1fr; }

  [data-cb-home-hero] .highlights-layout{
    grid-template-columns: 1fr 1fr;
  }

  [data-cb-home-hero] .hl-metric:nth-child(3), [data-cb-home-hero] .hl-cred:nth-child(3){
    border-left: 0;
    border-top: 1px solid rgba(14, 95, 154, 0.12);
  }

  [data-cb-home-hero] .hl-cred:nth-child(4){
    border-top: 1px solid rgba(14, 95, 154, 0.12);
  }

  [data-cb-home-hero] .about-grid, [data-cb-home-hero] .daikin-grid, [data-cb-home-hero] .process-layout, [data-cb-home-hero] .service-detail-grid, [data-cb-home-hero] .service-detail--flip .service-detail-grid, [data-cb-home-hero] .about-approach-grid, [data-cb-home-hero] .about-local-grid, [data-cb-home-hero] .contact-grid{ grid-template-columns: 1fr; }

  [data-cb-home-hero] .about-approach-media{
    min-height: 420px;
  }

  [data-cb-home-hero] .service-detail--flip .service-detail-media{
    order: 0;
  }

  [data-cb-home-hero] .service-detail-copy h2, [data-cb-home-hero] .about-approach-copy h2, [data-cb-home-hero] .about-local-copy h2, [data-cb-home-hero] .contact-info h2, [data-cb-home-hero] .contact-form-card h2{
    max-width: none;
    font-size: var(--text-3xl);
  }

  [data-cb-home-hero] .page-hero{
    min-height: 280px;
    padding: 56px 0;
  }

  [data-cb-home-hero] .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }

  [data-cb-home-hero] .why-grid{
    grid-template-columns: 1fr 1fr;
  }

  [data-cb-home-hero] .about-media img, [data-cb-home-hero] .about-media video{
    height: 420px;
    min-height: 420px;
  }

  [data-cb-home-hero] .process-intro h2{
    max-width: none;
    font-size: var(--text-3xl);
  }

  [data-cb-home-hero] .process-media img{
    min-height: 360px;
    height: 360px;
  }

  [data-cb-home-hero] .process-curve{
    display: none;
  }

  [data-cb-home-hero] .process-step:nth-child(n){
    margin-left: 0;
  }

  [data-cb-home-hero] .process-steps{
    gap: 28px;
    padding-left: 0;
  }

}

@media (max-width: 767px) {
  

  [data-cb-home-hero] .topbar-item--phone{
    font-size: 18px;
  }
  [data-cb-home-hero] .nav-cta{ display: none; }
  [data-cb-home-hero] .hero-controls{
    left: auto;
    right: 18px;
    width: max-content;
    max-width: calc(100% - 36px);
    bottom: 22px;
    padding: 7px 9px 7px 7px;
  }
  [data-cb-home-hero] .hero-slide{
    padding: 100px 0 96px;
    align-items: flex-end;
  }
  [data-cb-home-hero] .hero-slide::before{
    background: rgba(0, 0, 0, 0.48);
  }
  [data-cb-home-hero] .hero h1{
    font-size: var(--text-4xl);
    max-width: none;
  }
  [data-cb-home-hero] .checklist{
    grid-template-columns: 1fr;
  }
  [data-cb-home-hero] .hero-dealer{
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 280px;
  }
  [data-cb-home-hero] .hero-dealer img{
    width: min(200px, 72vw);
  }
  [data-cb-home-hero] .services-grid, [data-cb-home-hero] .testimonials-grid, [data-cb-home-hero] .feature-grids-row, [data-cb-home-hero] .why-grid, [data-cb-home-hero] .about-areas{ grid-template-columns: 1fr; }

  [data-cb-home-hero] .highlights-layout{
    grid-template-columns: 1fr;
  }

  [data-cb-home-hero] .hl-metric, [data-cb-home-hero] .hl-cred{
    border-left: 0 !important;
    border-top: 0;
    padding: 24px 20px;
  }

  [data-cb-home-hero] .hl-metric + .hl-metric, [data-cb-home-hero] .hl-metric + .hl-cred, [data-cb-home-hero] .hl-cred + .hl-cred{
    border-top: 1px solid rgba(14, 95, 154, 0.12);
  }

  [data-cb-home-hero] .hl-cred .highlight-logo{
    height: 64px;
  }

  [data-cb-home-hero] .hl-cred .arc-logo{
    height: 80px;
  }

  [data-cb-home-hero] .stat-num{
    font-size: var(--text-3xl);
  }

  [data-cb-home-hero] .why-head{
    flex-direction: column;
    align-items: flex-start;
  }

  [data-cb-home-hero] .why-head .btn{
    width: 100%;
  }

  [data-cb-home-hero] .about-media img, [data-cb-home-hero] .about-media video{
    height: 360px;
    min-height: 360px;
  }
  [data-cb-home-hero] .testimonials-actions .write-review{
    width: 100%;
  }
  [data-cb-home-hero] .cta-actions{ flex-direction: column; }
  [data-cb-home-hero] .btn{ width: 100%; }
  [data-cb-home-hero] .cta-row .btn{ width: auto; flex: 1; }
  [data-cb-home-hero] .about, [data-cb-home-hero] .daikin, [data-cb-home-hero] .services, [data-cb-home-hero] .why-choose, [data-cb-home-hero] .process, [data-cb-home-hero] .feature-grids, [data-cb-home-hero] .testimonials, [data-cb-home-hero] .service-detail, [data-cb-home-hero] .about-approach, [data-cb-home-hero] .about-local, [data-cb-home-hero] .highlights--page, [data-cb-home-hero] .faq-page, [data-cb-home-hero] .contact-page{
    padding: 64px 0;
  }

  [data-cb-home-hero] .page-hero{
    min-height: 240px;
    padding: 48px 0;
  }

  [data-cb-home-hero] .page-hero h1{
    font-size: var(--text-4xl);
  }

  [data-cb-home-hero] .service-detail-copy .btn{
    width: 100%;
  }

  [data-cb-home-hero] .faq-trigger{
    padding: 12px 14px;
    align-items: center;
    height: auto;
  }

  [data-cb-home-hero] .faq-q{
    font-size: var(--text-md);
  }

  [data-cb-home-hero] .faq-toggle{
    width: 32px;
    height: 32px;
    margin-top: 0;
    font-size: 14px;
  }

  [data-cb-home-hero] .contact-form-card{
    padding: 28px 20px;
  }

  [data-cb-home-hero] .form-row{
    grid-template-columns: 1fr;
  }

  [data-cb-home-hero] .contact-form .btn{
    width: 100%;
    min-width: 0;
  }
  [data-cb-home-hero] .footer-grid{
    grid-template-columns: 1fr;
  }

  [data-cb-home-hero] .footer-logo img{
    height: 96px;
  }

  [data-cb-home-hero] .footer-brand .tag-cloud, [data-cb-home-hero] .footer-contact .socials, [data-cb-home-hero] .footer-email{
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  [data-cb-home-hero] .footer-badges{
    justify-content: flex-start;
  }

  [data-cb-home-hero] .tag-cloud{
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-cb-home-hero] .reveal, [data-cb-home-hero] .reveal--left, [data-cb-home-hero] .reveal--right, [data-cb-home-hero] .reveal--up{
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-cb-home-hero] .hl-metric, [data-cb-home-hero] .hl-cred, [data-cb-home-hero] .why-item{
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-cb-home-hero] .hero-slide.is-active .hero-bg{
    animation: none;
  }

  [data-cb-home-hero] .topbar, [data-cb-home-hero] .site-header .nav-inner{
    animation: none;
  }

  [data-cb-home-hero] .page-hero-content{
    animation: none;
  }

  [data-cb-home-hero] .brands-track{
    animation: none;
  }

  [data-cb-home-hero] .service-card, [data-cb-home-hero] .service-card .thumb img, [data-cb-home-hero] .feature-block, [data-cb-home-hero] .feature-icon, [data-cb-home-hero] .testimonial-card, [data-cb-home-hero] .process-step .num, [data-cb-home-hero] .brand-logo, [data-cb-home-hero] .btn, [data-cb-home-hero] .service-detail-media img{
    transition: none !important;
  }

  [data-cb-home-hero] .faq-panel, [data-cb-home-hero] .faq-toggle, [data-cb-home-hero] .faq-toggle .ph{
    transition: none !important;
  }

  [data-cb-home-hero] .service-card:hover, [data-cb-home-hero] .feature-block:hover, [data-cb-home-hero] .testimonial-card:hover, [data-cb-home-hero] .btn:hover, [data-cb-home-hero] .btn:active{
    transform: none;
  }
}
