/* ==========================================================================
   GREENLYTES — HOME PAGE
   ==========================================================================

   Scope
   -----
   Homepage-specific layout, presentation, responsive behavior and interactions.

   Stylesheet ownership
   --------------------
   base.css       Global design tokens, resets and foundations.
   components.css Shared site-wide components.
   home.css       Homepage-only rules contained in this file.

   Maintenance conventions
   -----------------------
   - Keep homepage selectors scoped to `.home-*` / `.hero-*`.
   - Keep section-specific responsive rules beside their section.
   - Use cross-section breakpoints only when several homepage sections adapt
     together.
   - Preserve the Solar Lighting Atlas native 1600 × 1067 artwork ratio.
   - Treat breakpoint-specific values as deliberate responsive design states,
     not as cascade overrides to be accumulated later.
   ========================================================================== */

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  overflow: hidden;
  padding: 28px 0 72px;
  background:
    radial-gradient(
      circle at 75% 14%,
      rgba(218, 233, 241, 0.85),
      transparent 30%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(248, 240, 212, 0.8),
      transparent 30%
    ),
    var(--color-page);
}

.hero-inner {
  width: min(
    calc(100% - (var(--page-gutter) * 2)),
    var(--container-width)
  );
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 46px;
}

.hero-copy {
  padding-block: 50px;
}

.hero h1 {
  margin: 18px 0 24px;
  font-size: clamp(3.3rem, 6vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.066em;
}

.hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 1.02rem;
  line-height: 1.74;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 19px;
  margin: 36px 0 0;
  padding: 0;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 720;
  list-style: none;
}

.hero-features li::before {
  content: "•";
  margin-right: 8px;
  color: var(--color-green);
}

.hero-visual {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 38px;
  color: var(--color-white);
  background: #152018;
  box-shadow: var(--shadow-large);
  text-decoration: none;
  isolation: isolate;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.hero-visual:hover img {
  transform: scale(1.025);
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(7, 13, 8, 0.58),
      rgba(7, 13, 8, 0.04) 55%
    );
  pointer-events: none;
}

/* ==========================================================================
   SOLAR LIGHTING ATLAS
   Premium illustration-led category discovery.
   Artwork: /assets/images/greenlytes-atlas.webp (1600 × 1067)
   ========================================================================== */

.home-lighting-atlas {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 104px) 0 clamp(62px, 7vw, 96px);
  background:
    radial-gradient(
      circle at 74% 42%,
      rgba(166, 200, 150, 0.09),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8faf7 100%
    );
}

.home-lighting-atlas__inner {
  width: min(
    calc(100% - (var(--page-gutter) * 2)),
    1480px
  );
  margin-inline: auto;
  display: grid;
  grid-template-columns:
    minmax(270px, 0.54fr)
    minmax(0, 1.46fr);
  align-items: center;
  gap: clamp(34px, 4vw, 72px);
}

.home-lighting-atlas,
.home-lighting-atlas__inner,
.home-atlas-v4 {
  max-width: 100%;
}

.home-lighting-atlas {
  overflow-x: clip;
}

.home-atlas-v4 {
  overflow-x: clip;
}

/* ==========================================================================
   Editorial introduction
   ========================================================================== */

.home-lighting-atlas__intro {
  position: relative;
  z-index: 3;
  max-width: 430px;
}

.home-lighting-atlas__eyebrow {
  display: block;
  margin-bottom: 24px;
  color: var(--color-green-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-lighting-atlas__intro h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 4.8vw, 5.1rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.home-lighting-atlas__intro h2 em {
  display: block;
  color: var(--color-green-dark);
  font-weight: 400;
}

.home-lighting-atlas__intro > p {
  max-width: 390px;
  margin: 28px 0 0;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.home-lighting-atlas__all {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 27px;
  color: var(--color-green-dark);
  font-size: 0.78rem;
  font-weight: 820;
  line-height: 1.3;
  text-decoration: none;
}

.home-lighting-atlas__all span {
  display: inline-block;
  transition: transform 220ms ease;
}

.home-lighting-atlas__all:hover span {
  transform: translateX(5px);
}

/* ==========================================================================
   Atlas artwork stage
   No square aspect ratio: the image keeps its native 1600 / 1067 ratio.
   ========================================================================== */

.home-atlas-v4 {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: visible;
  isolation: isolate;
}

.home-atlas-v4::before {
  position: absolute;
  z-index: -1;
  inset: 7% 5% 4%;
  border-radius: 42px;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(192, 216, 181, 0.12),
      rgba(255, 255, 255, 0) 66%
    );
  content: "";
  pointer-events: none;
  filter: blur(4px);
}

.home-atlas-v4__art {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;

  aspect-ratio: 1600 / 1067;

  object-fit: contain;
  object-position: center;

  user-select: none;
  pointer-events: none;
}

/* ==========================================================================
   Atlas interactive light overlays

   Layer contract:
   1. Artwork: normal document layer
   2. Light effects: z-index 2
   3. Interactive hotspot cards: z-index 4

   Each `.home-atlas-v4__light--*` span is purely decorative and is revealed
   only when its matching hotspot is hovered.
   ========================================================================== */

.home-atlas-v4__light {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 300ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms ease;
}

/* --------------------------------------------------------------------------
   01 — Spot Lights
   Warm glow over the spotlight / tree illumination area.
   -------------------------------------------------------------------------- */

.home-atlas-v4__light--spot {
  top: 21%;
  left: 18.5%;

  width: 15%;
  height: 9%;

  border-radius: 50% 55% 55% 50%;

  background:
    linear-gradient(
      105deg,
      rgba(255, 231, 145, 0.52) 0%,
      rgba(255, 225, 125, 0.30) 38%,
      rgba(255, 219, 105, 0.10) 72%,
      rgba(255, 219, 105, 0) 100%
    );

  filter: blur(7px);

  transform:
    rotate(-8deg)
    scaleX(0.82)
    scaleY(0.78);

  transform-origin: left center;
}

/* --------------------------------------------------------------------------
   02 — Flood Lights
   Wide, downward wash from the wall-mounted flood light.
   -------------------------------------------------------------------------- */

.home-atlas-v4__light--flood {
  top: 10%;
  right: 25%;

  width: 12%;
  height: 18%;

  border-radius: 38% 38% 58% 58%;

  background:
    linear-gradient(
      180deg,
      rgba(255, 234, 156, 0.48) 0%,
      rgba(255, 225, 128, 0.30) 34%,
      rgba(255, 220, 112, 0.12) 68%,
      rgba(255, 220, 112, 0) 100%
    );

  filter: blur(6px);

  transform:
    rotate(4deg)
    scaleX(0.82)
    scaleY(0.78);

  transform-origin: top center;
}

/* --------------------------------------------------------------------------
   03 — Security Lights
   Dual downward beams with a soft ground activation zone.
   -------------------------------------------------------------------------- */

.home-atlas-v4__light--security {
  top: 43%;
  right: 11.5%;

  width: 11%;
  height: 13%;

  border-radius: 42% 46% 60% 58%;

  background:
    radial-gradient(
      ellipse at 50% 88%,
      rgba(255, 224, 118, 0.18) 0%,
      rgba(255, 224, 118, 0.08) 38%,
      rgba(255, 224, 118, 0) 70%
    ),
    linear-gradient(
      155deg,
      rgba(255, 232, 150, 0.46) 0%,
      rgba(255, 224, 120, 0.25) 38%,
      rgba(255, 218, 105, 0.08) 68%,
      rgba(255, 218, 105, 0) 100%
    );

  filter: blur(5px);

  transform:
    scaleX(0.84)
    scaleY(0.80);

  transform-origin: top center;
}

/* --------------------------------------------------------------------------
   04 — Post Lights
   Local warm glow centered on the lantern.
   -------------------------------------------------------------------------- */

.home-atlas-v4__light--post {
  right: 25.3%;
  bottom: 16.5%;

  width: 5.5%;
  aspect-ratio: 1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 50% 46%,
      rgba(255, 236, 166, 0.58) 0%,
      rgba(255, 224, 126, 0.32) 26%,
      rgba(255, 216, 103, 0.12) 50%,
      rgba(255, 216, 103, 0) 72%
    );

  filter: blur(5px);

  transform: scale(0.74);
}

/* --------------------------------------------------------------------------
   05 — Parking Lot Lights
   Broad directional wash from the parking-area fixture.
   -------------------------------------------------------------------------- */

.home-atlas-v4__light--parking {
  left: 21%;
  bottom: 9%;

  width: 14%;
  height: 12.5%;

  border-radius: 42% 58% 62% 46%;

  background:
    linear-gradient(
      112deg,
      rgba(255, 234, 156, 0.44) 0%,
      rgba(255, 226, 130, 0.25) 34%,
      rgba(255, 220, 110, 0.09) 66%,
      rgba(255, 220, 110, 0) 100%
    );

  filter: blur(6px);

  transform:
    rotate(8deg)
    scaleX(0.82)
    scaleY(0.78);

  transform-origin: left center;
}

/* --------------------------------------------------------------------------
   06 — Flagpole Lights
   Narrow upward illumination from the ground fixture toward the flag.
   -------------------------------------------------------------------------- */

.home-atlas-v4__light--flagpole {
  left: 9.5%;
  top: 38%;

  width: 10%;
  height: 18%;

  border-radius: 48% 52% 38% 42%;

  background:
    linear-gradient(
      78deg,
      rgba(255, 235, 162, 0.48) 0%,
      rgba(255, 227, 134, 0.28) 34%,
      rgba(255, 220, 112, 0.10) 68%,
      rgba(255, 220, 112, 0) 100%
    );

  filter: blur(6px);

  transform:
    rotate(-12deg)
    scaleX(0.82)
    scaleY(0.78);

  transform-origin: bottom center;
}

/* ==========================================================================
   Hotspots
   Real HTML links positioned over the decorative illustration.
   ========================================================================== */

.home-atlas-v4__hotspot {
  position: absolute;
  z-index: 4;
  display: flex;
  width: clamp(132px, 15%, 182px);
  min-height: 96px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 9px 28px rgba(31, 61, 37, 0);
  text-decoration: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 260ms ease;
}

.home-atlas-v4__hotspot::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 180%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(247, 219, 121, 0.22) 0%,
      rgba(247, 219, 121, 0.10) 31%,
      rgba(247, 219, 121, 0) 70%
    );
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72);
  transition:
    opacity 280ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-atlas-v4__number {
  display: block;
  margin-bottom: 4px;
  color: #6c995e;
  font-size: 0.68rem;
  font-weight: 880;
  letter-spacing: 0.13em;
  line-height: 1;
}

.home-atlas-v4__name {
  display: block;
  color: #17321d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.94rem, 1.14vw, 1.14rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.home-atlas-v4__meta {
  display: block;
  margin-top: 6px;
  color: #7b897e;
  font-size: clamp(0.58rem, 0.63vw, 0.68rem);
  line-height: 1.35;
}

.home-atlas-v4__arrow {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  margin-top: 9px;
  border: 1px solid rgba(70, 124, 65, 0.32);
  border-radius: 50%;
  color: var(--color-green-dark);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  line-height: 1;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease;
}

/* ==========================================================================
   Hotspot placement
   Percentages are tied to the final 1600 × 1067 artwork.
   ========================================================================== */

.home-atlas-v4__hotspot--spot {
  top: 4%;
  left: 0%;
}

.home-atlas-v4__hotspot--flood {
  top: 4%;
  right: 0;
}

.home-atlas-v4__hotspot--flagpole {
  top: 39%;
  left: 0%;
}

.home-atlas-v4__hotspot--security {
  top: 39%;
  right: 0;
}

.home-atlas-v4__hotspot--parking {
  left: 0%;
  bottom: 1.5%;
  align-items: flex-start;
  text-align: left;
  transform: none;
}

.home-atlas-v4__hotspot--post {
  right: 0;
  bottom: 1.5%;
}

/* ==========================================================================
   Hover / focus interactions
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {

  .home-atlas-v4:has(
    .home-atlas-v4__hotspot--spot:hover
  )
  .home-atlas-v4__light--spot {
    opacity: 0.82;
    filter: blur(5px);
    transform:
      rotate(-8deg)
      scaleX(1)
      scaleY(1);
  }

  .home-atlas-v4:has(
    .home-atlas-v4__hotspot--flood:hover
  )
  .home-atlas-v4__light--flood {
    opacity: 0.82;
    filter: blur(6px);
    transform:
      rotate(4deg)
      scaleX(1)
      scaleY(1);
  }

  .home-atlas-v4:has(
    .home-atlas-v4__hotspot--security:hover
  )
  .home-atlas-v4__light--security {
    opacity: 0.76;
    filter: blur(5px);
    transform:
      scaleX(1)
      scaleY(1);
  }

  .home-atlas-v4:has(
    .home-atlas-v4__hotspot--post:hover
  )
  .home-atlas-v4__light--post {
    opacity: 0.78;
    filter: blur(4px);
    transform: scale(1);
  }

  .home-atlas-v4:has(
    .home-atlas-v4__hotspot--parking:hover
  )
  .home-atlas-v4__light--parking {
    opacity: 0.82;
    filter: blur(5px);
    transform:
      rotate(8deg)
      scaleX(1)
      scaleY(1);
  }

  .home-atlas-v4:has(
    .home-atlas-v4__hotspot--flagpole:hover
  )
  .home-atlas-v4__light--flagpole {
    opacity: 0.82;
    filter: blur(5px);
    transform:
      rotate(-12deg)
      scaleX(1)
      scaleY(1);
  }

  .home-atlas-v4__hotspot:hover {
    border-color: rgba(77, 126, 69, 0.16);
    background: rgba(255, 255, 255, 0.90);
    box-shadow:
      0 16px 38px rgba(27, 58, 34, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
    transform: translateY(-4px);
  }

  .home-atlas-v4__hotspot:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .home-atlas-v4__hotspot:hover .home-atlas-v4__arrow {
    color: #ffffff;
    border-color: var(--color-green-dark);
    background: var(--color-green-dark);
    box-shadow: 0 8px 18px rgba(46, 92, 51, 0.18);
    transform: translateX(4px);
  }
}

.home-atlas-v4__hotspot:focus-visible {
  outline: 3px solid rgba(104, 159, 85, 0.62);
  outline-offset: 5px;
  border-color: rgba(77, 126, 69, 0.20);
  background: rgba(255, 255, 255, 0.94);
}

.home-atlas-v4__hotspot:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.home-atlas-v4__hotspot:focus-visible .home-atlas-v4__arrow {
  color: #ffffff;
  border-color: var(--color-green-dark);
  background: var(--color-green-dark);
}

/* ==========================================================================
   Large tablet / small desktop
   ========================================================================== */

@media (max-width: 1180px) {

  .home-lighting-atlas__inner {
    grid-template-columns:
      minmax(250px, 0.48fr)
      minmax(0, 1.52fr);
    gap: 28px;
  }

  .home-lighting-atlas__intro h2 {
    font-size: clamp(2.75rem, 4.8vw, 4.2rem);
  }

  .home-atlas-v4__hotspot {
    width: 142px;
    min-height: 88px;
    padding: 8px 10px;
  }

  .home-atlas-v4__name {
    font-size: 0.93rem;
  }

  .home-atlas-v4__meta {
    font-size: 0.58rem;
  }

  .home-atlas-v4__arrow {
    width: 27px;
    height: 27px;
    margin-top: 7px;
  }
}

/* ==========================================================================
   Tablet
   The artwork gets the full width; intro moves above it.
   ========================================================================== */

@media (max-width: 960px) {

  .home-lighting-atlas {
    padding: 58px 0 66px;
  }

  .home-lighting-atlas__inner {
    width: min(
      calc(100% - (var(--page-gutter) * 2)),
      920px
    );
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-lighting-atlas__intro {
    max-width: 700px;
  }

  .home-lighting-atlas__intro > p {
    max-width: 600px;
  }

  .home-atlas-v4 {
    width: 100%;
  }

  .home-atlas-v4__hotspot {
    width: 140px;
  }
}

/* ==========================================================================
   Mobile
   Preserve the artwork as a visual overview, then expose six large,
   accessible category buttons below it instead of overlaying tiny labels.
   ========================================================================== */

@media (max-width: 700px) {

  .home-lighting-atlas {
    padding: 48px 0 54px;
  }

  .home-lighting-atlas__inner {
    gap: 31px;
  }

  .home-lighting-atlas__eyebrow {
    margin-bottom: 18px;
  }

  .home-lighting-atlas__intro h2 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .home-lighting-atlas__intro > p {
    margin-top: 22px;
    font-size: 0.92rem;
  }

  .home-lighting-atlas__all {
    margin-top: 23px;
  }

  .home-atlas-v4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .home-atlas-v4__art {
    grid-column: 1;
    width: 100%;
    margin-bottom: 14px;
  }

  .home-atlas-v4__hotspot,
  .home-atlas-v4__hotspot--parking {
    position: relative;
    inset: auto;
    grid-column: 1;
    display: grid;
    width: 100%;
    min-height: 74px;
    grid-template-columns: 42px minmax(0, 1fr) 36px;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 2px;
    padding: 13px 14px;
    border: 1px solid rgba(52, 91, 57, 0.10);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 9px 25px rgba(29, 58, 35, 0.045);
    text-align: left;
    transform: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .home-atlas-v4__hotspot::before {
    display: none;
  }

  .home-atlas-v4__number {
    grid-row: 1 / 3;
    align-self: center;
    margin: 0;
    font-size: 0.7rem;
  }

  .home-atlas-v4__name {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.03rem;
  }

  .home-atlas-v4__meta {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 0.66rem;
  }

  .home-atlas-v4__arrow {
    grid-column: 3;
    grid-row: 1 / 3;
    width: 32px;
    height: 32px;
    margin: 0;
  }
}

/* ==========================================================================
   Very small screens
   ========================================================================== */

@media (max-width: 420px) {

  .home-atlas-v4__hotspot,
  .home-atlas-v4__hotspot--parking {
    grid-template-columns: 35px minmax(0, 1fr) 32px;
    column-gap: 9px;
    padding: 12px;
  }

  .home-atlas-v4__name {
    font-size: 0.96rem;
  }

  .home-atlas-v4__meta {
    font-size: 0.62rem;
  }

  .home-atlas-v4__arrow {
    width: 30px;
    height: 30px;
  }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

  .home-lighting-atlas__all span,
  .home-atlas-v4__light,
  .home-atlas-v4__hotspot,
  .home-atlas-v4__hotspot::before,
  .home-atlas-v4__arrow {
    transition: none;
  }
}

/* ==========================================================================
   GREENLYTES CHOICE
   Compact editorial product recommendation.
   ========================================================================== */

.home-choice {
  position: relative;
  padding: 52px 0 56px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(171, 205, 154, 0.09),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #fbfcfa 0%,
      #f5f8f3 100%
    );
}

.home-choice__inner {
  width: min(
    calc(100% - (var(--page-gutter) * 2)),
    1180px
  );
  margin-inline: auto;
}

.home-choice__showcase {
  display: grid;
  grid-template-columns:
    minmax(400px, 0.82fr)
    minmax(0, 1.18fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(38, 70, 42, 0.12);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(28, 58, 34, 0.10);
}

.home-choice__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(34px, 3.8vw, 48px)
    clamp(30px, 3.6vw, 46px);
}

.home-choice__label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  color: var(--color-green-dark);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.home-choice__label-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(63, 112, 67, 0.18);
  border-radius: 50%;
}

.home-choice__label-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-choice__content h2 {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--color-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 3vw, 3.45rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.home-choice__content h2 span {
  color: var(--color-green-dark);
  font-style: italic;
}

.home-choice__divider {
  display: block;
  width: 52px;
  height: 1px;
  margin-top: 20px;
  background: var(--color-green-dark);
}

.home-choice__lead {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  line-height: 1.64;
}

.home-choice__signature {
  margin-top: 16px;
  color: var(--color-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
}

.home-choice__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 0 18px 0 21px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      rgba(20, 45, 27, 0.40),
      rgba(8, 28, 18, 0.34)
    );
  box-shadow: 0 12px 28px rgba(5, 17, 10, 0.14);
  backdrop-filter: blur(9px) saturate(1.03);
  -webkit-backdrop-filter: blur(9px) saturate(1.03);
  font-size: 0.78rem;
  font-weight: 790;
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.home-choice__button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease;
}

.home-choice__button:hover {
  background:
    linear-gradient(
      145deg,
      rgba(25, 55, 32, 0.62),
      rgba(10, 34, 21, 0.56)
    );
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 32px rgba(5, 17, 10, 0.18);
}

.home-choice__button:hover svg {
  transform: translateX(4px);
}

.home-choice__visual {
  position: relative;
  min-width: 0;
  align-self: center;
  background: transparent;
}

/* --------------------------------------------------------------------------
   Product overlay
   The card and CTA form one stack. Positioning belongs to this container so
   the two elements cannot drift apart at different viewport widths.
   -------------------------------------------------------------------------- */

.home-choice__overlay {
  position: absolute;
  z-index: 3;
  top: 11px;
  right: 26px;
  display: flex;
  width: min(340px, calc(100% - 52px));
  flex-direction: column;
  gap: 75px;
}

.home-choice__image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: #ffffff;
  background: #152018;
  text-decoration: none;
  isolation: isolate;
}

.home-choice__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 400ms ease;
}

.home-choice__image-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 60%,
      rgba(5, 12, 7, 0.18)
    );
}

.home-choice__image:hover img {
  filter:
    brightness(1.03)
    saturate(1.035);
}

.home-choice__product-card {
  width: 100%;
  padding: 22px 23px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      rgba(20, 45, 27, 0.46),
      rgba(8, 28, 18, 0.40)
    );
  box-shadow: 0 16px 38px rgba(5, 17, 10, 0.15);
  backdrop-filter: blur(9px) saturate(1.03);
  -webkit-backdrop-filter: blur(9px) saturate(1.03);
}

.home-choice__product-badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: #d8ebd2;
  background: rgba(107, 163, 91, 0.2);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-choice__product-card h3 {
  max-width: 290px;
  margin: 15px 0 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-choice__product-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.home-choice__product-features > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 0 7px;
  text-align: center;
}

.home-choice__product-features > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.home-choice__product-features span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #90c17c;
}

.home-choice__product-features svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-choice__product-features small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.59rem;
  line-height: 1.3;
}

.home-choice__qualities {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 78px;
  padding: 13px 22px;
  border-top: 1px solid rgba(38, 72, 43, 0.1);
  background:
    linear-gradient(
      180deg,
      #fbfaf6 0%,
      #f5f6f0 100%
    );
}

.home-choice-quality {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 4px 20px;
}

.home-choice-quality + .home-choice-quality {
  border-left: 1px solid rgba(42, 72, 45, 0.13);
}

.home-choice-quality__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-green-dark);
  background: #e8f1e3;
}

.home-choice-quality__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-choice-quality h4 {
  margin: 0;
  color: var(--color-ink);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-choice-quality p {
  margin: 3px 0 0;
  color: var(--color-text-muted);
  font-size: 0.61rem;
  line-height: 1.38;
}

.home-choice__button:focus-visible,
.home-choice__image:focus-visible {
  outline: 3px solid rgba(81, 137, 76, 0.72);
  outline-offset: 5px;
}

@media (max-width: 1050px) {
  .home-choice {
    padding: 48px 0 52px;
  }

  .home-choice__inner {
    width: min(
      calc(100% - (var(--page-gutter) * 2)),
      840px
    );
  }

  .home-choice__showcase {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .home-choice__content {
    min-height: 0;
    padding: 40px clamp(28px, 6vw, 52px);
  }
.home-choice__qualities {
    grid-template-columns: 1fr;
    padding: 8px clamp(22px, 5vw, 40px);
  }

  .home-choice-quality {
    padding: 16px 0;
  }

  .home-choice-quality + .home-choice-quality {
    border-top: 1px solid rgba(42, 72, 45, 0.13);
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .home-choice {
    padding: 40px 0 44px;
  }

  .home-choice__showcase {
    border-radius: 20px;
  }

  .home-choice__content {
    padding: 30px 20px 31px;
  }

  .home-choice__content h2 {
    margin-top: 21px;
    font-size: clamp(2.3rem, 10.5vw, 3.1rem);
  }

  .home-choice__lead {
    margin-top: 18px;
    font-size: 0.82rem;
  }

  .home-choice__image {
    aspect-ratio: 4 / 5;
  }

  .home-choice__overlay {
    top: 14px;
    right: 14px;
    width: calc(100% - 28px);
    gap: clamp(24px, 8vw, 36px);
  }
  
  .home-choice__product-card {
    padding: 19px 17px 17px;
    border-radius: 18px;
  }

  .home-choice__product-card h3 {
    font-size: 1.5rem;
  }

  .home-choice__qualities {
    padding: 6px 18px 8px;
  }

  .home-choice-quality {
    padding: 14px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-choice__button,
  .home-choice__button svg,
  .home-choice__image img {
    transition: none;
  }

  .home-choice__button:hover,
  .home-choice__button:hover svg,
  .home-choice__image:hover img {
    transform: none;
  }
}

/* ==========================================================================
   WHY GREENLYTES
   Editorial selection process with four core evaluation criteria.
   ========================================================================== */

.home-selection {
  position: relative;
  padding: 40px 0 68px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 5% 8%,
      rgba(156, 194, 139, 0.09),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #fbfcfa 0%,
      #f6f8f4 100%
    );
}

.home-selection__inner {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(340px, 0.78fr)
    minmax(620px, 1.22fr);
  align-items: center;
  gap: clamp(62px, 7vw, 110px);
  margin-inline: auto;
}

.home-selection__inner::before {
  content: "";
  position: absolute;
  top: 7%;
  bottom: 7%;
  left: calc(38.5% + 12px);
  width: 1px;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(76, 130, 70, 0.16) 18%,
      rgba(76, 130, 70, 0.16) 82%,
      transparent
    );
  pointer-events: none;
}

/* ==========================================================================
   Editorial introduction
   ========================================================================== */

.home-selection__intro {
  max-width: 550px;
}

.home-selection__intro .eyebrow {
  margin-bottom: 24px;
}

.home-selection__intro h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(3rem, 4.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.home-selection__intro h2 span {
  display: block;
  color: var(--color-green-dark);
}

.home-selection__lead {
  max-width: 540px;
  margin: 29px 0 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.home-selection__divider {
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 37px;
  border-radius: 999px;
  background: #afd2a1;
}

.home-selection__statement {
  max-width: 470px;
  margin: 32px 0 0;
  color: var(--color-ink-soft);
  font-size: 0.94rem;
  line-height: 1.75;
}

/* ==========================================================================
   Greenlytes approval seal
   ========================================================================== */

.home-selection__seal {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-top: 43px;
}

.home-selection__seal-icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  flex: 0 0 auto;
  color: var(--color-green-dark);
}

.home-selection__seal-icon svg {
  width: 82px;
  height: 82px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-selection__seal strong,
.home-selection__seal small {
  display: block;
}

.home-selection__seal strong {
  color: var(--color-green-deep);
  font-size: 1.32rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.home-selection__seal strong span {
  display: block;
}

.home-selection__seal small {
  margin-bottom: 8px;
  color: var(--color-green-dark);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

/* ==========================================================================
   Selection cards
   ========================================================================== */

.home-selection__criteria {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.home-selection-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 32px 28px;
  border: 1px solid rgba(36, 74, 43, 0.075);
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(186, 215, 172, 0.08),
      transparent 43%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbf7 100%
    );
  box-shadow:
    0 18px 46px rgba(27, 56, 34, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.home-selection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(55, 105, 61, 0.14);
  box-shadow:
    0 24px 54px rgba(27, 56, 34, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

/* ==========================================================================
   Card icons
   ========================================================================== */

.home-selection-card__icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin-bottom: 23px;
  border-radius: 50%;
  color: var(--color-green-dark);
  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(255, 255, 255, 0.85),
      transparent 42%
    ),
    #edf5e9;
}

.home-selection-card__icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-selection-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.35rem, 1.7vw, 1.72rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.home-selection-card__line {
  display: block;
  width: 31px;
  height: 2px;
  margin: 19px auto 20px;
  border-radius: 999px;
  background: #8eb987;
}

.home-selection-card p {
  max-width: 310px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  line-height: 1.67;
}

/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 1050px) {
  .home-selection {
    padding: 34px 0 62px;
  }
  
  .home-selection__inner::before {
    display: none;
  }

  .home-selection__inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .home-selection__intro {
    max-width: 760px;
  }

  .home-selection__lead {
    max-width: 680px;
  }

  .home-selection__statement {
    max-width: 620px;
  }
  
  .home-selection-card {
    min-height: 260px;
    padding: 28px 28px 26px;
  }

  .home-selection-card__icon {
    width: 82px;
    height: 82px;
    margin-bottom: 21px;
  }

  .home-selection-card__icon svg {
    width: 41px;
    height: 41px;
  }

}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 680px) {
  .home-selection {
    padding: 24px 0 52px;
  }

  .home-selection__inner {
    gap: 47px;
  }

  .home-selection__intro h2 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  .home-selection__lead {
    margin-top: 23px;
    font-size: 0.93rem;
  }

  .home-selection__divider {
    margin-top: 29px;
  }

  .home-selection__statement {
    margin-top: 25px;
    font-size: 0.89rem;
  }

  .home-selection__seal {
    gap: 17px;
    margin-top: 34px;
  }

  .home-selection__seal-icon {
    width: 68px;
    height: 68px;
  }

  .home-selection__seal-icon svg {
    width: 66px;
    height: 66px;
  }

  .home-selection__seal strong {
    font-size: 1.15rem;
  }

  .home-selection__seal small {
    font-size: 0.67rem;
  }

  .home-selection__criteria {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-selection-card {
    min-height: 0;
    padding: 28px 22px 27px;
    border-radius: 22px;
  }

  .home-selection-card__icon {
    width: 78px;
    height: 78px;
    margin-bottom: 20px;
  }

  .home-selection-card__icon svg {
    width: 39px;
    height: 39px;
  }

  .home-selection-card h3 {
    font-size: 1.48rem;
  }

  .home-selection-card p {
    font-size: 0.84rem;
  }
}

/* ==========================================================================
   BUYING GUIDES
   ========================================================================== */

.home-guides {
  padding: 74px 0 80px;
  background:
    radial-gradient(circle at 8% 12%, rgba(147, 188, 127, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9f5 100%);
}

.home-guides__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: clamp(48px, 7vw, 108px);
  margin-bottom: 44px;
}

.home-guides__header .eyebrow { margin-bottom: 17px; }

.home-guides__header h2 {
  max-width: 760px;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.7rem, 4.4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.home-guides__header > p {
  max-width: 500px;
  margin: 0 0 5px;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.home-guides__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-guide-card {
  position: relative;
  min-height: 340px;
  padding: 31px 30px 29px;
  overflow: hidden;
  border: 1px solid rgba(35, 72, 44, 0.10);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 18px 48px rgba(27, 58, 35, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.home-guide-card:hover {
  transform: translateY(-6px);
  border-color: rgba(58, 111, 65, 0.18);
  box-shadow: 0 28px 64px rgba(27, 58, 35, 0.11);
}

.home-guide-card__number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(64, 111, 69, 0.28);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.home-guide-card__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
  border: 1px solid rgba(70, 123, 75, 0.11);
  border-radius: 16px;
  color: var(--color-green-dark);
  background: linear-gradient(145deg, #e8f3e3, #f7faf5);
}

.home-guide-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-guide-card__topic {
  display: block;
  margin-bottom: 10px;
  color: var(--color-green-dark);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-guide-card h3 {
  max-width: 330px;
  margin: 0;
  color: var(--color-ink);
  font-size: 1.55rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.home-guide-card p {
  margin: 16px 0 0;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  line-height: 1.68;
}

.home-guide-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: var(--color-green-dark);
  font-size: 0.82rem;
  font-weight: 820;
  text-decoration: none;
}

.home-guide-card a span { transition: transform 200ms ease; }
.home-guide-card a:hover span { transform: translateX(4px); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.home-faq {
  padding: 74px 0 80px;
  background: #ffffff;
}

.home-faq__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(64px, 8vw, 118px);
}

.home-faq__intro {
  position: sticky;
  top: 110px;
}

.home-faq__intro .eyebrow { margin-bottom: 20px; }

.home-faq__intro h2 {
  max-width: 520px;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.home-faq__intro > p {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.76;
}

.home-faq__note {
  display: flex;
  gap: 14px;
  max-width: 450px;
  margin-top: 34px;
  padding: 19px 20px;
  border: 1px solid rgba(65, 111, 70, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, #f2f8ef, #ffffff);
  box-shadow: 0 14px 34px rgba(37, 73, 43, 0.055);
}

.home-faq__note > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #ffffff;
  background: var(--color-green-dark);
  font-weight: 900;
}

.home-faq__note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-ink);
  font-size: 0.85rem;
}

.home-faq__note p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.home-faq__questions {
  min-width: 0;
  border-top: 1px solid rgba(37, 68, 42, 0.16);
}

.home-faq-item {
  border-bottom: 1px solid rgba(37, 68, 42, 0.16);
}

.home-faq-item summary {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 17px;
  min-height: 96px;
  padding: 19px 0;
  cursor: pointer;
  list-style: none;
  color: #24452a;
}

.home-faq-item summary::-webkit-details-marker { display: none; }

.home-faq-item__number {
  align-self: start;
  padding-top: 7px;
  color: #7fa283;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.home-faq-item__title {
  font-size: clamp(1.35rem, 2vw, 1.82rem);
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.home-faq-item__toggle {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(52, 91, 57, 0.16);
  border-radius: 50%;
  background: #f8faf6;
  transition: transform 260ms ease, color 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.home-faq-item__toggle::before,
.home-faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.home-faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq-item summary:hover { color: var(--color-green-dark); }

.home-faq-item summary:hover .home-faq-item__toggle,
.home-faq-item[open] .home-faq-item__toggle {
  color: #ffffff;
  border-color: var(--color-green-dark);
  background: var(--color-green-dark);
}

.home-faq-item[open] .home-faq-item__toggle { transform: rotate(45deg); }

.home-faq-item__answer {
  padding: 0 48px 36px 57px;
}

.home-faq-item__answer p {
  max-width: 700px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ==========================================================================
   FINAL CALL TO ACTION
   ========================================================================== */

.home-final-cta {
  padding: 42px 0 56px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8f3 100%);
}

.home-final-cta__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  align-items: center;
  gap: clamp(44px, 6vw, 82px);
  padding: 44px clamp(30px, 5vw, 62px);
  border: 1px solid rgba(30, 68, 40, 0.10);
  border-radius: 28px;
  background:
    radial-gradient(circle at 7% 50%, rgba(162, 201, 143, 0.12), transparent 33%),
    linear-gradient(145deg, #ffffff, #f8fbf6);
  box-shadow: 0 20px 54px rgba(22, 36, 25, 0.085);
}

.home-final-cta__content .eyebrow { margin-bottom: 13px; }

.home-final-cta__content h2 {
  max-width: 720px;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.35rem, 4vw, 3.85rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.home-final-cta__content p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.home-final-cta__action { min-width: 0; }
.home-final-cta__action .button { width: 100%; min-height: 62px; }

.home-final-cta__trust {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  font-weight: 720;
}

.home-final-cta__trust span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--color-green-dark);
}

/* ==========================================================================
   SECTION TRANSITIONS
   Spacing relationships between adjacent homepage sections.
   ========================================================================== */

.trust-bar {
  margin-top: 0;
}
.trust-bar + .home-lighting-atlas {
  padding-top: 82px;
}

/* ==========================================================================
   CROSS-SECTION RESPONSIVE ADAPTATIONS
   Shared breakpoints used only where multiple homepage sections adapt together.
   ========================================================================== */

@media (max-width: 1020px) {
  .hero-inner,
  .home-faq__inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    max-width: 820px;
  }
  .home-faq__intro {
    position: static;
    max-width: 760px;
  }

  .home-guides__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-guides__grid {
    grid-template-columns: 1fr;
  }
  .home-guide-card {
    min-height: 0;
  }

  .home-final-cta__card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-final-cta__action {
    width: min(100%, 520px);
  }
}

@media (max-width: 800px) {
  .hero {
    padding: 12px 0 48px;
  }

  .hero-inner {
    gap: 18px;
  }

  .hero-copy {
    padding: 30px 0 10px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 15vw, 5.5rem);
  }

  .home-faq-item summary {
    grid-template-columns: 32px minmax(0, 1fr) 38px;
    gap: 12px;
  }

  .home-faq-item__answer {
    padding-left: 44px;
  }
}

@media (max-width: 680px) {
  .trust-bar + .home-lighting-atlas {
    padding-top: 52px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-features {
    gap: 8px 14px;
  }

  .home-guides,
  .home-faq {
    padding: 56px 0 62px;
  }

  .home-guides__header {
    margin-bottom: 30px;
  }

  .home-guides__header h2,
  .home-faq__intro h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.45rem);
  }

  .home-guide-card {
    padding: 27px 23px;
    border-radius: 21px;
  }

  .home-faq__inner {
    gap: 44px;
  }

  .home-faq-item summary {
    min-height: 88px;
    padding: 18px 0;
  }

  .home-faq-item__title {
    font-size: 1.22rem;
  }

  .home-faq-item__answer {
    padding: 0 0 30px 44px;
  }

  .home-final-cta {
    padding: 34px 0 42px;
  }

  .home-final-cta__card {
    padding: 34px 22px 29px;
    border-radius: 23px;
  }

  .home-final-cta__content h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual:hover img,
  .home-lighting-atlas__all:hover > span,
  .home-choice__button:hover,
  .home-choice__button:hover svg,
  .home-choice__image:hover img,
  .home-selection-card:hover,
  .home-guide-card:hover {
    transform: none;
  }

  .home-choice__button,
  .home-choice__button svg,
  .home-choice__image img,
  .home-selection-card,
  .home-lighting-atlas__all > span,
  .home-guide-card,
  .home-guide-card a span,
  .home-faq-item__toggle {
    transition: none;
  }
}