:root {
  --orange: #f78216;
  --ink: #1e1e1e;
  --muted: #575757;
  --muted-2: #757575;
  --line: #cccbcb;
  --border: #e6e6e6;
  --soft: #f8f8f8;
  --cream: #fef3e9;
  --white: #ffffff;
  --container: 1074px;
  --gutter: 183px;
  --radius-pill: 200px;
  --font: "Roboto", system-ui, sans-serif;
  --font-form: "Poppins", "Roboto", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
  text-transform: uppercase;
}

.accent {
  color: var(--orange);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
}

h2 {
  font-size: 28px;
  line-height: 1.2;
  color: var(--ink);
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head--left {
  text-align: left;
  margin-bottom: 32px;
}

.section-head h2 {
  max-width: 493px;
  margin-inline: auto;
}

.section-head--left h2 {
  margin-inline: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 41px;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover {
  background: #e5740d;
  box-shadow: 0 8px 20px rgba(247, 130, 22, 0.28);
}

.btn--outline {
  background: var(--white);
  border-color: #000;
  color: #252525;
  font-weight: 400;
}

.btn--arrow {
  padding-right: 6px;
}

.btn__icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}

.btn__icon img {
  width: 9.4px;
  height: 18.8px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.header.is-scrolled {
  border-bottom-color: #e6e6e6;
}

.header__inner {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  padding-block: 0;
  transition: padding 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.header__top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 14px;
  color: #757575;
  max-height: 28px;
  opacity: 1;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition:
    max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    margin 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.header.is-scrolled .header__top {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  transform: translate3d(0, -6px, 0);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .header__top {
    transform: none !important;
    transition:
      max-height 0.25s ease,
      opacity 0.25s ease,
      margin 0.25s ease;
  }
}

.header__call-label {
  margin: 0;
  color: #757575;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #757575;
}

.header__phone img {
  width: 14px;
  height: 14px;
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}

.logo img {
  width: 162px;
  height: 41px;
  object-fit: contain;
}

.header__call {
  display: none;
  gap: 10px;
}

.header__call img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 32px;
  font-size: 16px;
  white-space: nowrap;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--orange);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 526px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  /* Figma: visual y=136 under ~104px header → ~32px into hero */
  --hero-visual-top: 32px;
  padding: 0 0 120px;
  position: relative;
  min-height: calc(var(--hero-visual-top) + 582px);
  overflow: visible;
}

/* Subtle bottom grid - softened by white fade so it never reads as a hard pattern */
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: min(260px, 42%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(
      to top,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.45) 48%,
      rgba(255, 255, 255, 0.88) 82%,
      #fff 100%
    ),
    linear-gradient(
      90deg,
      #fff 0%,
      rgba(255, 255, 255, 0.4) 10%,
      transparent 22%,
      transparent 78%,
      rgba(255, 255, 255, 0.4) 90%,
      #fff 100%
    ),
    linear-gradient(rgba(30, 30, 30, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 30, 30, 0.11) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 100%,
    44px 44px,
    44px 44px;
  background-position: bottom center;
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.55) 58%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.55) 58%,
    transparent 100%
  );
}

.hero__content {
  /* Figma: eyebrow y=293, visual y=136 → 157px below visual top */
  padding-top: calc(var(--hero-visual-top) + 157px);
  position: relative;
  z-index: 2;
}

.hero__content .eyebrow {
  text-transform: uppercase;
  font-size: 12px;
}

.hero__title {
  font-size: 44px;
  line-height: 1.15;
  max-width: 522px;
  margin-bottom: 16px;
}

.hero__lead {
  margin: 0 0 32px;
  max-width: 526px;
  color: var(--muted);
  font-size: 16px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__trust {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-2);
  font-size: 16px;
}

.hero__trust-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero__visual {
  /* Figma Group 78: 720×582 */
  position: absolute;
  top: var(--hero-visual-top);
  right: 0;
  width: 720px;
  aspect-ratio: 720 / 582;
  z-index: 1;
  opacity: 0;
  transform: translate3d(48px, 18px, 0) scale(0.92) rotate(1.5deg);
  transform-origin: 65% 55%;
  filter: blur(12px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 100ms,
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1) 100ms,
    filter 1s cubic-bezier(0.16, 1, 0.3, 1) 180ms;
  will-change: transform, opacity, filter;
  pointer-events: none;
}

.hero.is-ready .hero__visual {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  filter: blur(0);
}

.hero__visual-mask {
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.18, 1) 160ms;
}

.hero__visual-mask picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero.is-ready .hero__visual-mask {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero__visual-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 48%,
    transparent 62%
  );
  mix-blend-mode: soft-light;
  opacity: 0;
  transform: translateX(-60%);
}

.hero.is-ready .hero__visual-shine {
  animation: heroShine 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

@keyframes heroShine {
  0% {
    opacity: 0;
    transform: translateX(-70%);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(70%);
  }
}

.hero__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  pointer-events: none;
  transform: scale(1.08);
  transition: transform 1.35s cubic-bezier(0.16, 1, 0.3, 1) 220ms;
  z-index: 1;
}

.hero.is-ready .hero__shape {
  transform: scale(1);
}

/* Subtle floating after entrance */
.hero.is-ready .hero__visual-mask {
  animation: heroFloat 7s ease-in-out 1.4s infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

/* Hero text entrance */
.hero__anim {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  filter: blur(6px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--hero-delay, 0ms),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) var(--hero-delay, 0ms),
    filter 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--hero-delay, 0ms);
  will-change: opacity, transform, filter;
}

.hero.is-ready .hero__anim {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* Reduced motion: keep fade/reveal, drop movement & float */
@media (prefers-reduced-motion: reduce) {
  .hero__anim {
    transform: none !important;
    filter: none !important;
    transition: opacity 0.55s ease var(--hero-delay, 0ms);
  }

  .hero__visual {
    transform: none !important;
    filter: none !important;
    transition: opacity 0.7s ease 80ms;
  }

  .hero__visual-mask {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.85s ease 120ms;
  }

  .hero.is-ready .hero__visual-mask {
    clip-path: inset(0 0 0 0);
  }

  .hero__shape {
    transform: none !important;
    filter: none !important;
    transition: opacity 0.6s ease;
  }

  .hero.is-ready .hero__visual-shine {
    animation: heroShineReduced 1s ease 0.35s both;
  }

  @keyframes heroShineReduced {
    0% { opacity: 0; }
    40% { opacity: 0.55; }
    100% { opacity: 0; }
  }

  .hero.is-ready .hero__visual-mask {
    animation: none;
  }
}

/* About */
.about {
  background: var(--soft);
  padding: 76px 0 0;
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 526px) minmax(0, 462px);
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
}

.about__copy h2 {
  margin-bottom: 16px;
  max-width: 493px;
}

.about__copy .eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.56px;
  text-transform: uppercase;
}

.about__copy p:not(.eyebrow) {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 16px;
  max-width: 526px;
}

.about__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.about__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__list li + li {
  border-top: 1px solid var(--line);
  padding-top: 21px;
}

.about__list img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}

.about__list h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.about__list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.about__marquee {
  overflow: hidden;
  padding: 16px 0 24px;
}

.about__marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 48s linear infinite;
  will-change: transform;
  opacity: 0.85;
}

.about__marquee-track img {
  height: 34px;
  width: auto;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* Thermo */
.thermo {
  display: grid;
  grid-template-columns: minmax(0, 562px) minmax(0, 432px);
  gap: 78px;
  align-items: start;
  padding: 100px 0;
}

.thermo__media {
  position: sticky;
  top: 120px;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 432 / 269;
}

.thermo__media picture {
  display: contents;
}

.thermo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: opacity 0.28s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.thermo__media img.is-switching {
  opacity: 0;
  transform: scale(1.03);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion__item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.accordion__item summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  user-select: none;
}

.accordion__item summary::-webkit-details-marker {
  display: none;
}

.accordion__chevron {
  width: 12px;
  height: 8px;
  margin-top: 4px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 8px;
  box-sizing: content-box;
  background: var(--soft);
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  will-change: transform;
}

.accordion__item.is-open .accordion__chevron,
.accordion__item[open] .accordion__chevron {
  transform: rotate(180deg);
}

.accordion__panel {
  height: 0;
  overflow: hidden;
  transition: height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height;
}

.accordion__panel-inner {
  padding-top: 12px;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1) 0.06s,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion__item.is-open .accordion__panel-inner {
  opacity: 1;
  transform: translateY(0);
}

.accordion__item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 522px;
  line-height: 1.45;
}

.accordion--faq .accordion__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 10px 16px 16px;
  margin-bottom: 12px;
}

.accordion--faq .accordion__item:last-child {
  margin-bottom: 0;
}

.savings .section-head {
  margin-bottom: 24px;
}

/* Soft pocket overlapping the photo - Figma Frame 90: px/pb 10, radius 32 */
.savings__toggle-wrap {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 5;
  background: var(--soft);
  padding: 0 10px 10px;
  border-radius: 0 0 32px 32px;
}

.savings__toggle {
  display: flex;
  width: fit-content;
  margin: 0;
  padding: 6px;
  background: var(--orange);
  border-radius: 99px;
  gap: 10px;
}

.savings__tab {
  min-width: 160px;
  padding: 6px 16px;
  border: 0;
  border-radius: 200px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
}

.savings__tab.is-active {
  background: var(--white);
  color: #050505;
}

.hotspots {
  position: relative;
  width: min(892px, 100%);
  margin: 0 auto;
  overflow: visible;
}

.hotspots__stage {
  position: relative;
  aspect-ratio: 892 / 537.903;
  border-radius: 16px;
  overflow: hidden;
}

.hotspots__stage > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hotspots__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  filter: brightness(0.9);
}

.hotspot {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transform: translate(-50%, -50%);
  padding: 0;
  z-index: 2;
}

.hotspot::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 12px;
  background: var(--white);
  transition: width 0.2s ease, height 0.2s ease, margin 0.2s ease;
}

.hotspot.is-active::after,
.hotspot:hover::after {
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
}

.hotspot-card {
  --card-x: 28px;
  --card-y: -12%;
  --origin-x: 0%;
  --origin-y: 20%;
  position: absolute;
  z-index: 3;
  width: 228px;
  padding: 10px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  overflow: hidden;
  transform: translate(var(--card-x), var(--card-y));
  transform-origin: var(--origin-x) var(--origin-y);
  opacity: 1;
}

.hotspot-card.is-left {
  --card-x: calc(-100% - 28px);
  --origin-x: 100%;
}

.hotspot-card.is-above {
  --card-y: calc(-100% - 16px);
  --origin-y: 100%;
}

.hotspot-card.is-left.is-above {
  --origin-x: 100%;
  --origin-y: 100%;
}

.hotspot-card.is-enter {
  animation: hotspotReveal 0.28s ease-in both;
}

.hotspot-card.is-closed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hotspot-card img {
  width: 208px;
  height: 206px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.hotspot-card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.hotspot-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

@keyframes hotspotReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Checklist */
.checklist {
  padding: 100px 0;
}

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

.check-item__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.check-item__icon img {
  width: auto;
  height: auto;
  max-width: 30px;
  max-height: 30px;
}

.check-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.check-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

/* Credentials */
.credentials {
  padding: 60px 0 100px;
}

.credentials__wrap {
  position: relative;
  width: min(1074px, 100%);
  margin-inline: auto;
  min-height: 560px;
  padding-top: 64px;
}

.credentials__card {
  position: relative;
  width: 100%;
  height: 520px;
  margin-top: 0;
  padding: 88px 72px 72px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1d1d1d 0%, #484848 100%);
  color: #fcfcfc;
  overflow: hidden;
  box-sizing: border-box;
}

.credentials__deco {
  position: absolute;
  left: 42%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 3px));
  width: 551px;
  max-width: 55%;
  opacity: 0.45;
  pointer-events: none;
}

.credentials__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  max-width: 478px;
}

.credentials__copy-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.credentials__copy-text .eyebrow {
  margin: 0;
  text-transform: uppercase;
}

.credentials__copy h2 {
  color: var(--white);
  margin: 0;
}

.credentials__copy p:not(.eyebrow) {
  margin: 0;
  max-width: 420px;
  font-size: 16px;
  color: #fcfcfc;
}

.credentials__text--short {
  display: none;
}

.credentials__person {
  position: absolute;
  right: 32px;
  top: 24px;
  bottom: auto;
  width: 400px;
  height: 560px;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.credentials__person img {
  width: 127.11%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  margin-left: -23.16%;
}

.credentials__person picture {
  display: contents;
}

.credentials__badge {
  position: absolute;
  left: 28px;
  bottom: 56px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.credentials__badge strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.credentials__badge span {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--muted);
}

/* Reviews */
.reviews {
  padding: 40px 0 80px;
  overflow: hidden;
}

.reviews__viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.reviews__track {
  display: flex;
  gap: 24px;
  padding: 8px 0;
  width: max-content;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 604px;
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  text-align: center;
  opacity: 0.55;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.review-card.is-active {
  opacity: 1;
  transform: scale(1);
}

.review-card img {
  width: 118px;
  height: 16px;
  margin: 0 auto 32px;
}

.review-card > p {
  margin: 0 0 32px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}

.review-card__author span {
  color: var(--muted);
  font-weight: 500;
}

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 36px;
}

.reviews__nav {
  width: 29px;
  height: 29px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.reviews__nav img {
  width: 9.4px;
  height: 18.8px;
}

.reviews__nav[data-reviews-prev] img {
  transform: scaleX(-1);
}

.reviews__dots {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews__dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 99px;
  background: #dfdfdf;
  padding: 0;
  cursor: pointer;
}

.reviews__dots button.is-active {
  width: 12px;
  height: 12px;
  background: var(--orange);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 368px) minmax(0, 520px);
  justify-content: space-between;
  gap: 51px;
  padding: 100px 0;
}

.contact__info h2 {
  margin-bottom: 22px;
}

.contact__link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 16px;
  background: var(--cream);
}

.contact__link img {
  width: 20px;
  height: 20px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 28px 32px;
  background: linear-gradient(165deg, #fffaf5 0%, var(--soft) 100%);
  border: 1px solid rgba(247, 130, 22, 0.12);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(30, 30, 30, 0.05);
}

.contact__form-intro {
  margin: 0 0 4px;
  font-family: var(--font-form);
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-form);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.contact__form input[type="text"],
.contact__form input[type="tel"],
.contact__form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-form);
  font-size: 15px;
  line-height: 1.4;
  resize: vertical;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.contact__form input:hover,
.contact__form textarea:hover {
  border-color: #b8b7b7;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 130, 22, 0.18);
  background: var(--white);
}

.contact__form textarea {
  min-height: 148px;
  padding-top: 14px;
}

.contact__form .btn,
.contact__submit {
  align-self: stretch;
  margin-top: 6px;
  min-height: 50px;
  padding-inline: 24px;
  font-size: 16px;
  justify-content: center;
}

.contact__status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-form);
  line-height: 1.4;
  color: #1f6b3a;
  background: #eef8f1;
  border: 1px solid rgba(31, 107, 58, 0.18);
}

.contact__status.is-error {
  color: #9b2c2c;
  background: #fdf0f0;
  border-color: rgba(155, 44, 44, 0.2);
}

/* FAQ */
.faq {
  background: var(--cream);
  padding: 64px 0 100px;
}

.faq__inner {
  max-width: 588px;
}

/* Footer */
.footer {
  background: var(--orange);
  border-radius: 16px 16px 0 0;
  color: #000;
  padding: 46px 0 24px;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  position: relative;
  width: 210px;
  height: 68px;
  margin-bottom: 48px;
}

.footer__mark {
  position: absolute;
  left: 0;
  top: 18px;
  width: 38px;
  height: 39px;
}

.footer__roof {
  position: absolute;
  left: 23px;
  top: 18px;
  width: 41px;
  height: 22px;
}

.footer__roof2 {
  position: absolute;
  left: 42px;
  top: 34px;
  width: 29px;
  height: 23px;
}

.footer__wordmark {
  position: absolute;
  left: 81px;
  top: 0;
}

.footer__bs {
  display: block;
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer__sub {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer__social {
  display: flex;
  gap: 3px;
}

.footer__social img {
  width: 52px;
  height: 52px;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(max-content, 1.4fr);
  gap: 40px 32px;
  padding-top: 18px;
  flex: 1;
}

.footer__cols h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

.footer__cols a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer__cols > :last-child a {
  white-space: nowrap;
}

.footer__cols img {
  width: 24px;
  height: 24px;
}

.footer__copy {
  margin: 0;
  text-align: center;
  font-size: 14px;
  opacity: 0.9;
}

.footer__copy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__copy a:hover {
  opacity: 1;
}

/* Mobile / tablet - best practices for touch & narrow viewports */
@media (max-width: 1180px) {
  :root {
    --gutter: 48px;
  }

  /* -- Touch targets (WCAG / Apple HIG ≥ 44px) -- */
  .btn {
    min-height: 44px;
  }

  .hotspot {
    width: 34px;
    height: 34px;
  }

  .hotspot::after {
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
  }

  .hotspot.is-active::after,
  .hotspot:hover::after {
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
  }

  .reviews__nav {
    width: 44px;
    height: 44px;
  }

  .accordion__item summary {
    min-height: 44px;
    align-items: center;
  }

  /* -- Header -- */
  .header__top {
    display: none;
  }

  .nav {
    display: none;
  }

  .logo img {
    width: 120px;
    height: 30px;
  }

  .header__bar {
    padding-block: 12px;
  }

  .header__cta {
    display: none;
  }

  .header__call {
    display: inline-flex;
  }

  /* -- Hero -- */
  .hero,
  .about__grid,
  .thermo,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    --hero-visual-top: 0px;
    --header-h: 68px; /* bar padding 12+12 + btn 44 */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100svh - var(--header-h));
    padding: 128px 0 80px;
    box-sizing: border-box;
  }

  .hero::after {
    height: min(280px, 48%);
    background-image:
      linear-gradient(
        to top,
        rgba(254, 243, 233, 0.92) 0%,
        rgba(254, 243, 233, 0.55) 28%,
        rgba(247, 130, 22, 0.08) 55%,
        rgba(255, 255, 255, 0.4) 78%,
        transparent 100%
      ),
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.25) 12%,
        transparent 22%,
        transparent 78%,
        rgba(255, 255, 255, 0.25) 88%,
        rgba(255, 255, 255, 0.85) 100%
      ),
      linear-gradient(rgba(30, 30, 30, 0.18) 1px, transparent 1px),
      linear-gradient(90deg, rgba(30, 30, 30, 0.18) 1px, transparent 1px);
    background-size:
      100% 100%,
      100% 100%,
      36px 36px,
      36px 36px;
    -webkit-mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.7) 55%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.7) 55%,
      transparent 100%
    );
  }

  .hero__content {
    padding-top: 0;
    width: 100%;
    max-width: 526px;
    margin-inline: auto;
    text-align: left;
  }

  .hero__visual {
    display: none;
  }

  .hero__title {
    font-size: clamp(38px, 10vw, 48px);
  }

  .hero__lead {
    margin-bottom: 32px;
  }

  .hero__actions {
    flex-direction: column;
    margin-bottom: 32px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__trust {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero__trust-item {
    justify-content: center;
  }

  /* -- About -- */
  .about {
    padding: 56px 0 0;
  }

  .about__copy .btn {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  /* -- Thermo -- */
  .thermo {
    gap: 36px;
    padding: 60px 0;
  }

  .thermo__media {
    position: relative;
    top: auto;
  }

  .accordion__panel-inner .thermo__media {
    margin-top: 16px;
  }

  /* -- Savings / Hotspots -- */
  .savings {
    padding: 40px 0 60px;
  }

  .savings__toggle-wrap {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-bottom: 12px;
    background: transparent;
    border-radius: 0;
    z-index: auto;
  }

  .savings__toggle {
    width: 100%;
    border-radius: 99px;
  }

  .savings__tab {
    flex: 1;
    min-width: 0;
    min-height: 44px;
    font-size: 14px;
    padding: 8px 10px;
  }

  .hotspots {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
  }

  .hotspots__stage,
  .hotspots__bg {
    border-radius: 0;
  }

  .savings__toggle-wrap {
    padding-inline: 24px;
  }

  .hotspot-card {
    --card-x: 0;
    --card-y: 0;
    --origin-x: 50%;
    --origin-y: 0%;
    position: relative;
    left: auto !important;
    top: auto !important;
    z-index: 1;
    width: auto;
    max-width: none;
    margin: 12px 24px 0;
    padding: 12px;
    display: grid;
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 6px;
    align-items: start;
    border-radius: 16px;
  }

  .hotspot-card.is-closed {
    opacity: 1;
    visibility: visible;
  }

  .hotspot-card img {
    grid-row: 1 / 3;
    width: 96px;
    height: 96px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
  }

  .hotspot-card h3 {
    font-size: 15px;
    line-height: 1.35;
  }

  .hotspot-card p {
    font-size: 15px;
  }

  /* -- Checklist -- */
  .checklist {
    padding: 60px 0;
  }

  .checklist__grid {
    grid-template-columns: 1fr;
    gap: 20px 16px;
  }

  /* -- Credentials -- */
  .credentials {
    padding: 60px 0;
  }

  .credentials__wrap {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .credentials__card {
    height: auto;
    min-height: 0;
    padding: 36px 22px 28px;
    padding-right: min(46%, 200px);
    margin-top: 0;
    border-radius: 0;
  }

  .credentials__deco {
    left: 38%;
    top: 48%;
    max-width: 55%;
    width: 260px;
    opacity: 0.22;
  }

  .credentials__copy {
    max-width: none;
    gap: 20px;
  }

  .credentials__copy h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }

  .credentials__text--full {
    display: none;
  }

  .credentials__text--short {
    display: block;
    max-width: none;
    font-size: 15px;
    line-height: 1.45;
  }

  .credentials__person {
    display: block;
    position: absolute;
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    width: min(200px, 48%);
    height: min(300px, 92%);
    z-index: 2;
  }

  .credentials__person img {
    width: 100%;
    height: 100%;
    margin-left: 0;
    object-fit: cover;
    object-position: center top;
  }

  .credentials__badge {
    left: 6px;
    bottom: 16px;
    padding: 8px 12px;
    border-radius: 10px;
    gap: 1px;
  }

  .credentials__badge strong {
    font-size: 12px;
  }

  .credentials__badge span {
    font-size: 10px;
  }

  /* -- Reviews -- */
  .reviews__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .review-card {
    flex: 0 0 min(604px, calc(100vw - 48px));
  }

  /* -- Contact -- */
  .contact {
    gap: 36px;
    padding: 64px 0;
  }

  .contact__form {
    padding: 22px 18px 26px;
  }

  /* -- FAQ -- */
  .faq {
    padding: 64px 0;
  }

  .faq__inner {
    max-width: none;
  }

  /* -- Footer -- */
  .footer__main {
    flex-direction: column;
  }

  .footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer__cols > :last-child {
    grid-column: 1 / -1;
  }
}

/* Section scroll reveal - light entrance; reduced-motion keeps fade */
.has-reveal [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  filter: blur(4px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.has-reveal [data-reveal].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal [data-reveal] {
    transform: none !important;
    filter: none !important;
    transition: opacity 0.65s ease;
  }
}

/* -- SEO / a11y helpers -- */
.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.contact__area {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.contact__legal {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.45;
}

.contact__legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__tagline {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 14px;
}

.footer__copy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Trust strip (replaces reviews) */
.trust-strip {
  padding: 88px 0;
  background: var(--soft);
}

.trust-strip__grid {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.trust-strip__grid li {
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.trust-strip__grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 600;
}

.trust-strip__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* Service area */
.area {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(247, 130, 22, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(247, 130, 22, 0.1), transparent 50%),
    linear-gradient(180deg, #fff6ed 0%, #fef3e9 48%, #fff8f1 100%);
  overflow: hidden;
}

.area::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23f78216' fill-opacity='0.12'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.7;
}

.area__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px 56px;
  align-items: center;
}

.area .section-head {
  margin-bottom: 16px;
}

.area .section-head h2 {
  max-width: 16ch;
}

.area__lead {
  margin: 0 0 28px;
  max-width: 48ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.area__lead strong {
  color: var(--ink);
  font-weight: 600;
}

.area__panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(247, 130, 22, 0.18);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(247, 130, 22, 0.07);
}

.area__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.area__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  background: #fffaf5;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 12px;
  border: 1px solid rgba(247, 130, 22, 0.12);
}

.area__list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.area__list li:first-child {
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
  grid-column: 1 / -1;
}

.area__list li:first-child::before {
  background: rgba(255, 255, 255, 0.9);
}

/* Service & legal pages */
.page-hero {
  padding: 72px 0 40px;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  max-width: 18ch;
}

.page-hero__lead {
  margin: 16px 0 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.breadcrumbs {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--muted-2);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: var(--line);
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-body {
  padding: 0 0 88px;
}

.page-body__prose {
  max-width: 68ch;
}

.page-body__prose h2 {
  margin: 36px 0 12px;
  font-size: 22px;
}

.page-body__prose p,
.page-body__prose li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.page-body__prose ul {
  padding-left: 1.2em;
}

.page-body__cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.page-services a {
  display: block;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s ease;
}

.page-services a:hover {
  border-color: var(--orange);
}

.page-services strong {
  display: block;
  margin-bottom: 6px;
}

.page-services span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.legal-page .page-body__prose h2 {
  font-size: 18px;
}

@media (max-width: 1180px) {
  .trust-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-services {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .trust-strip {
    padding: 64px 0;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .area {
    padding: 64px 0;
  }

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

  .area .section-head h2 {
    max-width: none;
  }

  .area__panel {
    padding: 22px;
  }

  .area__list {
    grid-template-columns: 1fr;
  }

  .area__list li:first-child {
    grid-column: auto;
  }

  .page-hero {
    padding: 48px 0 28px;
  }
}
