/* =========================
   Base / Reset
========================= */
:root {
  --bg: #0b0b0b;
  --text: #ffffff;
  --muted: #9a9a9a;
  --muted-2: #cfcfcf;

  --red: #0084ff; /* sampled from the mock */
  --red-hover: #1c63bf;

  --container: 1120px;

  --header-h: 76px;
  --radius-pill: 999px;

  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

i {
  color: var(--red);
  font-size: 1.5rem;
}

button {
  font: inherit;
}

/* =========================
   Layout Helpers
========================= */
.container {
  width: min(var(--container), calc(100% - 56px));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }
}

/* =========================
   Header
========================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 50;
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__text {
  letter-spacing: 0.2px;
  font-size: 25px;
  line-height: 1;
}

.brand__text--mobile {
  font-size: 18px;
}

/* Desktop nav */
.nav--desktop {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-size: 14px;
  color: var(--text);
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.nav__link:hover {
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 900px) {
  .nav--desktop {
    display: none;
  }
}

/* =========================
   Buttons
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  user-select: none;
  transition:
    transform 120ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--pill {
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1px;
  line-height: 1;
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(198, 7, 7, 0.25);
}

.btn--primary:hover {
  background: var(--red-hover);
  box-shadow: 0 12px 26px rgba(198, 7, 7, 0.3);
}

.btn--icon .btn__icon {
  font-size: 12px;
  transform: translateY(-0.5px);
}

.btn--full {
  width: 100%;
}

/* =========================
   Hamburger (mobile)
========================= */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.hamburger__lines {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
}

.hamburger__lines::before,
.hamburger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
}

.hamburger__lines::before {
  top: -6px;
}

.hamburger__lines::after {
  top: 6px;
}

@media (max-width: 900px) {
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* =========================
   Mobile Menu (Drawer)
========================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(340px, 86vw);
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.nav--mobile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 4px 4px;
}

.nav__link--mobile {
  padding: 12px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.nav__link--mobile:hover {
  color: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.14);
}

/* =========================
   Hero
========================= */
.hero {
  min-height: 387px;
  height: 100vh;
  max-height: 720px;
  position: relative;
  overflow: hidden;
  background-image: url("/img/banner.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: calc(50% + 300px) 35%;
}

.hero::before {
  /* Left dark overlay like the mock */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.72) 34%,
    rgba(0, 0, 0, 0.2) 62%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero__inner {
  position: relative;
  height: 100%;
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
}

.hero__content {
  width: min(520px, 100%);
  padding: 22px 0;
}

.hero__eyebrow {
  display: none; /* in your mock the brand is in header; keep hidden for SEO if needed */
  margin: 0 0 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.hero__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.2vw, 44px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.hero__subtitle {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.55;
}

.hero__bullets {
  margin: 0 0 18px;
  padding: 0 0 0 18px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 260px; /* matches the mock buttons width feel */
}

@media (max-width: 640px) {
  .hero {
    background-image: url("/img/banner-movil.png") !important;
    height: 65vh;
    background-size: cover;
    background-position: 72% calc(50% - -18px);
  }

  .hero__inner {
    padding-top: calc(var(--header-h) + 8px);
    align-items: flex-start;
  }

  .hero__content {
    padding: 24px 0 34px;
  }

  .hero__actions {
    width: 100%;
  }
}

/* =========================
   Product Section
========================= */
.product {
  background: #ffffff;
  padding: 56px 0 70px;
  color: #111;
}

.product__outer {
  display: flex;
  justify-content: center;
}

.product__card {
  width: min(980px, 100%);
  background: #efefef; /* card background like the mock */
  border-radius: 6px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.product__media {
  width: 100%;
}

.product__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  object-fit: cover;
}

.product__content {
  padding-right: 8px;
}

.product__title {
  margin: 0 0 16px;
  font-size: 50px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #2b2b2b;
}

.product__lead {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.35;
  color: #2f2f2f;
}

.product__bullets {
  margin: 0 0 14px;
  padding-left: 18px;
  color: #2f2f2f;
  font-size: 14px;
  line-height: 1.5;
}

.product__bullet {
  margin: 2px 0;
}

.product__footer {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #2f2f2f;
}

/* Responsive */
@media (max-width: 900px) {
  .product__card {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 18px;
  }

  .product__title {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .product {
    padding: 38px 0 50px;
  }

  .product__title {
    font-size: 30px;
  }

  .product__lead {
    font-size: 15px;
  }
}

/* =========================
   Exploded View (Image + CTA)
========================= */
.exploded {
  background: #ffffff;
  padding: 26px 0 60px;
  color: #111;
}

.exploded__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.exploded__figure {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
}

.exploded__image {
  width: min(1060px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
}

.exploded__cta {
  margin-top: 18px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.exploded__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 420px;
  height: 46px;
  padding: 0 28px;

  border-radius: 999px;
  background: #0084ff;
  color: #ffffff;

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1px;

  box-shadow: 0 12px 26px rgba(19, 119, 255, 0.24);
  transition:
    transform 120ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.exploded__button:hover {
  background: #0f6af0;
  box-shadow: 0 14px 30px rgba(19, 119, 255, 0.28);
}

.exploded__button:active {
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 700px) {
  .exploded {
    padding: 18px 0 44px;
  }

  .exploded__button {
    min-width: 0;
    width: 100%;
    max-width: 420px;
    height: 48px;
    font-size: 15px;
  }
}

/* =========================
   How it works
========================= */
.how {
  background: #ffffff;
  padding: 54px 0 70px;
  color: #111;
}

.how__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 100px;
}

.how__title {
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #6a6a6a; /* gray title like the mock */
}

.how__kicker {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #4b4b4b;
}

/* Grid */
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Cards */
.how-card {
  border-radius: 6px;
  padding: 22px 18px 22px;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-card--blue {
  background: #ffffff;
  border: 2px solid #1b6fdc; /* blue border */
}

.how-card--gray {
  background: #efefef; /* center gray card */
  border: 2px solid transparent;
}

.how-card__icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-top: 4px;
  margin-bottom: 14px;
}

.how-card__icon img {
  width: 74px;
  height: 74px;
  display: block;
  object-fit: contain;
}

.how-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

.how-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #5a5a5a;
}

/* Responsive */
@media (max-width: 980px) {
  .how__title {
    font-size: 38px;
  }

  .how__kicker {
    font-size: 16px;
  }

  .how__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .how-card {
    min-height: auto;
    padding: 20px 16px 20px;
  }
}

@media (max-width: 640px) {
  .how {
    padding: 42px 0 54px;
  }

  .how__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 50px;
  }

  .how__title {
    font-size: 34px;
  }
}
/* =========================
   Modes Carousel
========================= */
.modes {
  background: #ffffff;
  padding: 46px 0 70px;
  color: #111;
}

.modes__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 40px;
}

.modes__title {
  margin: 0;
  font-size: 40px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #4b4b4b;
}

.modes__subtitle {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #5a5a5a;
  text-align: left;
  max-width: 360px;
}

/* Stage */
.modes__stage {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 4rem;
}

/* Left controls */
.modes__controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: center;
  padding-left: 6px;
}

.modes__nav {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.modes__nav-label {
  font-size: 10px;
  color: #8a8a8a;
}

.modes__nav-circle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: #ffff;
  background: #6a6a6a;
}

.modes__nav-circle--blue {
  background: #0084ff;
  border-color: #0084ff;
  color: #fff;
}

/* Viewport + Track */
.modes__viewport {
  overflow: hidden;
}

.modes__track {
  display: flex;
  gap: 18px;
  align-items: stretch;
  will-change: transform;
  transition: transform 300ms ease;

  /* Allows swipe feel on mobile if user scrolls horizontally */
  scroll-snap-type: x mandatory;
}

/* Card */
.mode-card {
  flex: 0 0 760px; /* width tuned so next card peeks on desktop */
  background: #efefef;
  border-radius: 6px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
}

.mode-card--dark {
  background: #2f2f2f;
  color: #f3f3f3;
}

.mode-card__media {
  background: #ffffff;
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
}

.mode-card--dark .mode-card__media {
  background: #1f1f1f;
}

.mode-card__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.mode-card__content {
  padding: 6px 10px;
}

.mode-card__mode {
  margin: 0 0 8px;
  font-size: 12px;
  color: #7a7a7a;
}

.mode-card--dark .mode-card__mode {
  color: rgba(255, 255, 255, 0.65);
}

.mode-card__title {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 800;
  color: #2b2b2b;
}

.mode-card--dark .mode-card__title {
  color: #ffffff;
}

.mode-card__lead {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.35;
  color: #3a3a3a;
}

.mode-card--dark .mode-card__lead {
  color: rgba(255, 255, 255, 0.9);
}

.mode-card__hint {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.4;
  color: #5d5d5d;
}

.mode-card--dark .mode-card__hint {
  color: rgba(255, 255, 255, 0.65);
}

.mode-card__list {
  margin: 0;
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.55;
  color: #4a4a4a;
}

.mode-card--dark .mode-card__list {
  color: rgba(255, 255, 255, 0.82);
}

/* CTA */
.modes__cta {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.modes__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 370px;
  height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  background: #0084ff;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(19, 119, 255, 0.22);
  transition:
    transform 120ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.modes__button:hover {
  background: #0f6af0;
  box-shadow: 0 14px 30px rgba(19, 119, 255, 0.28);
}

.modes__button:active {
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 980px) {
  .modes__stage {
    grid-template-columns: 1fr;
  }

  .modes__controls {
    order: 2;
    flex-direction: row;
    justify-content: center;
    padding-left: 0;
    margin-top: 10px;
  }

  .modes__nav {
    grid-template-columns: 1fr 44px;
  }

  .modes__nav-label {
    order: 1;
  }

  .modes__nav-circle {
    order: 2;
  }

  .modes__viewport {
    order: 1;
  }

  .mode-card {
    flex-basis: 88%;
  }
}

@media (max-width: 740px) {
  .modes__header {
    flex-direction: column;
    gap: 10px;
  }

  .modes__title {
    font-size: 32px;
  }

  .mode-card {
    flex: 0 0 100%;
    grid-template-columns: 1fr;
  }

  .mode-card__image {
    height: 200px;
  }
}

/* =========================
   Benefits
========================= */
.benefits {
  background: #ffffff;
  padding: 54px 0 70px;
  color: #111;
}

.benefits__header {
  text-align: center;
  margin-bottom: 90px;
}

.benefits__title {
  margin: 0 0 10px;
  font-size: 50px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #4b4b4b; /* matches mock */
}

.benefits__subtitle {
  margin: 0 auto;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.5;
  color: #6a6a6a;
}

/* Grid */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 34px;
  align-items: start;
}

/* Item */
.benefit {
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 10px;
  row-gap: 4px;
  align-items: start;
}

.benefit__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.benefit__icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: none;
}

.benefit__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #2f2f2f;
}

.benefit__text {
  grid-column: 2 / -1;
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #7a7a7a;
  max-width: 320px;
}

/* Responsive */
@media (max-width: 980px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 26px;
  }

  .benefits__title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .benefits {
    padding: 42px 0 56px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefits__title {
    font-size: 32px;
  }

  .benefit__text {
    max-width: none;
  }
}

/* =========================
   Device Image Section
========================= */
.device {
  background: #ffffff;
  padding: 54px 0 70px;
  color: #111;
}

.device__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.device__title {
  margin: 0 0 26px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #4b4b4b;
  text-align: center;
}

.device__figure {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.device__image {
  width: min(480px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 980px) {
  .device__title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .device {
    padding: 42px 0 56px;
  }

  .device__title {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .device__image {
    width: 100%;
  }
}

/* =========================
   TriggerPoint in real life
========================= */
.reallife {
  background: #ffffff;
  padding: 54px 0 70px;
  color: #111;
}

.reallife__header {
  text-align: center;
  margin-bottom: 26px;
}

.reallife__title {
  margin: 0 0 40px;
  font-size: 50px;
  line-height: 1.05;
  font-weight: 100 !important;
  letter-spacing: -0.6px;
  color: #4b4b4b;
}

.reallife__subtitle {
  margin-bottom: 3rem;
  font-size: 15px;
  color: #6a6a6a;
}

/* Cards grid */
.reallife__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.quote-card {
  border-radius: 10px;
  padding: 18px 18px 18px;
  text-align: center;
  min-height: 240px;
}

.quote-card--highlight {
  background: #efefef;
}

.quote-card__mark {
  font-size: 64px;
  line-height: 0.8;
  color: rgba(0, 0, 0, 0.18);
  margin-top: 6px;
  margin-bottom: 20px;
  font-weight: 700;
}

.quote-card__title {
  margin: 0 0 40px;
  font-size: 20px;
  font-weight: 700;
  color: #2f2f2f;
}

.quote-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #7a7a7a;
}

/* CTA */
.reallife__cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.reallife__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 420px;
  height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  background: #0084ff;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(19, 119, 255, 0.22);
  transition:
    transform 120ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.reallife__button:hover {
  background: #0f6af0;
  box-shadow: 0 14px 30px rgba(19, 119, 255, 0.28);
}

.reallife__button:active {
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 980px) {
  .reallife__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reallife__title {
    font-size: 36px;
  }

  .quote-card {
    min-height: auto;
  }

  .reallife__button {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .reallife {
    padding: 42px 0 56px;
  }

  .reallife__title {
    font-size: 32px;
  }
}

/* =========================
   FAQ (Static)
========================= */
.faq {
  background: #ffffff;
  padding: 54px 0 70px;
  color: #111;
}

.faq__header {
  text-align: center;
  margin-bottom: 22px;
}

.faq__title {
  margin: 0 0 10px;
  font-size: 50px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #4b4b4b;
}

.faq__subtitle {
  margin: 3rem auto 3rem auto;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.55;
  color: #6a6a6a;
}

.faq__email {
  color: #6a6a6a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__email:hover {
  color: #4b4b4b;
}

/* Rows container */
.faq__list {
  width: min(980px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px; /* space between rows like mock */
}

/* Row */
.faq-row {
  border-radius: 6px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 320px 1fr;
  column-gap: 26px;
  align-items: center;
}

.faq-row--alt {
  background: #efefef;
}

.faq-row__q {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: #3a3a3a;
}

.faq-row__q--blue {
  color: #0084ff; /* blue question in first row */
}

.faq-row__a {
  font-size: 15px;
  line-height: 1.55;
  color: #7a7a7a;
}

/* CTA */
.faq__cta {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.faq__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 420px;
  height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  background: #0084ff;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(19, 119, 255, 0.22);
  transition:
    transform 120ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.faq__button:hover {
  background: #0f6af0;
  box-shadow: 0 14px 30px rgba(19, 119, 255, 0.28);
}

.faq__button:active {
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 980px) {
  .faq__title {
    font-size: 38px;
  }

  .faq-row {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}

@media (max-width: 640px) {
  .faq {
    padding: 42px 0 56px;
  }

  .faq__title {
    font-size: 32px;
  }

  .faq__button {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }
}

/* =========================
   Final CTA (Dark)
========================= */
.final-cta {
  background: #0b0b0b;
  color: #ffffff;
  padding: 0;
  overflow: hidden;
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: top;
  position: relative;
  min-height: 280px;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.32) 55%,
      rgba(0, 0, 0, 0.45) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.28) 45%,
      rgba(0, 0, 0, 0.4) 100%
    );
}

.final-cta__inner {
  position: relative;
  padding: 42px 0;
}

.final-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: center;
}

/* Left product */
.final-cta__product {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.final-cta__product-img {
  width: min(360px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.6));
}

/* Right copy */
.final-cta__content {
  padding-left: 10px;
}

.final-cta__title {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.92);
}

.final-cta__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA Button (same blue pill) */
.final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  height: 40px;
  padding: 0 22px;

  border-radius: 999px;
  background: #0084ff;
  color: #ffffff;

  font-size: 18px;
  font-weight: 700;

  box-shadow: 0 12px 26px rgba(19, 119, 255, 0.22);
  transition:
    transform 120ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.final-cta__button:hover {
  background: #0f6af0;
  box-shadow: 0 14px 30px rgba(19, 119, 255, 0.28);
}

.final-cta__button:active {
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 900px) {
  .final-cta__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .final-cta__product {
    justify-content: center;
  }

  .final-cta__content {
    text-align: center;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .final-cta {
    background-position: -423px 0px;
  }
  .final-cta__inner {
    padding: 34px 0;
  }

  .final-cta__title {
    font-size: 28px;
  }

  .final-cta__button {
    width: 100%;
    max-width: 320px;
    min-width: 0;
  }
}

/* =========================
   Early access
========================= */
.early {
  background: #ffffff;
  padding: 52px 0 62px;
  color: #111;
}

.early__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.early__title {
  margin: 0 0 10px;
  font-size: 50px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #4b4b4b;
}

.early__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #4b4b4b;
}

/* Form */
.early__form {
  justify-self: end;
  width: min(520px, 100%);
}

.early__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.early__field {
  display: grid;
  grid-template-columns: 1fr 56px;
  align-items: stretch;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background: #ffffff;
}

.early__input {
  height: 48px;
  padding: 0 16px;
  border: 0;
  outline: none;
  font-size: 12px;
  color: #2f2f2f;
}

.early__input::placeholder {
  color: #b3b3b3;
}

.early__submit {
  border: 0;
  background: #0084ff;
  color: #ffffff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background-color 160ms ease,
    transform 120ms ease;
}

.early__submit:hover {
  background: #0f6af0;
}

.early__submit:active {
  transform: translateY(1px);
}

.early__arrow {
  font-size: 22px;
  line-height: 1;
  transform: translateX(1px);
}

/* Note under input (centered) */
.early__note {
  margin: 8px 0 0;
  font-size: 9px;
  color: #b8b8b8;
  text-align: center;
}

/* Early access result messages */
.early__result {
  margin-top: 10px;
  min-height: 18px; /* keeps layout stable */
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
  color: #7a7a7a;
}

.early__result.is-success {
  color: #1b7a3a;
}

.early__result.is-error {
  color: #b00020;
}

/* Responsive */
@media (max-width: 980px) {
  .early__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .early__form {
    justify-self: start;
  }

  .early__title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .early {
    padding: 42px 0 54px;
  }

  .early__title {
    font-size: 32px;
  }

  .early__field {
    grid-template-columns: 1fr 52px;
  }

  .early__input {
    height: 50px;
  }
}

/* =========================
   Footer
========================= */
.site-footer {
  background: #ededed;
  padding: 44px 0 56px;
  color: #111;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 28px;
}

/* Brand left */
.site-footer__brand {
  font-size: 50px;
  line-height: 1;
  letter-spacing: -0.6px;
  margin-top: 10px;
  color: #6a6a6a;
}

.site-footer__brand-light {
  font-weight: 500;
}

.site-footer__brand-bold {
  font-weight: 800;
  color: #4b4b4b;
}

/* Contact right */
.site-footer__contact {
  justify-self: end;
  width: min(360px, 100%);
}

.site-footer__title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #2f2f2f;
}

.site-footer__item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 14px;
}
.site-footer__item i {
  font-size: 1rem;
  color: gray;
}

.site-footer__icon {
  font-size: 14px;
  line-height: 1;
  color: #6a6a6a;
  margin-top: 2px;
}

.site-footer__lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__line {
  font-size: 12px;
  color: #6a6a6a;
}

.site-footer__email {
  font-size: 12px;
  color: #0084ff;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__email:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__contact {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 36px 0 44px;
  }

  .site-footer__brand {
    font-size: 36px;
  }
}

/* =========================
   Video Modal
========================= */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.video-modal.is-open {
  display: block;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.video-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, calc(100% - 32px));
  background: #0b0b0b;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.video-modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.video-modal__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Helper for screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Interactive figure */
.device__figure--interactive {
  position: relative;
}

/* Hotspots */

.hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;

  background: #1377ff;
  color: #fff;

  display: grid;
  place-items: center;

  box-shadow: 0 10px 22px rgba(19, 119, 255, 0.28);

  /* NEW: subtle motion */
  animation: hotspot-bounce 2.2s ease-in-out infinite;
}

/* Halo pulse ring */
.hotspot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(19, 119, 255, 0.35);
  opacity: 0;
  transform: scale(0.9);
  animation: hotspot-pulse 2.2s ease-out infinite;
}

/* When user hovers/focus: stop bouncing, keep it stable */
.hotspot:hover,
.hotspot:focus-visible {
  animation: none;
}

/* If the hotspot is active/open, stop animation */
.hotspot.is-active {
  animation: none;
}

.hotspot.is-active::after {
  animation: none;
  opacity: 0;
}

/* Keyframes */
@keyframes hotspot-bounce {
  0%,
  70%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  80% {
    transform: translate(-50%, -50%) translateY(-2px);
  }
  90% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

@keyframes hotspot-pulse {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  18% {
    opacity: 1;
  }
  45% {
    opacity: 0;
    transform: scale(1.18);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hotspot,
  .hotspot::after {
    animation: none !important;
  }
}

/* Popover (hidden by default) */
.popover {
  position: absolute;
  left: var(--px, 50%);
  top: var(--py, 50%);
  transform: translate(12px, -50%); /* appear to the right by default */

  width: min(260px, calc(100% - 24px));
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 12px 12px;

  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);

  opacity: 0;
  pointer-events: none;
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(14px, -50%);
}

.popover__title {
  font-size: 12px;
  font-weight: 800;
  color: #2f2f2f;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.popover__text {
  font-size: 12px;
  line-height: 1.45;
  color: #6a6a6a;
}

/* Optional: tiny pointer arrow */
.popover::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Mobile: bigger tap targets + popover below */
@media (max-width: 640px) {
  .hotspot {
    width: 30px;
    height: 30px;
  }
  .exploded__figure--interactive,
  .device__figure--interactive {
    position: relative;
    overflow: visible;
  }

  .popover {
    position: absolute !important;
    left: 50% !important;
    top: 140% !important; /* ajusta altura visual */
    transform: translate(-50%, -50%) !important;

    width: calc(100% - 32px);
    max-width: 320px;

    border-radius: 14px;
    padding: 14px 16px;

    opacity: 0;
    pointer-events: none;
    z-index: 20;

    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }
  
  .popover.hs-laser,
  .hs-charge,
  .hs-setup {
    top: 100% !important;
  }

  .popover.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }

  .popover::before {
    display: none;
  }
}

.exploded__figure--interactive {
  position: relative;
}

/* Botón cerrar */
.popover__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  display: grid;
  place-items: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.popover__close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}

/* Espacio para que el texto no choque con la X */
.popover__title {
  margin-right: 28px;
}
