:root {
  --text-light: #f3efe7;
  --text-muted: rgba(243, 239, 231, 0.74);
  --accent: #f6c453;
  --accent-strong: #ffd56b;
  --night-line: #5db4ff;
  --transition: 900ms cubic-bezier(0.4, 0, 0.2, 1);
  --glass: rgba(20, 22, 27, 0.34);
  --glass-border: rgba(255, 255, 255, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: #0a0c10;
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 26px clamp(20px, 5vw, 64px) 40px;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -3;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity var(--transition), transform 1400ms ease;
}

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

.hero__bg--day {
  background-image: url("assests/Day1.png");
  background-image: image-set(
    url("assests/Day1.webp") type("image/webp"),
    url("assests/Day1.png") type("image/png")
  );
}

.hero__bg--night {
}

.hero.is-night .hero__bg--night {
  background-image: url("assests/Night.png");
  background-image: image-set(
    url("assests/Night.webp") type("image/webp"),
    url("assests/Night.png") type("image/png")
  );
}

/* Warm window glow (right side) that fades in at night */
.glow {
  position: absolute;
  z-index: -2;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity var(--transition);
}

.glow--windows {
  right: 12%;
  bottom: 16%;
  width: 34%;
  height: 24%;
  background: radial-gradient(ellipse at center, rgba(255, 170, 80, 0.5), transparent 70%);
  filter: blur(16px);
}

.hero.is-night .glow--windows { opacity: 0.9; }

/* Readability overlay: dark on the left, clear on the right so the
   house stays visible while the text column stays readable. */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(6, 8, 12, 0.88) 0%,
      rgba(6, 8, 12, 0.62) 32%,
      rgba(6, 8, 12, 0.18) 62%,
      rgba(6, 8, 12, 0) 85%),
    linear-gradient(180deg, rgba(6, 8, 12, 0.45) 0%, transparent 30%);
  transition: background var(--transition);
}

.hero.is-night .hero__overlay {
  background:
    linear-gradient(90deg,
      rgba(4, 6, 11, 0.92) 0%,
      rgba(4, 6, 11, 0.7) 32%,
      rgba(4, 6, 11, 0.3) 62%,
      rgba(4, 6, 11, 0.05) 85%),
    linear-gradient(180deg, rgba(4, 6, 11, 0.55) 0%, transparent 30%);
}

/* ---------- Navigation ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 10;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 20px;
  color: var(--text-light);
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
}

.nav__brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav__logo {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent);
  color: #1a1407;
}

.nav__links {
  display: flex;
  gap: clamp(14px, 2vw, 32px);
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 200ms ease;
}

.nav__links a:hover { color: var(--text-light); }

.nav__mobile-cta {
  display: none;
}

.nav__cta {
  background: #f5f2ec;
  color: #14161b;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.nav__menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(10, 12, 16, 0.55);
  color: var(--text-light);
  place-items: center;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.nav__menu-toggle span {
  grid-area: 1 / 1;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.nav__menu-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav__menu-toggle span:nth-child(3) { transform: translateY(7px); }

.nav__menu-toggle.is-open span:nth-child(1) { transform: rotate(45deg); }
.nav__menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__menu-toggle.is-open span:nth-child(3) { transform: rotate(-45deg); }

/* ---------- Hero content ---------- */
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  justify-content: center;
  max-width: 620px;
  padding-top: clamp(20px, 4vh, 40px);
}

/* 1. Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.01em;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(246, 196, 83, 0.6);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(246, 196, 83, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(246, 196, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(246, 196, 83, 0); }
}

/* 2. Headline */
.hero__title {
  margin-top: 20px;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.hero__title span { display: block; }
.hero__title strong {
  color: var(--accent);
  font-weight: 700;
}

/* 3. Subtitle */
.hero__subtitle {
  margin-top: 18px;
  max-width: 620px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.55;
}

.hero__subtitle strong {
  color: var(--accent-strong);
  font-weight: 600;
}

/* 4. CTA buttons */
.cta-row {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn--primary {
  background: var(--accent);
  color: #1a1407;
  box-shadow: 0 10px 28px rgba(246, 196, 83, 0.32);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(246, 196, 83, 0.45);
  background: var(--accent-strong);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

/* 5. Subsidy cards */
.cards {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.card {
  min-width: 150px;
  padding: 18px 24px;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition: transform 250ms ease, border-color 250ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 196, 83, 0.5);
}

.card--accent {
  border-color: rgba(246, 196, 83, 0.55);
  background: linear-gradient(180deg, rgba(246, 196, 83, 0.16), var(--glass));
}

.card__amount {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-strong);
  line-height: 1.1;
}

.card__label {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- Footer block ---------- */
.hero__footer {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

/* 6. Toggle */
.toggle {
  position: relative;
  display: inline-flex;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.toggle__slider {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 6px);
  height: calc(100% - 12px);
  background: #f3efe7;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition), background var(--transition);
}

.hero.is-night .toggle__slider {
  transform: translateX(100%);
  background: #cfe6ff;
}

.toggle__btn {
  position: relative;
  z-index: 1;
  min-width: 180px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 10px;
  color: var(--text-muted);
  font-family: inherit;
  text-align: center;
  transition: color var(--transition);
}

.toggle__btn.is-selected { color: #16181d; }

.toggle__label {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.toggle__sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 2px;
}

/* 8. Trust note */
.trust {
  max-width: 620px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(243, 239, 231, 0.55);
}

/* ---------- Load animation ---------- */
.animate {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .animate { animation: none; opacity: 1; transform: none; }
  .energy__path { animation: none !important; }
  .badge__dot { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav {
    gap: 12px;
  }

  .nav__brand {
    flex: 1 1 auto;
    font-size: 18px;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background: rgba(10, 12, 16, 0.92);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--text-light);
  }

  .nav__links a:hover,
  .nav__links a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav__menu-toggle {
    display: grid;
    flex: 0 0 44px;
  }
}

@media (max-width: 640px) {
  .hero { padding: 20px 18px 32px; }

  .nav__brand {
    font-size: 16px;
  }

  .nav__logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .nav__cta {
    display: none;
  }

  .nav__mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: 4px;
    background: var(--accent);
    color: #1a1407 !important;
    font-weight: 700;
  }

  /* On narrow screens use a vertical scrim instead of the left one */
  .hero__overlay {
    background: linear-gradient(180deg,
        rgba(6, 8, 12, 0.55) 0%,
        rgba(6, 8, 12, 0.35) 40%,
        rgba(6, 8, 12, 0.85) 100%);
  }
  .hero.is-night .hero__overlay {
    background: linear-gradient(180deg,
        rgba(4, 6, 11, 0.7) 0%,
        rgba(4, 6, 11, 0.45) 40%,
        rgba(4, 6, 11, 0.9) 100%);
  }

  .hero__content { max-width: 100%; }

  .cta-row { flex-direction: column; width: 100%; max-width: 340px; }
  .btn { width: 100%; text-align: center; }

  .cards { flex-direction: column; width: 100%; max-width: 340px; }
  .card { width: 100%; }

  .toggle { width: 100%; max-width: 360px; }
  .toggle__btn { min-width: 0; flex: 1; }

  .nav__cta { padding: 10px 16px; font-size: 14px; }
}

/* ======================================================
   Solar Subsidy Calculator
   ====================================================== */
.calc {
  position: relative;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.86) 0%, rgba(7, 9, 13, 0.74) 48%, rgba(7, 9, 13, 0.92) 100%),
    radial-gradient(900px 520px at 18% 8%, rgba(246, 196, 83, 0.22), transparent 58%),
    radial-gradient(1000px 620px at 84% 28%, rgba(93, 180, 255, 0.2), transparent 62%),
    image-set(
      url("assests/calculator-bg.webp") type("image/webp"),
      url("assests/calculator-bg.png") type("image/png")
    ) center / cover no-repeat,
    #0a0c10;
  color: var(--text-light);
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 64px);
  overflow: hidden;
  isolation: isolate;
}

.calc::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.62) 0%, rgba(7, 9, 13, 0.18) 48%, rgba(7, 9, 13, 0.68) 100%),
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.1), transparent 28%);
  mix-blend-mode: screen;
  opacity: 0.76;
}

.calc__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.calc__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.calc__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(12, 15, 19, 0.5);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.calc__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.calc__title {
  margin-top: 18px;
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.calc__subtitle {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
}

/* Two-column grid: inputs + result */
.calc__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
  align-items: stretch;
}

/* Glass cards shared look */
.calc__card,
.calc__result {
  background:
    linear-gradient(180deg, rgba(18, 22, 28, 0.72), rgba(12, 15, 20, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ---- Form ---- */
.calc__card {
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
}

.field__control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0 14px;
  height: 52px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.field__control:focus-within {
  border-color: rgba(246, 196, 83, 0.65);
  box-shadow: 0 0 0 3px rgba(246, 196, 83, 0.18);
}

.field__prefix,
.field__suffix {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
}

.field__control input,
.field__control select {
  flex: 1;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-light);
  font-family: inherit;
  font-size: 15.5px;
}

.field__control select { cursor: pointer; }
.field__control select option { color: #14161b; }

.field__control input::placeholder { color: rgba(243, 239, 231, 0.4); }

/* Hide number spinners for a cleaner look */
.field__control input::-webkit-outer-spin-button,
.field__control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.field__control input[type="number"] { -moz-appearance: textfield; }

/* ---- Result card ---- */
.calc__result {
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
}

.result__empty {
  margin: auto;
  text-align: center;
  color: var(--text-muted);
  max-width: 260px;
}

.result__empty-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(246, 196, 83, 0.14);
  color: var(--accent);
}

.result__empty p { font-size: 14.5px; line-height: 1.55; }

.calc [hidden] { display: none !important; }

.result__body { display: flex; flex-direction: column; gap: 4px; }

.result__tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.result__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.result__label { color: var(--text-muted); font-size: 14.5px; }

.result__value {
  font-size: 17px;
  font-weight: 600;
  text-align: right;
}

.result__value--accent { color: var(--accent-strong); font-size: 19px; }

.result__cta {
  margin-top: 22px;
  text-align: center;
}

.calc__disclaimer {
  margin: clamp(28px, 4vw, 40px) auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(243, 239, 231, 0.5);
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .calc__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .calc__card { grid-template-columns: 1fr; }
}

/* ======================================================
   Which Solar System (scrollytelling)
   ====================================================== */
.systems {
  position: relative;
  background: linear-gradient(180deg, #0a0c10 0%, #07090d 100%);
  color: var(--text-light);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px);
}

.systems__head {
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.systems__title {
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

/* Simple 3-card grid */
.systems__cards {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
}

.syscard {
  display: flex;
  flex-direction: column;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.syscard:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 196, 83, 0.55);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

.syscard__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f1420;
  overflow: hidden;
}

.syscard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.syscard__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
}

.syscard__index {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.syscard__title {
  margin-top: 6px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.syscard__text {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.syscard__tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.syscard__tags li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(246, 196, 83, 0.1);
  border: 1px solid var(--glass-border);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 860px) {
  .systems__cards { grid-template-columns: 1fr; max-width: 460px; }
}


/* ======================================================
   Why Families Trust Us
   ====================================================== */
.trust-band {
  background: linear-gradient(180deg, #07090d 0%, #0a0c10 100%);
  color: var(--text-light);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.trust-band__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.trust-band__title {
  text-align: center;
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-card__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 180px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
}

.trust-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-card__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 240px;
}

/* Responsive */
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ======================================================
   We Handle Everything
   ====================================================== */
.handle {
  background: linear-gradient(180deg, #0a0c10 0%, #07090d 100%);
  color: var(--text-light);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.handle__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.handle__title {
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 460px;
}

/* Stepper with a connecting vertical line */
.steps {
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.step {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step__num {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(246, 196, 83, 0.12);
  border: 1.5px solid rgba(246, 196, 83, 0.55);
}

/* Connecting line between the circles */
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 34px;
  bottom: -28px;
  width: 2px;
  background: linear-gradient(180deg, rgba(246, 196, 83, 0.45), rgba(246, 196, 83, 0.08));
}

.step__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.step__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 420px;
}

/* Image */
.handle__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
}

.handle__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 860px) {
  .handle__inner { grid-template-columns: 1fr; }
  .handle__media { order: -1; aspect-ratio: 16 / 10; }
}

/* ======================================================
   Our Products
   ====================================================== */
.products {
  background: linear-gradient(180deg, #07090d 0%, #0a0c10 100%);
  color: var(--text-light);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.products__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.products__head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.products__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.products__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.products__intro {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
}

/* Grid: 4 / 2 / 1 */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 24px);
}

.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.pcard:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 196, 83, 0.6);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.pcard__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0f1420;
  overflow: hidden;
}

.pcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.pcard:hover .pcard__media img { transform: scale(1.05); }

/* Icon chip */
.pcard__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 16px 0 0 20px;
  border-radius: 11px;
  color: var(--accent);
  background: rgba(246, 196, 83, 0.12);
  border: 1px solid rgba(246, 196, 83, 0.3);
  transition: box-shadow 250ms ease, background 250ms ease;
}

.pcard__icon svg { width: 22px; height: 22px; }

.pcard:hover .pcard__icon {
  background: rgba(246, 196, 83, 0.2);
  box-shadow: 0 0 18px rgba(246, 196, 83, 0.55);
}

.pcard__title {
  font-size: 17px;
  font-weight: 600;
  margin: 14px 20px 0;
}

.pcard__text {
  margin: 8px 20px 22px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* CTA + note */
.products__cta {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
}

.products__note {
  margin: 18px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(243, 239, 231, 0.55);
}

/* Responsive */
@media (max-width: 900px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .products__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ======================================================
   Service Areas
   ====================================================== */
.service-area {
  background:
    radial-gradient(900px 500px at 84% 8%, rgba(93, 180, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #0a0c10 0%, #07090d 100%);
  color: var(--text-light);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px);
}

.service-area__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.service-area__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.service-area__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.service-area__text {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
}

.service-area__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.service-area__list li {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  font-size: 13.5px;
  font-weight: 500;
}

@media (max-width: 860px) {
  .service-area__inner { grid-template-columns: 1fr; }
}

/* ======================================================
   About
   ====================================================== */
.about {
  background: linear-gradient(180deg, #0a0c10 0%, #07090d 100%);
  color: var(--text-light);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.about__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.about__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.about__title {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.about__text {
  color: var(--text-muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  max-width: 480px;
}

.about__text strong { color: var(--text-light); font-weight: 600; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 20px);
}

.stat {
  padding: clamp(20px, 3vw, 30px);
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: center;
  transition: transform 250ms ease, border-color 250ms ease;
}

.stat:hover { transform: translateY(-4px); border-color: rgba(246, 196, 83, 0.5); }

.stat__num {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--accent-strong);
  line-height: 1.1;
}

.stat__label {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ======================================================
   Schedule a Consultation
   ====================================================== */
.consult {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(246, 196, 83, 0.08), transparent 60%),
    #0a0c10;
  color: var(--text-light);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.consult__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.consult__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.consult__title {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.consult__text {
  color: var(--text-muted);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 30px;
}

.consult__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.consult__details li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.consult__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(246, 196, 83, 0.12);
  border: 1px solid rgba(246, 196, 83, 0.3);
}

.consult__icon svg { width: 22px; height: 22px; }

.consult__label {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
}

.consult__value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
}

a.consult__value:hover { color: var(--accent-strong); }

/* Form */
.consult__form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 32px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cfield { display: flex; flex-direction: column; gap: 8px; }

.cfield label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
}

.cfield input,
.cfield textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  resize: vertical;
}

.cfield input::placeholder,
.cfield textarea::placeholder { color: rgba(243, 239, 231, 0.4); }

.cfield input:focus,
.cfield textarea:focus {
  border-color: rgba(246, 196, 83, 0.65);
  box-shadow: 0 0 0 3px rgba(246, 196, 83, 0.18);
}

.consult__submit { margin-top: 6px; text-align: center; cursor: pointer; border: none; }

.consult__formnote {
  font-size: 14px;
  color: var(--accent-strong);
  text-align: center;
}

/* Responsive */
@media (max-width: 860px) {
  .about__inner,
  .consult__inner { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .about__stats { grid-template-columns: 1fr; }
}

/* ======================================================
   Reviews
   ====================================================== */
.reviews {
  background: linear-gradient(180deg, #07090d 0%, #0a0c10 100%);
  color: var(--text-light);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.reviews__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.reviews__head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 14px;
}

.reviews__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.reviews__subtitle {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.6vw, 18px);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 26px);
}

.review {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: transform 250ms ease, border-color 250ms ease;
}

.review:hover { transform: translateY(-5px); border-color: rgba(246, 196, 83, 0.5); }

.review__stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review__text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.review__avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(246, 196, 83, 0.15);
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

.review__name { font-weight: 600; font-size: 15px; }

/* Responsive */
@media (max-width: 860px) {
  .reviews__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ======================================================
   Location / Map
   ====================================================== */
.map {
  background: linear-gradient(180deg, #0a0c10 0%, #07090d 100%);
  color: var(--text-light);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px) clamp(64px, 9vw, 110px);
}

.map__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.map__head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.map__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.map__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.map__text {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.6vw, 18px);
}

.map__cta { display: inline-block; margin-top: 22px; }

.map__frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  aspect-ratio: 16 / 7;
}

.map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Tone the map slightly to fit the dark theme */
  filter: grayscale(0.2) contrast(1.05);
}

@media (max-width: 640px) {
  .map__frame { aspect-ratio: 4 / 5; }
}

/* ======================================================
   FAQ
   ====================================================== */
.faq {
  background:
    radial-gradient(760px 420px at 12% 10%, rgba(246, 196, 83, 0.1), transparent 62%),
    linear-gradient(180deg, #07090d 0%, #0a0c10 100%);
  color: var(--text-light);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px);
}

.faq__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.faq__head {
  max-width: 760px;
  margin: 0 auto clamp(32px, 5vw, 52px);
  text-align: center;
}

.faq__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.faq__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.faq__subtitle {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.2vw, 24px);
}

.faq__item {
  padding: clamp(20px, 3vw, 28px);
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.faq__item h3 {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 600;
  line-height: 1.35;
}

.faq__item p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .faq__grid { grid-template-columns: 1fr; }
}

/* ======================================================
   Floating contact buttons
   ====================================================== */
.fab {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab__btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.fab__btn svg { width: 26px; height: 26px; }

.fab__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.fab__btn--wa   { background: #25d366; }
.fab__btn--call { background: var(--accent); color: #1a1407; }
.fab__btn--mail { background: #3a3f4a; }

/* Gentle attention pulse on the WhatsApp button */
.fab__btn--wa {
  animation: fabPulse 2.4s ease-out infinite;
}

@keyframes fabPulse {
  0%   { box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 560px) {
  .fab__btn { width: 46px; height: 46px; }
  .fab__btn svg { width: 22px; height: 22px; }
}

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