/* New light header design (overrides the dark/lightning header from style.css) */

:root {
  --nh-accent: #34cf79;
  --nh-accent-hover: #2bbd6c;
  --nh-heading: #0b0f1a;
  --nh-text-muted: #6b7280;
  --nh-nav: #4b5563;
}

body {
  font-family: Inter, sans-serif;
}

.header-view {
  background-color: #fff;
}

/* Top bar */
.header {
  height: 88px;
  padding: 0 60px;
}

.header .logo {
  width: 200px;
  height: auto;
}

.header-menu {
  gap: 34px;
}

.header-menu li a {
  color: var(--nh-nav);
  font-size: 15px;
  transition: color 0.2s ease;
}

.header-menu li a:hover {
  color: var(--nh-heading);
}

.header-menu li.active a {
  color: var(--nh-heading);
}

/* style.css only animates the first 4 nav items; reveal the rest too */
.header-view.visible .header-menu li:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.header-view.visible .header-menu li:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

/* Phone + contact button */
.header-right {
  gap: 28px;
}

.header-right .phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-right .phone {
  color: var(--nh-heading);
  font-weight: 600;
  font-size: 16px;
}

.phone-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  /* recolor the white phone icon to dark for the light header */
  filter: brightness(0) saturate(100%);
}

.header .action-btn {
  background-color: var(--nh-accent);
  color: #fff;
  border-radius: 28px;
  height: 48px;
  min-width: 250px;
  font-weight: 600;
}

.header .action-btn:hover {
  background-color: var(--nh-accent-hover);
  color: #fff;
}

/* Hero content */
.header-content {
  position: relative;
  height: 100vh;
}

.header-text {
  position: absolute;
  z-index: 4;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 470px;
}

.header-text h1 {
  color: #0A0B1D;
  font-size: 64px;
  line-height: 1.15;
  margin: 0 0 22px;
  white-space: nowrap;
  font-weight: 600;
}

.header-text h1 .accent {
  color: var(--nh-accent);
}

.header-text p {
  color: #747375;
  font-size: 18px;
  line-height: 1.55;
  max-width: 460px;
  font-weight: 500;
}

.header-text .action-btn {
  background-color: var(--nh-accent);
  color: #fff;
  border-radius: 28px;
  height: 56px;
  min-width: 220px;
  font-weight: 600;
  margin-top: 40px;
}

.header-text .action-btn:hover {
  background-color: var(--nh-accent-hover);
  color: #fff;
}

/* Right div — the image (full-height, bleeds to the right edge) */
.header-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Left div — white panel. Its inner (right) edge is scooped into a concave
   curve with a radial-gradient mask, so the image bulges into the white
   (opposite direction to a convex edge) and with a gentler, half-size curve. */
.header-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 65%;
  z-index: 3;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 40px 40px 60px;
  box-sizing: border-box;
  -webkit-mask: radial-gradient(35% 65% at 100% 50%, transparent 100%, #000 100%);
  mask: radial-gradient(35% 65% at 100% 50%, transparent 100%, #000 100%);
}

/* Optional third div — a thin glass-effect line following the same concave
   curve. Its scoop is slightly shallower than the panel, so it shows as a
   narrow blurred band just past the panel edge. */
.header-glass {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 65%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset -2px 0 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-mask: radial-gradient(30% 60% at 97% 50%, transparent 100%, #000 100%);
  mask: radial-gradient(30% 60% at 97% 50%, transparent 100%, #000 100%);
}

/* Service cards — all equal height; the title stays pinned to the top while
   the description, price and button are pushed down to the bottom edge. */
.service-card {
  display: flex;
  flex-direction: column;
  height: 522px;
  padding-bottom: 24px;
  overflow: hidden;
}

.service-card img {
  flex-shrink: 0;
}

.service-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 0;
  margin-top: 24px;
  padding: 0 20px;
}

.service-text p {
  margin-top: auto;
}

.service-card .action-btn {
  width: auto;
  margin: 20px 20px 0;
  background: #0A0B1D;
}

@media (max-width: 1023px) {
  #service-include {
    padding-top: 64px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .service-container {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
    justify-items: stretch;
  }

  .service-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    padding-bottom: 20px;
    border-radius: 16px;
  }

  .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
  }

  .service-text {
    margin-top: 16px;
    padding: 0 16px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-card .action-btn {
    display: flex;
    width: calc(100% - 32px);
    margin: 16px 16px 0;
    justify-content: center;
    align-items: center;
  }
}

/* ===========================================================================
   About Us — white background with a soft grey panel on the right whose LEFT
   edge is scooped (curve flipped vs the previous white-on-grey version).
   =========================================================================== */
.about-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "title  visual"
    "text   visual";
  align-items: start;
  column-gap: 40px;
  padding: 90px 60px;
  position: relative;
  overflow: hidden;
  background: #fff;
  background-size: auto;
  box-sizing: border-box;
  width: 100%;
}

.about-container.visible {
  background: #fff;
  background-size: auto;
  padding-left: 100px;
}

/* Soft grey on the right; scooped on its LEFT edge so the white bg curves in */
.about-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 0;
  background: #eef0f4;
  -webkit-mask: radial-gradient(30% 60% at 0% 50%, transparent 99%, #000 100%);
  mask: radial-gradient(30% 60% at 0% 50%, transparent 99%, #000 100%);
  pointer-events: none;
}

/* Soft white fade at the top and bottom so the grey panel blends into
   the neighboring white sections */
.about-container::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to bottom,
      #fff 0%,
      transparent 18%,
      transparent 82%,
      #fff 100%);
}

.about-title,
.about-text,
.about-visual {
  position: relative;
  z-index: 1;
}

.about-title {
  grid-area: title;
  margin: 0 0 26px;
  font-family: Inter, sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0a0b1d;
}

.about-title::after {
  content: "";
  display: block;
  width: 190px;
  height: 5px;
  margin-top: 16px;
  border-radius: 3px;
  background: var(--nh-accent);
}

.about-text {
  grid-area: text;
}

.about-text p {
  color: #0A0B1D;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 500;
  margin: 0 60px 24px 0;
}

.about-text .action-btn {
  background: var(--nh-accent);
  color: #fff;
  border-radius: 28px;
  height: 54px;
  min-width: 230px;
  font-weight: 600;
  margin-top: 22px;
}

.about-text .action-btn:hover {
  background: var(--nh-accent-hover);
  color: #fff;
}

.about-visual {
  grid-area: visual;
  position: relative;
  align-self: stretch;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: none;
  border-radius: 0;
}

.about-img {
  position: relative;
  z-index: 2;
  width: auto;
  height: 90%;
  max-height: 540px;
  margin: 0;
  /* SVG has transparent side padding; pull the figure to the content edge */
  margin-right: -70px;
  margin-left: 0;
}

/* Bubble SVG already includes the slogan + thought-dot tail */
.about-bubble {
  position: absolute;
  top: -15px;
  left: auto;
  right: 240px;
  z-index: 3;
  width: 254px;
  height: 203px;
  display: block;
  margin: 0;
  filter: drop-shadow(0 16px 28px rgba(16, 24, 40, 0.14));
}

/* ===========================================================================
   How do we work — dark section, 3 step cards + featured "Work Begins" card
   =========================================================================== */
.how-we-work-wrapper {
  position: relative;
  overflow: hidden;
  padding: 96px 40px 110px;
  /* Soft layered indigo/violet radial glows on near-black — matches design */
  background:
    radial-gradient(90% 80% at 18% 55%, rgba(42, 48, 90, 0.75) 0%, transparent 58%),
    radial-gradient(75% 70% at 72% 48%, rgba(36, 42, 78, 0.55) 0%, transparent 62%),
    radial-gradient(110% 90% at 50% 110%, rgba(28, 32, 62, 0.7) 0%, transparent 55%),
    #0a0b14;
  box-sizing: border-box;
}

.how-we-work-lines {
  display: none;
}

.how-we-work-title {
  position: relative;
  z-index: 1;
  margin: 0 auto 56px;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}

.how-we-work-title::after {
  content: "";
  display: block;
  width: 160px;
  height: 5px;
  margin: 18px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--nh-accent) 0%, var(--nh-accent) 55%, rgba(255, 255, 255, 0.35) 100%);
}

.how-we-work-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  scroll-snap-type: none;
}

.how-we-work-card {
  flex: none;
  min-width: 0;
  max-width: none;
  height: auto;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  border-radius: 24px;
  box-shadow: none;
  background: #f3f4f8;
  padding: 32px 28px;
  box-sizing: border-box;
  scroll-snap-align: none;
}

.how-we-work-card-icon,
.how-we-work-card-arrow {
  display: none;
}

.how-we-work-card .how-step {
  display: block;
  margin: 0 0 18px;
  margin-top: 0;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #7b8bb5;
}

.how-card-title {
  margin: 0 0 14px;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: #0a0b1d;
}

.how-card-text {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: #6b7280;
}

/* Featured fourth card */
.how-we-work-card--featured {
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 28px 24px 32px;
  border: 1.5px solid rgba(140, 235, 210, 0.7);
  box-shadow:
    0 0 0 4px rgba(100, 220, 200, 0.12),
    0 0 36px rgba(90, 230, 200, 0.45),
    0 18px 40px rgba(0, 0, 0, 0.22);
}

.how-featured-img {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto 10px;
}

.how-featured-logo {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto 18px;
}

.how-we-work-card--featured .how-card-title {
  margin-bottom: 10px;
}

.how-we-work-card--featured .how-card-text {
  margin-bottom: 22px;
}

.how-featured-btn {
  background: var(--nh-accent);
  color: #fff;
  border-radius: 28px;
  height: 48px;
  min-width: 170px;
  padding: 0 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: auto;
}

.how-featured-btn:hover {
  background: var(--nh-accent-hover);
  color: #fff;
}

.small-banner {
  height: 120px;
  background-color: #0A0B1D;
  margin-top: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Right-to-left infinite marquee. The track holds two identical groups, so
   shifting it by exactly one group width (-50%) loops seamlessly. */
.banner-track {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  align-items: center;
  animation: banner-scroll 40s linear infinite;
}

.banner-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.banner-item {
  padding: 0 32px;
  font-family: Inter, sans-serif;
  font-size: 65px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #35354e;
}

.banner-zip {
  flex-shrink: 0;
  width: 28px;
}

@keyframes banner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-track {
    animation: none;
  }
}

@media (max-width: 1023px) {
  .small-banner {
    height: 64px;
    margin-top: 80px;
  }

  .banner-item {
    padding: 0 16px;
    font-size: 28px;
    font-family: Inter, sans-serif;
  }

  .banner-zip {
    width: 16px;
  }
}

@media (max-width: 1023px) {
  .header {
    height: auto;
    padding: 15px 20px;
  }

  .header .logo {
    width: 150px;
  }

  .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 0 36px;
  }

  .header-view {
    overflow-x: hidden;
  }

  /* Image on top — no mask; the white panel below scoops the curve (same
     technique as desktop), so the photo bulges down into the white. */
  .header-image {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    order: 1;
    width: 100%;
    height: 340px;
    z-index: 1;
  }

  .header-image img {
    border-radius: 0;
    object-position: 98% 22%;
  }

  /* White panel overlaps the image bottom; radial mask scoops its TOP edge
     (desktop panel mask rotated), so the image bulges into the white. */
  .header-panel {
    display: block;
    position: absolute;
    top: 288px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 3;
    padding: 0;
    background: #fff;
    -webkit-mask: radial-gradient(62% 70px at 50% -7%, transparent 100%, #000 100%);
    mask: radial-gradient(62% 70px at 50% -7%, transparent 100%, #000 100%);
  }

  /* Glass rim: same scoop, slightly shallower so it peeks into the photo */
  .header-glass {
    top: 288px;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 100px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.16);
    border: none;
    border-radius: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-mask: radial-gradient(54% 50px at 50% -20%, transparent 100%, #000 100%);
    mask: radial-gradient(54% 50px at 50% -20%, transparent 100%, #000 100%);
  }

  .header-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    order: 2;
    z-index: 4;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 28px 20px 0;
    text-align: center;
  }

  .header-text h1 {
    font-size: 30px;
    margin-bottom: 16px;
    white-space: normal;
  }

  .header-text p {
    font-size: 16px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .header-text .action-btn {
    width: 100%;
    max-width: 340px;
    box-sizing: border-box;
    margin-top: 24px;
  }

  /* About Us — stacked: title, mascot, text, full-width button */
  .about-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "title"
      "visual"
      "text";
    column-gap: 0;
    row-gap: 18px;
    padding: 56px 16px 64px;
    background: #fff;
    overflow: visible;
  }

  .about-container.visible {
    padding-left: 16px;
  }

  .about-container::before {
    display: none;
  }

  .about-title {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .about-title::after {
    width: 110px;
    height: 4px;
    margin-top: 12px;
  }

  .about-text {
    max-width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.55;
    margin: 0 0 18px;
  }

  .about-visual {
    min-height: 0;
    padding: 10px 0 2px;
    border-radius: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.2) 46%,
        rgba(255, 255, 255, 1) 100%);
    justify-content: center;
    align-items: flex-start;
  }

  /* override style.css which hides About Us images on mobile */
  .about-container .about-img,
  .about-container .about-bubble {
    display: block;
  }

  .about-container .about-img {
    height: 286px;
    margin-right: 0;
    margin-top: 50px;
  }

  .about-bubble {
    position: absolute;
    top: 20px;
    left: -20px;
    right: auto;
    width: 158px;
    height: auto;
    z-index: 3;
    margin: 0;
  }

  .about-text .action-btn {
    width: 100%;
    max-width: none;
    align-self: stretch;
    margin-top: 18px;
  }

  .how-we-work-wrapper {
    padding: 64px 20px 72px;
  }

  .how-we-work-title {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .how-we-work-title::after {
    width: 110px;
    margin-top: 14px;
  }

  .how-we-work-container {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: none;
  }

  .how-we-work-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .how-we-work-card .how-step {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .how-card-title {
    font-size: 20px;
  }

  .how-card-text {
    font-size: 15px;
  }

  .how-featured-img {
    width: 140px;
  }

  .how-featured-logo {
    width: 140px;
  }

  .how-featured-btn {
    width: 100%;
    max-width: 280px;
  }

  .reviews-section {
    background: #fbfcff;
    padding: 56px 16px 64px;
  }

  .reviews-header {
    margin-bottom: 20px;
  }

  .reviews-nav--desktop {
    display: none !important;
  }

  .reviews-nav--mobile {
    display: flex !important;
    width: 100%;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }

  .reviews-nav.swiper-pagination-container {
    justify-content: center !important;
  }

  .reviews-title {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .reviews-subtitle {
    font-size: 15px;
    margin-bottom: 12px;
    color: #6b7280;
  }

  .reviews-score {
    font-size: 22px;
  }

  .reviews-score-stars img {
    width: 18px;
    height: 18px;
  }

  .reviews-nav--mobile .swiper-button-prev,
  .reviews-nav--mobile .swiper-button-next {
    display: flex !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8eaef;
  }

  .comment-container {
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 6px 22px rgba(16, 24, 40, 0.08);
  }

  .comment-avatar {
    width: 48px;
    height: 48px;
  }

  .comment-container .title {
    font-size: 15px;
  }

  .comment-container .subtitle {
    font-size: 12px;
  }

  .comment-container .star-container img {
    width: 12px;
    height: 12px;
  }

  .comment-header {
    margin-bottom: 12px;
  }

  .comment-body {
    gap: 12px;
  }

  .comment-container .comment {
    font-size: 14px;
    line-height: 1.5;
  }

  .comment-container .comment--clamped {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }

  .comment-photo {
    width: 84px;
    height: 84px;
    border-radius: 10px;
  }

  .comment-read-more {
    margin-top: 10px;
    font-size: 13px;
  }
}

@media (min-width: 700px) and (max-width: 1023px) {
  .how-we-work-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===========================================================================
   Reviews — light section with header rating + nav, 3-up review cards
   =========================================================================== */
.reviews-section {
  background: #f3f4f8;
  padding: 96px 40px 100px;
  box-sizing: border-box;
}

.reviews-inner {
  width: 100%;
  margin: 0 auto;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.reviews-title {
  margin: 0 0 12px;
  font-family: Inter, sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0a0b1d;
}

.reviews-subtitle {
  margin: 0 0 18px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #6b7280;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-score {
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0a0b1d;
  line-height: 1;
}

.reviews-score-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.reviews-score-stars img {
  width: 22px;
  height: 22px;
}

.reviews-nav.swiper-pagination-container {
  margin-top: 0;
  width: auto;
  gap: 14px;
  justify-content: flex-end;
  flex-shrink: 0;
}

.reviews-nav--mobile {
  display: none;
}

.reviews-nav .swiper-pagination {
  position: static !important;
  width: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-nav.swiper-pagination-container .swiper-button-prev,
.reviews-nav.swiper-pagination-container .swiper-button-next {
  position: static !important;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border-radius: 12px;
  background: #e6e8ef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-nav.swiper-pagination-container .swiper-button-prev:after,
.reviews-nav.swiper-pagination-container .swiper-button-next:after {
  content: "" !important;
  width: 10px;
  height: 10px;
  border-right: 2px solid #0a0b1d;
  border-bottom: 2px solid #0a0b1d;
  display: block;
  font-size: 0;
  background: none;
}

.reviews-nav.swiper-pagination-container .swiper-button-prev:after {
  transform: rotate(135deg);
  margin-left: 3px;
}

.reviews-nav.swiper-pagination-container .swiper-button-next:after {
  transform: rotate(-45deg);
  margin-right: 3px;
}

.reviews-nav.swiper-pagination-container .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: #c9cedb;
  opacity: 1;
  border-radius: 50%;
}

.reviews-nav.swiper-pagination-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 8px;
  background: #0a0b1d;
}

.reviews-container {
  position: relative;
  padding: 0;
  z-index: 0;
  background: none;
  opacity: 1;
  transform: none;
}

.reviews-container::before,
.reviews-container::after {
  display: none;
}

.comments-swiper {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.comments-swiper .swiper-slide {
  width: auto;
  height: auto;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
}

.comment-container {
  width: 100%;
  height: 100%;
  min-height: 260px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(16, 24, 40, 0.08);
  box-sizing: border-box;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: left;
}

.comment-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.comment-user {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8ebf3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-avatar-initials {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #4b5568;
}

.comment-user-meta {
  min-width: 0;
}

.comment-container .title {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  text-align: left;
  color: #0a0b1d;
  margin: 0 0 4px;
}

.comment-container .subtitle {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.3;
  text-align: right;
  color: #9ca3af;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.comment-container .star-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  margin-top: 0;
}

.comment-container .star-container img {
  width: 14px;
  height: 14px;
}

.comment-body {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}

.comment-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.comment-container .comment {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
  color: #4b5563;
  min-height: 0;
  margin: 0;
  white-space: pre-line;
}

.comment-container .comment--clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
  white-space: normal;
}

.comment-container .comment--expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.comment-read-more {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin-top: 12px;
  align-self: flex-start;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
  cursor: pointer;
}

.comment-read-more:hover {
  color: #6b7280;
}

.comment-photo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

/* ===========================================================================
   Electric button hover — an energy "charge" sweeps across the button and a
   flickering green glow crackles around it, matching the site's lightning look.
   =========================================================================== */
.action-btn {
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

/* the bright energy streak that shoots across on hover */
.action-btn::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -85%;
  width: 55%;
  height: 140%;
  background: linear-gradient(115deg,
      transparent 0%,
      rgba(255, 255, 255, 0.15) 35%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(200, 255, 225, 0.15) 65%,
      transparent 100%);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.action-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  text-shadow: 0 0 9px rgba(255, 255, 255, 0.75);
  box-shadow: none;
}

.action-btn:hover::before {
  animation: btn-charge 0.75s ease-out;
}

/* keep service-card buttons white on hover for the glow (overrides style.css) */
.service-card .action-btn:hover {
  color: #fff;
}

@keyframes btn-charge {
  0% {
    left: -85%;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  100% {
    left: 130%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .action-btn:hover::before {
    animation: none;
  }
}

/* ===========================================================================
   Gallery of Our Work — portrait carousel below Reviews
   =========================================================================== */
.gallery-section {
  background: #ffffff;
  padding: 96px 40px 100px;
  box-sizing: border-box;
}

.gallery-inner {
  width: 100%;
  margin: 0 auto;
}

.gallery-title {
  margin: 0 0 48px;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0a0b1d;
}

.gallery-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 16px auto 0;
  border-radius: 3px;
  background: var(--nh-accent);
}

.gallery-slider-wrap {
  overflow: hidden;
}

.gallery-swiper {
  overflow: hidden;
  /* Promote slider layer so transforms stay on GPU */
  transform: translateZ(0);
}

.gallery-swiper .swiper-wrapper {
  will-change: transform;
}

.gallery-slide {
  height: auto;
  /* Limit paint work for off-screen slides */
  content-visibility: auto;
  contain-intrinsic-size: 360px 480px;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #e6e8ef;
  /* Avoid expensive decoding during scroll */
  pointer-events: none;
}

.gallery-nav.swiper-pagination-container {
  margin-top: 36px;
  width: 100%;
  gap: 14px;
  justify-content: center;
}

.gallery-nav .swiper-pagination {
  position: static !important;
  width: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-nav.swiper-pagination-container .swiper-button-prev,
.gallery-nav.swiper-pagination-container .swiper-button-next {
  position: static !important;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #e6e8ef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav.swiper-pagination-container .swiper-button-prev:after,
.gallery-nav.swiper-pagination-container .swiper-button-next:after {
  content: "" !important;
  width: 10px;
  height: 10px;
  border-right: 2px solid #0a0b1d;
  border-bottom: 2px solid #0a0b1d;
  display: block;
  font-size: 0;
  background: none;
}

.gallery-nav.swiper-pagination-container .swiper-button-prev:after {
  transform: rotate(135deg);
  margin-left: 3px;
}

.gallery-nav.swiper-pagination-container .swiper-button-next:after {
  transform: rotate(-45deg);
  margin-right: 3px;
}

.gallery-nav.swiper-pagination-container .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: #c9cedb;
  opacity: 1;
  border-radius: 50%;
}

.gallery-nav.swiper-pagination-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 8px;
  background: #0a0b1d;
}

@media (max-width: 1023px) {
  .gallery-section {
    padding: 64px 20px 72px;
  }

  .gallery-title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .gallery-title::after {
    width: 56px;
    height: 4px;
    margin-top: 12px;
  }

  .gallery-slide img {
    border-radius: 14px;
  }

  .gallery-slide {
    contain-intrinsic-size: 280px 373px;
  }

  .gallery-nav.swiper-pagination-container {
    margin-top: 28px;
  }
}

/* ===========================================================================
   FAQ — two-column desktop (mascot + accordion), stacked mobile
   =========================================================================== */
.faq-section {
  position: relative;
  background: #fbfcff;
  padding: 96px 40px 100px;
  box-sizing: border-box;
}

/* Gradient band behind the mascot column */
.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 38%;
  background: linear-gradient(90deg, #ffffff 0%, #edeeef 100%);
  pointer-events: none;
}

.faq-inner {
  position: relative;
  width: 95%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.2fr);
  gap: 48px 56px;
  align-items: start;
}

.faq-visual {
  position: sticky;
  top: 120px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.faq-mascot {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.faq-content {
  min-width: 0;
}

.faq-title {
  margin: 0 0 28px;
  font-family: Inter, sans-serif;
  font-size: 47px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #0a0b1d;
  line-height: 1.2;
}

.faq-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 14px;
  border-radius: 3px;
  background: var(--nh-accent);
}

.faq-title-mobile {
  display: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Override legacy .faq-card styles from style.css */
.faq-section .faq-card {
  display: block;
  margin: 0;
  padding: 0;
  opacity: 1;
  transform: none;
  background: #ffffff;
  border: 1px solid #e6e8ef;
  border-radius: 14px;
  box-shadow: none;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-section .faq-card:hover {
  transform: none;
  box-shadow: none;
  border-color: #d5d9e4;
}

.faq-section .faq-card.active {
  border-color: #0a0b1d;
  box-shadow: none;
}

.faq-section .faq-card.visible {
  opacity: 1;
  transform: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: #0a0b1d;
}

.faq-chevron {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.faq-chevron::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--nh-accent);
  border-bottom: 2.5px solid var(--nh-accent);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-section .faq-card.active .faq-chevron::before {
  top: 10px;
  transform: rotate(225deg);
}

.faq-section .faq-answer {
  display: block;
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.28s ease, visibility 0.28s;
}

.faq-section .faq-card.active .faq-answer {
  max-height: 600px;
  visibility: visible;
}

.faq-section .faq-answer>p {
  margin: 0;
  padding: 0 20px 18px;
  min-height: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: #6b7280;
  /* legacy answer styles from style.css must not apply */
  max-height: none;
  opacity: 1;
  transform: none;
}

@media (max-width: 1023px) {
  .faq-section {
    padding: 64px 16px 72px;
    background: #fbfcff;
  }

  .faq-section::before {
    display: none;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-visual {
    display: none;
  }

  .faq-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 24px;
  }

  .faq-title::after {
    margin: 12px auto 0;
    width: 56px;
    height: 4px;
  }

  .faq-title-desktop {
    display: none;
  }

  .faq-title-mobile {
    display: inline;
  }

  .faq-question {
    padding: 16px;
    font-size: 15px;
  }

  .faq-section .faq-answer>p {
    padding: 0 16px 16px;
    font-size: 14px;
  }
}

/* ===========================================================================
   Request a callback — form + map card
   =========================================================================== */
.callback-section.contact-form-container {
  position: relative;
  background: #ffffff;
  padding: 88px 40px 96px;
  box-sizing: border-box;
}

.callback-section.contact-form-container::before,
.callback-section.contact-form-container::after {
  content: none;
}

.callback-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.callback-header {
  text-align: center;
  margin-bottom: 48px;
}

.callback-title {
  margin: 0 0 12px;
  font-family: Inter, sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0a0b1d;
}

.callback-subtitle {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #6b7280;
}

.callback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

/* Form */
.callback-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

/* Legacy scroll-reveal left fields invisible when observer never fired */
.callback-section .contact-form input,
.callback-section .contact-form select,
.callback-section .contact-form textarea,
.callback-section .contact-form button,
.callback-section .ss-main {
  opacity: 1;
  transform: none;
}

.callback-section .contact-form input,
.callback-section .contact-form textarea {
  box-sizing: border-box;
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 1px solid #e9ebf1;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(82, 89, 112, 0.06);
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #0a0b1d;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.callback-section .contact-form textarea {
  height: auto;
  min-height: 84px;
  padding: 15px 18px;
  resize: vertical;
  line-height: 1.5;
}

.callback-section .contact-form input::placeholder,
.callback-section .contact-form textarea::placeholder {
  color: #9ca3af;
}

.callback-section .contact-form input:focus,
.callback-section .contact-form textarea:focus {
  outline: none;
  border-color: var(--nh-accent);
  box-shadow: 0 0 0 3px rgba(52, 207, 121, 0.15);
}

.callback-section .ss-main {
  min-height: 52px !important;
  border: 1px solid #e9ebf1 !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 10px rgba(82, 89, 112, 0.06);
  padding: 0 18px !important;
  font-size: 15px;
}

.callback-section .ss-placeholder {
  color: #9ca3af;
}

.callback-section .contact-form button.callback-submit {
  align-self: center;
  width: 226px;
  height: 50px;
  margin-top: 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

/* Map */
.callback-map {
  position: relative;
  align-self: stretch;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: #e9ecf1;
  box-shadow: 0 6px 24px rgba(82, 89, 112, 0.1);
}

.callback-map-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25);
}

.callback-map-card {
  position: absolute;
  top: 24px;
  right: 24px;
  left: auto;
  width: min(240px, calc(100% - 48px));
  padding: 18px 20px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(10, 11, 29, 0.14);
  font-family: Inter, sans-serif;
}

.callback-map-name {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #0a0b1d;
}

.callback-map-label {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 700;
  color: #0a0b1d;
}

.callback-map-value {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

.callback-map-link {
  font-size: 13px;
  font-weight: 700;
  color: #0a0b1d;
  text-decoration: none;
}

.callback-map-link:hover {
  color: var(--nh-accent-hover);
}

/* ===========================================================================
   Footer — light, 4 columns + copyright
   =========================================================================== */
footer.site-footer {
  background: #ffffff;
  color: #0a0b1d;
  border-top: 1px solid #ecedf2;
}

.footer-inner {
  width: 100%;
  padding: 0 48px;
  box-sizing: border-box;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(0, 2fr);
  gap: 40px;
  align-items: start;
  padding: 44px 0 48px;
}

.footer-brand img {
  display: block;
  width: 180px;
  height: auto;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-col-title {
  margin: 0 0 14px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0a0b1d;
}

.footer-col-title.has-rule {
  padding-bottom: 12px;
  border-bottom: 1px solid #ecedf2;
}

.footer-line {
  margin: 0 0 12px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #4b5563;
}

.footer-line strong {
  font-weight: 700;
  color: #0a0b1d;
}

.footer-muted {
  color: #9ca3af;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4b5563;
}

.footer-contact svg {
  flex-shrink: 0;
  color: #0a0b1d;
}

.footer-contact a {
  color: #4b5563;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--nh-accent-hover);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #e5e7ef;
  border-radius: 50%;
  color: #0a0b1d;
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer-social:hover {
  border-color: var(--nh-accent);
  color: var(--nh-accent-hover);
  transform: translateY(-1px);
}

.site-footer .footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 0 22px;
  border-top: 1px solid #ecedf2;
}

.footer-copy {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

@media (max-width: 1023px) {
  .callback-section.contact-form-container {
    padding: 56px 16px 64px;
  }

  .callback-header {
    margin-bottom: 28px;
  }

  .callback-title {
    font-size: 24px;
  }

  .callback-subtitle {
    font-size: 15px;
  }

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

  .callback-section .contact-form button.callback-submit {
    width: 100%;
  }

  .callback-map {
    min-height: 300px;
  }

  .callback-map-card {
    top: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    padding: 16px;
  }

  .footer-inner {
    padding: 0 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0 36px;
  }

  .footer-brand img {
    width: 150px;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
