:root {
  --bg-900: #070d16;
  --bg-850: #0d1527;
  --bg-800: #121d34;
  --panel: rgba(12, 21, 40, 0.72);
  --panel-strong: rgba(9, 15, 30, 0.88);
  --line: rgba(162, 196, 255, 0.16);
  --text: #eef4ff;
  --muted: #a7b9d7;
  --blue: #4f84ff;
  --cyan: #2ad8ff;
  --pink: #e65eaf;
  --green: #30d98f;
  --green-deep: #0f9f63;
  --shadow: 0 16px 42px rgba(2, 8, 19, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 9% 10%, rgba(42, 216, 255, 0.12), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(230, 94, 175, 0.14), transparent 34%),
    linear-gradient(170deg, #050914 0%, #0d152a 46%, #151d3b 100%);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.orb-a {
  width: 390px;
  height: 390px;
  background: rgba(42, 216, 255, 0.14);
  top: -140px;
  left: -150px;
}

.orb-b {
  width: 500px;
  height: 500px;
  background: rgba(230, 94, 175, 0.12);
  bottom: -220px;
  right: -180px;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 4.7rem 0;
}

.eyebrow {
  margin: 0;
  color: #98f0cb;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-sub {
  margin: 0.65rem 0 0;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.58;
}

.section-head h2,
.hero-copy h1,
.wa-copy h2,
.final-cta-inner h2 {
  font-family: 'Sora', sans-serif;
}

.section-head h2 {
  margin: 0.65rem 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(132, 170, 243, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(95deg, rgba(10, 20, 40, 0.96), rgba(13, 28, 58, 0.92), rgba(18, 34, 68, 0.9));
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.07);
}

.brand span {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.32rem;
}

.main-nav a {
  text-decoration: none;
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  transition: background-color 200ms ease, transform 200ms ease;
}

.main-nav a:hover {
  background: rgba(78, 136, 255, 0.2);
  transform: translateY(-1px);
}

.main-nav .nav-cta {
  background: linear-gradient(120deg, #d7e8ff, #8ec4ff);
  color: #0b244f;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  background: rgba(5, 32, 18, 0.2);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.hero {
  padding-top: 2.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 1.05rem;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.whatsapp-card,
.benefit-card,
.zigzag-media,
.zigzag-copy,
.review-metrics article,
.testimonial-card,
.feature-grid article,
.final-cta-inner,
.footer-grid article {
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(14, 23, 44, 0.92), rgba(9, 15, 30, 0.9));
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-visual,
.whatsapp-card,
.benefit-card,
.zigzag-media,
.zigzag-copy,
.review-metrics article,
.testimonial-card,
.feature-grid article,
.final-cta-inner,
.footer-grid article {
  border-radius: 24px;
}

.hero-copy {
  padding: 1.5rem;
}

.hero-copy h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.65rem, 3.7vw, 3rem);
  line-height: 1.08;
  max-width: 15ch;
}

.hero-sub {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.18rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 14px;
  min-height: 47px;
  padding: 0.7rem 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 220ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

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

.btn-primary {
  color: #07261a;
  background: linear-gradient(120deg, var(--green), var(--cyan));
  box-shadow: 0 10px 22px rgba(47, 217, 145, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 24px rgba(47, 217, 145, 0.34);
}

.btn-ghost {
  border: 1px solid rgba(176, 204, 255, 0.34);
  color: #dce8ff;
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(176, 204, 255, 0.58);
}

.hero-store {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.store-badge {
  border-radius: 14px;
  border: 1px solid rgba(176, 204, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.32rem 0.5rem;
  transition: transform 220ms ease, border-color 220ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 204, 255, 0.52);
}

.store-badge img {
  height: 44px;
  width: auto;
}

.store-badge.appstore img {
  height: 39px;
}

.trust-row,
.rating-row {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

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

.rating-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-row article,
.rating-chip {
  border-radius: 14px;
  border: 1px solid rgba(161, 194, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 0.75rem;
}

.trust-row strong {
  display: block;
  font-size: 0.93rem;
}

.trust-row span,
.rating-chip p {
  display: block;
  margin-top: 0.24rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.rating-chip strong {
  display: block;
  margin-top: 0.2rem;
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

.rating-chip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}

.rating-chip-head p {
  margin-top: 0;
}

.rating-store-link {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(171, 201, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.14rem 0.24rem;
  transition: border-color 180ms ease, transform 180ms ease;
}

.rating-store-link:hover {
  border-color: rgba(124, 206, 255, 0.72);
  transform: translateY(-1px);
}

.rating-store-link img {
  height: 23px;
  width: auto;
  display: block;
}

.rating-store-link.appstore img {
  height: 20px;
}

.hero-visual {
  height: 100%;
  min-height: 560px;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 35%, rgba(56, 139, 255, 0.16), transparent 46%);
  pointer-events: none;
}

.float-card {
  position: absolute;
  overflow: hidden;
  background: #101a32;
  border: 1px solid rgba(169, 198, 255, 0.32);
  transition: transform 400ms ease;
}

[data-shot]:not(.float-card) {
  position: relative;
  overflow: hidden;
}

.shot-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  pointer-events: none;
}

.shot-media::after {
  display: none;
}

.hero-visual .shot-media {
  background-position: center center;
  background-size: cover;
}

.hero-visual .shot-media::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 11%;
  width: 58%;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
}

.float-card::after {
  content: attr(data-label);
  position: absolute;
  left: 0.58rem;
  bottom: 0.58rem;
  font-size: 0.74rem;
  color: #e9f0ff;
  background: rgba(7, 14, 27, 0.72);
  padding: 0.26rem 0.42rem;
  border-radius: 8px;
  border: 1px solid rgba(170, 199, 255, 0.18);
  z-index: 2;
}

.card-main {
  inset: 8% 18% 8% 5%;
  transform: rotate(-3deg);
  z-index: 1;
}

.card-top {
  width: 36%;
  height: 43%;
  right: 2%;
  top: 6%;
  transform: rotate(6deg);
  z-index: 3;
}

.card-bottom {
  width: 36%;
  height: 43%;
  right: 5%;
  bottom: 6%;
  transform: rotate(8.5deg);
  z-index: 2;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.benefit-card {
  padding: 1rem;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(112, 176, 255, 0.5);
  box-shadow: 0 18px 34px rgba(10, 18, 35, 0.58);
}

.benefit-tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.18rem 0.46rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #0e2a20;
  background: linear-gradient(120deg, #79f3b5, #31d4ff);
}

.benefit-card h3 {
  margin: 0.65rem 0 0;
  font-size: 1.06rem;
}

.benefit-card p {
  margin: 0.58rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.54;
}

.zigzag-list {
  display: grid;
  gap: 1.1rem;
}

.zigzag-item {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0.95rem;
  align-items: stretch;
}

.zigzag-item:nth-child(even) .zigzag-media {
  order: 2;
}

.zigzag-item:nth-child(even) .zigzag-copy {
  order: 1;
}

.zigzag-media,
.zigzag-copy {
  min-height: 320px;
}

.zigzag-media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.zigzag-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 24, 0.08), rgba(7, 11, 24, 0.72));
  z-index: 1;
}

.zigzag-media::after {
  content: attr(data-label);
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  padding: 0.35rem 0.55rem;
  font-size: 0.76rem;
  border-radius: 8px;
  background: rgba(6, 12, 23, 0.7);
  border: 1px solid rgba(180, 204, 255, 0.25);
}

.shot-media.is-updating {
  animation: shotFadeIn 320ms ease;
}

@keyframes shotFadeIn {
  from {
    opacity: 0.74;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.shot-media.is-film {
  overflow: hidden;
}

.shot-film-track {
  display: flex;
  height: 100%;
  transform: translateX(0%);
  will-change: transform;
}

.shot-film-slide {
  flex: 0 0 auto;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.shot-pause-btn {
  position: absolute;
  right: 0.9rem;
  top: 0.9rem;
  z-index: 3;
  min-width: 88px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(171, 201, 255, 0.35);
  background: rgba(7, 14, 27, 0.72);
  color: #eaf3ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.shot-pause-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(117, 209, 255, 0.72);
  background: rgba(11, 24, 44, 0.82);
}

.shot-pause-btn.is-paused {
  border-color: rgba(121, 243, 181, 0.72);
}

.zigzag-copy {
  padding: 1.15rem 1.35rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.zigzag-copy::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0.8rem;
  width: 96px;
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--green), var(--cyan), var(--pink));
  border-radius: 999px;
}

.zigzag-copy h3 {
  margin: 0.45rem 0 0;
  font-size: 1.58rem;
  line-height: 1.2;
  max-width: 22ch;
}

.zigzag-copy p {
  margin: 0.55rem 0 0;
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.68;
  max-width: 44ch;
}

.zigzag-copy ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.3rem;
}

.captures-groups {
  display: grid;
  gap: 1rem;
}

.captures-group {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(162, 196, 255, 0.2);
  background: linear-gradient(150deg, rgba(14, 23, 44, 0.82), rgba(9, 15, 30, 0.75));
}

.captures-group h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.captures-group > p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.shot-gallery {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
}

.gallery-item-title {
  position: absolute;
  top: 0.72rem;
  left: 0.72rem;
  z-index: 4;
  margin: 0;
  padding: 0.34rem 0.55rem;
  border-radius: 9px;
  border: 1px solid rgba(176, 203, 255, 0.35);
  background: rgba(6, 12, 24, 0.76);
  box-shadow: 0 10px 24px rgba(4, 9, 20, 0.55);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  font-size: 0.88rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}

.gallery-item-desc {
  margin: 0.54rem auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.gallery-shot {
  min-height: 630px;
  border-radius: 18px;
  border: 1px solid rgba(159, 191, 247, 0.25);
  background: linear-gradient(145deg, rgba(12, 21, 40, 0.95), rgba(9, 15, 29, 0.9));
  box-shadow: var(--shadow);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.gallery-shot .shot-media {
  background-size: 108% auto;
  background-position: center top;
}

/* Altura de bloques zigzag */
.zigzag-media[data-shot='zig-1'],
.zigzag-media[data-shot='zig-2'],
.zigzag-media[data-shot='zig-3'],
.zigzag-media[data-shot='zig-4'],
.zigzag-media[data-shot='zig-5'] {
  min-height: 346px;
}

.gallery-shot:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 183, 255, 0.48);
  box-shadow: 0 20px 30px rgba(4, 10, 22, 0.6);
}

.gallery-shot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 15, 28, 0.06), rgba(9, 15, 28, 0.72));
  pointer-events: none;
  z-index: 1;
}

.gallery-shot::after {
  display: none;
}

.review-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.review-metrics article {
  padding: 1rem;
}

.review-metrics p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.review-metrics strong {
  display: block;
  margin-top: 0.24rem;
  font-family: 'Sora', sans-serif;
  font-size: 1.24rem;
}

.review-metric-main {
  border-color: rgba(117, 209, 255, 0.38);
  background: linear-gradient(145deg, rgba(15, 36, 64, 0.82), rgba(10, 20, 38, 0.92));
}

.review-metric-main strong {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.review-metric-main span {
  color: #c7edff;
}

.review-metrics span {
  font-size: 0.78rem;
  color: #9cc9f6;
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 0.7rem;
  align-items: center;
}

.review-nav {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(167, 195, 250, 0.36);
  background: rgba(255, 255, 255, 0.05);
  color: #ddecff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 200ms ease;
}

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

.testimonial-card {
  padding: 1.2rem;
  position: relative;
}

.quote-mark {
  position: absolute;
  right: 1rem;
  top: 0.45rem;
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(168, 197, 252, 0.16);
}

.author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-row img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(169, 198, 255, 0.34);
  object-fit: cover;
  background: #1b2f53;
}

.review-name {
  margin: 0;
  font-weight: 800;
}

.review-source {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.review-source-row {
  margin-top: 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.review-store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 1px solid rgba(171, 201, 255, 0.34);
  background: rgba(7, 14, 27, 0.58);
  text-decoration: none;
}

.review-store-icon {
  width: 15px;
  height: 15px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.review-store-icon.is-appstore {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23eaf3ff' d='M7.5 4.4h2.1l7.3 12.6h-2.1zM4 17h16v2H4zM9.2 10.7l1.1-1.9 5.5 9.5h-2.1z'/%3E%3C/svg%3E");
}

.review-store-icon.is-playstore {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23eaf3ff' d='M6 4.8 18.6 12 6 19.2z'/%3E%3C/svg%3E");
}

.review-text {
  margin: 0.85rem 0 0;
  font-size: 0.98rem;
  line-height: 1.58;
  max-width: 68ch;
}

.review-stars {
  margin: 0.7rem 0 0;
  color: #ffd24b;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.review-dots {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.review-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
}

.review-dot.active {
  background: linear-gradient(120deg, var(--cyan), var(--pink));
}

.whatsapp-card {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 0.95rem;
  align-items: center;
  padding: 1rem;
}

.wa-copy h2 {
  margin: 0.62rem 0 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.wa-copy p {
  margin: 0.88rem 0 0;
  color: var(--muted);
  line-height: 1.63;
}

.wa-copy .btn {
  margin-top: 1rem;
}

.wa-qr {
  margin: 0;
  padding: 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(161, 194, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.wa-qr img {
  width: min(100%, 310px);
  margin: 0 auto;
  border-radius: 14px;
  background: #fff;
  padding: 0.28rem;
}

.wa-qr figcaption {
  margin-top: 0.52rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.feature-grid article {
  padding: 0.95rem 0.85rem;
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease;
}

.feature-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(132, 185, 255, 0.45);
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(47, 217, 145, 0.2), rgba(42, 216, 255, 0.22));
  border: 1px solid rgba(145, 208, 255, 0.28);
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  fill: #d8ecff;
}

.feature-grid h3 {
  margin: 0.6rem 0 0;
  font-size: 0.98rem;
}

.feature-grid p {
  margin: 0.34rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.final-cta {
  padding-top: 1.6rem;
}

.final-cta-inner {
  padding: 1.4rem;
  text-align: center;
  background: linear-gradient(130deg, rgba(11, 22, 43, 0.96), rgba(19, 31, 57, 0.92));
}

.final-cta-inner h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.final-cta-inner p {
  margin: 0.85rem auto 0;
  color: var(--muted);
  max-width: 72ch;
}

.final-cta-inner .hero-actions {
  justify-content: center;
}

.footer {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(170, 198, 255, 0.2);
  background: linear-gradient(145deg, rgba(7, 13, 27, 0.96), rgba(9, 17, 34, 0.95));
}

.footer-grid {
  padding: 1.1rem 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.7rem;
}

.footer-grid article {
  padding: 0.85rem;
}

.footer-brand {
  display: grid;
  gap: 0.5rem;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.footer-brand h3,
.footer-grid h4 {
  margin: 0;
  font-family: 'Sora', sans-serif;
}

.footer-brand p,
.footer-grid li {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.footer-grid ul {
  margin: 0.48rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.2rem;
}

.footer-actions {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.4rem;
}

.footer-actions a {
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(162, 195, 255, 0.25);
  padding: 0.42rem 0.58rem;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 220ms ease, transform 220ms ease;
}

.footer-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(162, 195, 255, 0.45);
}

.footer-bottom {
  min-height: 56px;
  display: grid;
  place-items: center;
  color: #9cb0d2;
  font-size: 0.82rem;
  border-top: 1px solid rgba(170, 198, 255, 0.14);
  text-align: center;
}

/* REVEAL ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .whatsapp-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 500px;
  }

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

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

  .shot-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: 69px;
    left: 0.7rem;
    right: 0.7rem;
    border-radius: 16px;
    border: 1px solid rgba(163, 193, 255, 0.28);
    background: rgba(8, 15, 31, 0.97);
    box-shadow: var(--shadow);
    padding: 0.55rem;
    display: grid;
    gap: 0.3rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav a {
    border-radius: 10px;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .zigzag-item {
    grid-template-columns: 1fr;
  }

  .zigzag-item:nth-child(even) .zigzag-media,
  .zigzag-item:nth-child(even) .zigzag-copy {
    order: unset;
  }

  .review-metrics {
    grid-template-columns: 1fr;
  }

  .testimonial-wrap {
    grid-template-columns: 1fr;
  }

  .review-nav {
    display: none;
  }

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

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

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

@media (max-width: 640px) {
  .section {
    padding: 3.4rem 0;
  }

  .hero-copy,
  .hero-visual,
  .benefit-card,
  .zigzag-media,
  .zigzag-copy,
  .review-metrics article,
  .testimonial-card,
  .feature-grid article,
  .whatsapp-card,
  .final-cta-inner,
  .footer-grid article {
    border-radius: 16px;
  }

  .hero-visual {
    height: 360px;
  }

  .card-main {
    inset: 10% 3% 6% 2%;
  }

  .card-top,
  .card-bottom {
    display: none;
  }

  .benefits-grid,
  .trust-row,
  .rating-row {
    grid-template-columns: 1fr;
  }

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

  .gallery-shot {
    min-height: 480px;
  }

  .gallery-item-title {
    top: 0.56rem;
    left: 0.56rem;
    font-size: 0.8rem;
    padding: 0.3rem 0.48rem;
  }

  .shot-gallery {
    grid-template-columns: 1fr;
  }

  .store-badge img {
    height: 40px;
  }

  .store-badge.appstore img {
    height: 35px;
  }
}
