:root {
  --black: #0f0f0f;
  --black-soft: #1a1a1a;
  --white: #ffffff;
  --text: #161616;
  --muted: #666666;
  --gold: #f4c542;
  --gold-deep: #d8a900;
  --orange: #ff5c00;
  --font-display: "Oswald", Impact, sans-serif;
  --font-body: "Space Grotesk", Arial, sans-serif;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

[hidden] {
  display: none !important;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(15, 15, 15, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  opacity: 0.78;
  transition: color 180ms ease, opacity 180ms ease;
}

.main-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  padding: 108px clamp(22px, 6vw, 92px) 54px;
  background: var(--black);
  overflow: hidden;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 660px;
  position: relative;
  z-index: 2;
}

.hero-mark {
  width: clamp(86px, 11vw, 146px);
  margin-bottom: 22px;
}

.hero h1,
.results h2,
.reviews-section h2,
.app-copy h2,
.plans-copy h2,
.plans-copy h3,
.plan-filter h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.06;
  font-weight: 700;
  max-width: 780px;
  overflow-wrap: break-word;
}

.hero h1 .line {
  display: block;
}

.hero h1 .hero-highlight {
  color: var(--gold);
}

.hero p {
  width: min(100%, calc(100vw - 40px), 640px);
  max-width: 640px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.48;
}

.hero .microcopy {
  margin: 12px 0 0;
  width: min(100%, 340px);
  max-width: 420px;
  line-height: 1.42;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.64);
}

.hero-photo {
  position: relative;
  align-self: stretch;
  min-width: 0;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72%;
  background: linear-gradient(180deg, transparent, rgba(244, 197, 66, 0.16));
  border: 1px solid rgba(244, 197, 66, 0.18);
  border-radius: 28px 28px 0 0;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  height: min(68vh, 690px);
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.06) brightness(0.82);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-yellow {
  background: linear-gradient(180deg, #ffe26a, var(--gold));
  color: #111111;
  box-shadow: 0 16px 34px rgba(244, 197, 66, 0.24);
}

.button-dark {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.button-outline {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.section-light {
  color: var(--text);
  background: var(--white);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.results {
  padding: clamp(86px, 10vw, 140px) 0;
  overflow: hidden;
}

.eyebrow,
.plans-kicker {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.results h2 {
  margin: 0 0 58px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  max-width: 760px;
}

.carousel {
  position: relative;
  min-height: 540px;
}

.carousel-stage {
  position: relative;
  width: min(820px, 100%);
  height: 540px;
  margin: 0 auto;
}

.carousel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(390px, 68vw);
  max-height: 520px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 420ms ease, transform 420ms ease, filter 420ms ease;
  filter: blur(2px);
}

.carousel-item.active {
  z-index: 3;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0);
}

.carousel-item.left {
  z-index: 2;
  opacity: 0.55;
  transform: translate(-126%, -50%) scale(0.76);
}

.carousel-item.right {
  z-index: 2;
  opacity: 0.55;
  transform: translate(26%, -50%) scale(0.76);
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.07);
  color: #111111;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-button:hover {
  background: rgba(244, 197, 66, 0.36);
  transform: translateY(-2px);
}

.carousel-prev {
  left: max(0px, calc(50% - 490px));
}

.carousel-next {
  right: max(0px, calc(50% - 490px));
}

.reviews-section {
  padding: clamp(86px, 10vw, 132px) 0;
  background: var(--black);
  color: #ffffff;
}

.reviews-section h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
}

.rating {
  margin: 32px 0 58px;
  text-align: center;
}

.rating strong {
  display: block;
  color: var(--gold);
  font-size: 52px;
  line-height: 1;
}

.rating span {
  display: block;
  margin: 10px 0;
  color: var(--gold);
  letter-spacing: 4px;
}

.rating p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

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

.review-card {
  position: relative;
  min-height: 282px;
  padding: 28px;
  overflow: hidden;
  background: var(--black-soft);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(
    120deg,
    rgba(244, 197, 66, 0.12),
    transparent 45%,
    rgba(244, 197, 66, 0.1)
  );
  transition: opacity 180ms ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(244, 197, 66, 0.1);
}

.review-card:hover::before {
  opacity: 1;
}

.review-card > * {
  position: relative;
  z-index: 1;
}

.review-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.review-card header span {
  max-width: 130px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  text-align: right;
}

.review-card div {
  margin-bottom: 16px;
  color: var(--gold);
  letter-spacing: 3px;
}

.review-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.58;
}

.app-section {
  padding: clamp(92px, 10vw, 144px) 0;
}

.app-content {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(260px, 0.74fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.app-copy {
  text-align: center;
}

.app-copy h2 {
  min-height: 138px;
  margin: 0 0 26px;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1.15;
}

.app-copy p {
  min-height: 78px;
  max-width: 620px;
  margin: 0 auto 42px;
  color: #555555;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.35;
}

.app-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
}

.phone-frame {
  justify-self: center;
  position: relative;
  width: min(320px, 78vw);
  aspect-ratio: 300 / 610;
  padding: 14px;
  overflow: hidden;
  border-radius: 48px;
  background: linear-gradient(135deg, #ff8a00, #ff4d00 45%, #111111);
  box-shadow: 0 36px 82px rgba(0, 0, 0, 0.25);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 120px;
  height: 28px;
  background: #000000;
  border-radius: 20px;
  transform: translateX(-50%);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
  transition: opacity 220ms ease;
}

.plans-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
  padding: clamp(76px, 8vw, 112px) clamp(22px, 7vw, 96px);
  background: #ffffff;
  color: #000000;
}

.plans-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.96;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 24px;
  font-family: var(--font-display);
  line-height: 0.95;
}

.price span:first-child {
  font-size: clamp(30px, 4.8vw, 52px);
  font-weight: 700;
}

.price strong {
  font-size: clamp(86px, 12vw, 138px);
}

.price span:last-child {
  font-size: clamp(42px, 6vw, 70px);
}

.highlight {
  display: inline-flex;
  align-items: center;
  margin: 14px 0 0;
  padding: 6px 10px;
  background: var(--gold);
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.2;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin: 18px 0 0;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: #f5f5f5;
  color: #161616;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.trust-badges span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.plans-copy h3 {
  max-width: 600px;
  margin: 38px 0 22px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.24;
}

.plans-copy ul {
  display: grid;
  gap: 10px;
  max-width: 600px;
  margin: 0;
  padding-left: 24px;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.34;
}

.plan-filter {
  position: sticky;
  top: 96px;
  width: 100%;
  padding: clamp(24px, 4vw, 50px);
  color: #ffffff;
  background: var(--black);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.plan-filter h2 {
  margin: 0 0 42px;
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
}

.filter-group {
  margin-bottom: 28px;
}

.filter-group p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.filter-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 132px), 1fr));
  gap: 12px;
}

.filter-options button {
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #1c1c1c;
  color: #ffffff;
  cursor: pointer;
  font: 700 15px var(--font-body);
  white-space: normal;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease,
    border-color 180ms ease;
}

.filter-options button:hover,
.filter-options button.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #111111;
  transform: translateY(-2px);
}

.plan-result {
  display: none;
  gap: 16px;
  margin-top: 34px;
}

.plan-result.has-results {
  display: grid;
}

.plan-card {
  padding: 22px;
  background: var(--black-soft);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-card h3 {
  margin: 0 0 14px;
  font-size: 19px;
}

.plan-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--gold);
  color: #111111;
  font-weight: 800;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111111;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

.whatsapp-float img {
  width: 46px;
  height: 46px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(22px, 7vw, 96px);
  background: #0a0a0a;
}

.site-footer > a img {
  width: 48px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links img {
  width: 26px;
  height: 26px;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .app-content,
  .plans-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 104px;
    text-align: center;
  }

  .hero-mark {
    margin-inline: auto;
  }

  .hero p {
    margin-inline: auto;
  }

  .hero-photo {
    min-height: 420px;
  }

  .hero-photo img {
    height: 520px;
  }

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

  .plan-filter {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
  }

  .brand span {
    font-size: 16px;
  }

  .hero {
    padding-inline: 20px;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 35px);
    line-height: 1.14;
  }

  .hero p {
    width: 330px;
    max-width: calc(100vw - 40px);
  }

  .hero-photo {
    min-height: 350px;
  }

  .hero-photo::before {
    border-radius: 18px 18px 0 0;
  }

  .hero-photo img {
    height: 420px;
  }

  .section-inner,
  .app-content {
    width: min(100% - 28px, 1180px);
  }

  .carousel {
    min-height: 430px;
  }

  .carousel-stage {
    height: 430px;
  }

  .carousel-item {
    width: min(300px, 72vw);
    max-height: 405px;
    border-radius: 16px;
  }

  .carousel-item.left {
    transform: translate(-105%, -50%) scale(0.68);
  }

  .carousel-item.right {
    transform: translate(5%, -50%) scale(0.68);
  }

  .carousel-button {
    top: auto;
    bottom: -12px;
  }

  .carousel-prev {
    left: calc(50% - 66px);
  }

  .carousel-next {
    right: calc(50% - 66px);
  }

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

  .review-card {
    min-height: auto;
  }

  .app-copy h2,
  .app-copy p {
    min-height: auto;
  }

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

  .plans-section {
    padding-inline: 18px;
  }

  .price strong {
    font-size: clamp(78px, 22vw, 108px);
  }

  .highlight {
    max-width: 100%;
  }

  .trust-badges {
    gap: 8px;
  }

  .trust-badges span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
  }

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

  .site-footer {
    flex-direction: column;
  }
}
