/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/next@15.5.18_@babel+core@7.29.0_@playwright+test@1.59.1_react-dom@19.2.5_react@19.2.5__react@19.2.5/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/.pnpm/next@15.5.18_@babel+core@7.29.0_@playwright+test@1.59.1_react-dom@19.2.5_react@19.2.5__react@19.2.5/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/modules/landing/ui/landing.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* ── Landing Page CSS — scoped under .lp-page ─────────────────── */

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
.lp-page {
  --lp-bg: #0c0c0e;
  --lp-surface: #111114;
  --lp-surface-hover: #1a1a1f;
  --lp-surface-brand: #0f172a;
  --lp-border: #262626;
  --lp-divider: #1f1f23;
  --lp-primary: #3b82f6;
  --lp-primary-hover: #2563eb;
  --lp-text-primary: #ffffff;
  --lp-text-secondary: #a1a1aa;
  --lp-text-muted: #71717a;
  --lp-success: #22c55e;
  --lp-warning: #f59e0b;
  --lp-accent-purple: #8b5cf6;
  --lp-accent-pink: #ec4899;
  --lp-accent-cyan: #06b6d4;
  --lp-grad: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  --lp-grad-text: linear-gradient(
    135deg,
    #3b82f6 0%,
    #8b5cf6 50%,
    #ec4899 100%
  );
  --lp-radius-sm: 8px;
  --lp-radius: 12px;
  --lp-radius-lg: 16px;
  --lp-radius-xl: 24px;

  font-family: var(--font-geist-sans, "Geist", system-ui, sans-serif);
  background: var(--lp-bg);
  color: var(--lp-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
.lp-page *,
.lp-page *::before,
.lp-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.lp-page a {
  color: inherit;
  text-decoration: none;
}
.lp-page button {
  cursor: pointer;
  font-family: inherit;
}
.lp-page h1,
.lp-page h2,
.lp-page h3,
.lp-page h4 {
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  line-height: 1.15;
}

/* ─── TYPOGRAPHY ──────────────────────────────────────────────── */
.lp-page .display {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.lp-page .lp-h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
}
.lp-page .lp-h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
}
.lp-page .lp-h3 {
  font-size: 1.1rem;
  font-weight: 600;
}
.lp-page .body-lg {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--lp-text-secondary);
}
.lp-page .body {
  font-size: 0.92rem;
  color: var(--lp-text-secondary);
}
.lp-page .mono {
  font-family: var(--font-geist-mono, "Geist Mono", monospace);
}
.lp-page .grad-text {
  background: var(--lp-grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LAYOUT ──────────────────────────────────────────────────── */
.lp-page .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-page .section {
  padding: 96px 0;
}
.lp-page .section-sm {
  padding: 72px 0;
}
.lp-page .flex {
  display: flex;
}
.lp-page .grid {
  display: grid;
}
.lp-page .items-center {
  align-items: center;
}
.lp-page .gap-4 {
  gap: 16px;
}
.lp-page .gap-6 {
  gap: 24px;
}
.lp-page .gap-8 {
  gap: 32px;
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.lp-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.lp-page .btn-primary {
  background: var(--lp-grad);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.3),
    0 4px 20px rgba(59, 130, 246, 0.25);
}
.lp-page .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.18s;
}
.lp-page .btn-primary:hover::before {
  background: rgba(255, 255, 255, 0.07);
}
.lp-page .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.4),
    0 8px 32px rgba(59, 130, 246, 0.35);
}
.lp-page .btn-primary:active {
  transform: translateY(0);
}
.lp-page .btn-ghost {
  background: transparent;
  color: var(--lp-text-secondary);
  border: 1px solid var(--lp-border);
}
.lp-page .btn-ghost:hover {
  border-color: var(--lp-primary);
  color: var(--lp-text-primary);
  background: rgba(59, 130, 246, 0.06);
}
.lp-page .btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 12px;
}
.lp-page .btn-sm {
  padding: 8px 18px;
  font-size: 0.84rem;
  border-radius: 8px;
}

/* ─── SCROLL REVEAL ───────────────────────────────────────────── */
.lp-page .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.lp-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.lp-page .reveal-delay-1 {
  transition-delay: 0.1s;
}
.lp-page .reveal-delay-2 {
  transition-delay: 0.2s;
}
.lp-page .reveal-delay-3 {
  transition-delay: 0.3s;
}
.lp-page .reveal-delay-4 {
  transition-delay: 0.4s;
}
.lp-page .reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ─── NAVBAR ──────────────────────────────────────────────────── */
.lp-page .lp-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(12, 12, 14, 0.8);
  border-bottom: 1px solid rgba(38, 38, 38, 0);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.lp-page .lp-navbar.scrolled {
  border-bottom-color: var(--lp-border);
  background: rgba(12, 12, 14, 0.92);
}
.lp-page .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-page .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-weight: 800;
  font-size: 1.1rem;
}
.lp-page .logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--lp-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  box-shadow: 0 2px 12px rgba(139, 92, 246, 0.4);
}
.lp-page .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.lp-page .nav-link {
  font-size: 0.88rem;
  color: var(--lp-text-secondary);
  font-weight: 500;
  transition: color 0.15s;
}
.lp-page .nav-link:hover {
  color: var(--lp-text-primary);
}
.lp-page .nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-page .lp-language-switcher {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.lp-page .lp-language-switcher button {
  padding: 6px 9px;
}

/* ─── HERO BASE ────────────────────────────────────────────────── */
.lp-page .hero-rec {
  position: relative;
  min-height: 100vh;
  display: block;
  padding: 0;
  background: #0c0c0e;
  overflow: hidden;
}
.lp-page .hero-rec-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 60% 70% at 30% 50%,
      rgba(139, 92, 246, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 45% 50% at 75% 30%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 35% 40% at 80% 80%,
      rgba(236, 72, 153, 0.07) 0%,
      transparent 55%
    );
}

/* Mobile-only couple photo (background) */
.lp-page .hero-mobile-couple {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.3;
}
.lp-page .hero-mobile-couple-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 90%;
  background: radial-gradient(
    ellipse 50% 50% at 50% 50%,
    rgba(139, 92, 246, 0.5) 0%,
    rgba(59, 130, 246, 0.25) 35%,
    transparent 70%
  );
  filter: blur(20px);
  pointer-events: none;
}
.lp-page .hero-mobile-couple-img {
  position: absolute;
  inset: 0;
  background-position: center 30%;
  background-size: auto 70%;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Hero container — left visual zone | right text */
.lp-page .hero-rec-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 110px 40px 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
}

/* ─── HERO VISUAL ZONE (left) ─────────────────────────────────── */
.lp-page .hero-visual {
  position: relative;
  height: 640px;
  display: grid;
  grid-template-columns: 195px 1fr;
  gap: 0;
  align-items: center;
}

/* Stat cards column */
.lp-page .hero-stat-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.lp-page .hero-stat {
  background: rgba(20, 20, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 11px 13px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 175px;
}
.lp-page .hero-stat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.lp-page .hero-stat-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  flex-shrink: 0;
}
.lp-page .hero-stat-label {
  font-family: var(--font-geist-mono, "Geist Mono", monospace);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.lp-page .hero-stat-value {
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.lp-page .hero-stat-sub {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.55);
}
.lp-page .hero-stat-chart {
  margin-top: 6px;
  height: 20px;
  width: 100%;
}

/* Ranking inside stat card */
.lp-page .hero-stat-rank-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.lp-page .hero-stat-rank-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
}
.lp-page .rank-body {
  flex: 1;
  min-width: 0;
}
.lp-page .rank-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3px;
}
.lp-page .rank-bar {
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.lp-page .rank-bar-fill {
  height: 100%;
  border-radius: 2px;
}
.lp-page .rank-pos {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-weight: 700;
  font-size: 0.6rem;
  color: #fff;
  flex-shrink: 0;
}
.lp-page .rank-1 {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}
.lp-page .rank-2 {
  background: linear-gradient(135deg, #94a3b8, #64748b);
}
.lp-page .rank-3 {
  background: linear-gradient(135deg, #a16207, #78350f);
}
.lp-page .rank-name {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.lp-page .rank-score {
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.66rem;
}

/* Couple photo + phone overlay */
.lp-page .hero-couple {
  position: relative;
  height: 100%;
  min-height: 600px;
}
.lp-page .hero-couple::before {
  content: "";
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 720px;
  height: 720px;
  background:
    radial-gradient(
      circle at 40% 45%,
      rgba(139, 92, 246, 1) 0%,
      rgba(139, 92, 246, 0.65) 18%,
      rgba(139, 92, 246, 0.25) 38%,
      transparent 58%
    ),
    radial-gradient(
      circle at 65% 65%,
      rgba(59, 130, 246, 0.85) 0%,
      rgba(59, 130, 246, 0.4) 25%,
      transparent 55%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(236, 72, 153, 0.6) 0%,
      rgba(236, 72, 153, 0.2) 35%,
      transparent 60%
    );
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
}
.lp-page .hero-couple::after {
  content: "";
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.45) 1px, transparent 1px);
  background-size: 32px 32px;
  border-radius: 50%;
  mask-image: radial-gradient(circle, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, #000 20%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
  animation: lp-techPulse 8s ease-in-out infinite;
}
.lp-page .hero-couple-img {
  position: absolute;
  bottom: -40px;
  left: -100px;
  height: 110%;
  max-height: 720px;
  width: auto;
  object-fit: contain;
  object-position: bottom left;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  z-index: 2;
}

/* Phone — 3D perspective, overlaid right of couple */
.lp-page .hero-rec-phone {
  position: absolute;
  right: -20px;
  top: 12%;
  transform: translateY(-50%);
  z-index: 3;
  perspective: 1400px;
}
.lp-page .hero-rec-phone .phone {
  width: 240px;
  height: 500px;
  transform: rotateY(-14deg) rotateX(6deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  box-shadow:
    40px 60px 100px rgba(0, 0, 0, 0.7),
    20px 30px 60px rgba(0, 0, 0, 0.5),
    -20px 20px 80px rgba(139, 92, 246, 0.18),
    inset 1px 1px 0 rgba(255, 255, 255, 0.18),
    inset -1px -1px 0 rgba(0, 0, 0, 0.6),
    -3px 3px 0 -1px rgba(40, 40, 48, 0.8),
    -6px 6px 0 -2px rgba(25, 25, 30, 0.8),
    -9px 9px 0 -3px rgba(15, 15, 18, 0.7);
  transition:
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.6s;
}
.lp-page .hero-rec-phone .phone:hover {
  transform: rotateY(-8deg) rotateX(3deg) rotateZ(-1deg);
}

/* Right column — copy */
.lp-page .hero-rec-content {
  max-width: 560px;
  align-self: center;
  min-width: 0;
}
.lp-page .hero-top-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.lp-page .hero-top-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 28px;
}
.lp-page .hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.22);
}
.lp-page .hero-top-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
}
.lp-page .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
}
.lp-page .hero-pill img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 50%;
}
.lp-page .hero-pill-plus {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  padding: 0 2px;
}

.lp-page .hero-rec-headline {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 0;
  color: #fff;
}

.lp-page .hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.lp-page .hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--lp-text-muted);
}
.lp-page .hero-avatars {
  display: flex;
}
.lp-page .hero-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--lp-bg);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
}
.lp-page .hero-avatar:first-child {
  margin-left: 0;
}

/* ─── HERO FEATURE STRIP ──────────────────────────────────────── */
.lp-page .hero-feature-strip-outer {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 0 40px;
  margin-top: -40px;
}
.lp-page .hero-feature-strip {
  position: relative;
  z-index: 4;
  margin: 0 auto 60px;
  width: 100%;
  max-width: 1520px;
  padding: 28px 36px;
  background: rgba(20, 20, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lp-page .hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.lp-page .hero-feature-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
}
.lp-page .hero-feature h4 {
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.lp-page .hero-feature p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* Mobile-only phone mockup */
.lp-page .hero-mobile-phone {
  display: none;
}
.lp-page .hero-mobile-phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 92, 246, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.lp-page .hero-mobile-phone-frame {
  width: 220px;
  height: 420px;
  background: linear-gradient(180deg, #1a1a1f 0%, #0a0a0c 50%, #1a1a1f 100%);
  border-radius: 36px;
  padding: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(139, 92, 246, 0.2);
  position: relative;
}
.lp-page .hero-mobile-phone-screen {
  width: 100%;
  height: 100%;
  background: #0d0d10;
  border-radius: 32px;
  overflow: hidden;
  padding: 16px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-page .hmp-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.lp-page .hmp-status-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}
.lp-page .hmp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-page .hmp-club {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}
.lp-page .hmp-badge {
  padding: 2px 7px;
  border-radius: 5px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-size: 0.55rem;
  font-weight: 600;
}
.lp-page .hmp-title {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lp-page .hmp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}
.lp-page .hmp-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  padding: 6px 4px;
  text-align: center;
}
.lp-page .hmp-stat-val {
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-weight: 800;
  font-size: 0.95rem;
}
.lp-page .hmp-stat-lbl {
  font-size: 0.46rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1px;
}
.lp-page .hmp-rank-title {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}
.lp-page .hmp-rank-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.58rem;
}
.lp-page .hmp-rank-pos {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.55rem;
  color: #fff;
  flex-shrink: 0;
}
.lp-page .hmp-rank-1 {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}
.lp-page .hmp-rank-2 {
  background: linear-gradient(135deg, #94a3b8, #64748b);
}
.lp-page .hmp-rank-3 {
  background: linear-gradient(135deg, #a16207, #78350f);
}
.lp-page .hmp-rank-name {
  flex: 1;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.lp-page .hmp-rank-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.lp-page .hmp-rank-bar div {
  height: 100%;
  border-radius: 2px;
}
.lp-page .hmp-rank-score {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.55rem;
}

/* ─── MINISTERIOS ─────────────────────────────────────────────── */
.lp-page .m-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 99px;
  font-family: var(--font-geist-mono, "Geist Mono", monospace);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.lp-page .m-tag-amber {
  background: rgba(251, 191, 36, 0.08);
  color: #fcd34d;
  border: 1px solid rgba(251, 191, 36, 0.18);
}
.lp-page .m-tag-blue {
  background: rgba(96, 165, 250, 0.08);
  color: #93c5fd;
  border: 1px solid rgba(96, 165, 250, 0.18);
}
@media (max-width: 768px) {
  .lp-page .ministerios-strip {
    gap: 8px !important;
  }
}

/* ─── PHONE MOCKUP ────────────────────────────────────────────── */
.lp-page .phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.lp-page .phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 92, 246, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.lp-page .phone {
  width: 280px;
  height: 580px;
  background: linear-gradient(180deg, #1a1a1f 0%, #0a0a0c 50%, #1a1a1f 100%);
  border-radius: 48px;
  padding: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 50px 100px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(139, 92, 246, 0.15);
  position: relative;
}
.lp-page .phone::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 130px;
  width: 3px;
  height: 60px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6),
    rgba(255, 255, 255, 0.15)
  );
  border-radius: 0 2px 2px 0;
}
.lp-page .phone::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 110px;
  width: 3px;
  height: 38px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.15),
    rgba(0, 0, 0, 0.6)
  );
  border-radius: 2px 0 0 2px;
  box-shadow:
    0 56px 0 -1px rgba(255, 255, 255, 0.15),
    0 56px 0 0 rgba(0, 0, 0, 0.6);
}
.lp-page .phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding-right: 10px;
}
.lp-page .phone-notch-dot {
  display: none;
}
.lp-page .phone-notch-cam {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1a1a2e, #000);
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.1);
}
.lp-page .phone-screen {
  width: 100%;
  height: 100%;
  background: #0d0d10;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.lp-page .phone-status {
  padding: 18px 26px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.66rem;
  color: #fff;
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-weight: 600;
}
.lp-page .phone-header {
  padding: 0 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.lp-page .phone-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.lp-page .phone-club-name {
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
}
.lp-page .phone-badge {
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-size: 0.6rem;
  font-weight: 600;
}
.lp-page .phone-subtitle {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.35);
}
.lp-page .phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 12px 18px 8px;
}
.lp-page .phone-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}
.lp-page .phone-stat-val {
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
}
.lp-page .phone-stat-lbl {
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1px;
}
.lp-page .phone-section-title {
  padding: 8px 18px 4px;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}
.lp-page .phone-member-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
}
.lp-page .phone-member-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  flex-shrink: 0;
}
.lp-page .phone-member-info {
  flex: 1;
  min-width: 0;
}
.lp-page .phone-member-name {
  font-size: 0.66rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.lp-page .phone-member-role {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
}
.lp-page .phone-member-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.lp-page .phone-qr-row {
  margin: 8px 18px 0;
  padding: 10px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-page .phone-qr-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.lp-page .phone-qr-text {
  flex: 1;
}
.lp-page .phone-qr-title {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.lp-page .phone-qr-sub {
  font-size: 0.55rem;
  color: rgba(59, 130, 246, 0.8);
  margin-top: 1px;
}
.lp-page .phone-nav {
  margin-top: auto;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 14, 0.85);
  backdrop-filter: blur(8px);
  padding: 10px 4px 18px;
}
.lp-page .phone-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.lp-page .phone-nav-item.active {
  color: #f97316;
}
.lp-page .phone-nav-dot {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
}
.lp-page .phone-nav-item.active .phone-nav-dot {
  color: #f97316;
}

/* ─── PROBLEM CARDS ───────────────────────────────────────────── */
.lp-page .problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.lp-page .problem-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.lp-page .problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lp-grad);
  opacity: 0;
  transition: opacity 0.2s;
}
.lp-page .problem-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}
.lp-page .problem-card:hover::before {
  opacity: 1;
}
.lp-page .problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  background: var(--lp-surface-hover);
  border: 1px solid var(--lp-border);
}
.lp-page .problem-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.lp-page .problem-card p {
  font-size: 0.875rem;
  color: var(--lp-text-secondary);
  line-height: 1.65;
}

/* ─── SECTION LABEL ───────────────────────────────────────────── */
.lp-page .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 99px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lp-accent-purple);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lp-page .section-center {
  text-align: center;
}
.lp-page .section-center .section-label {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: fit-content;
}

/* ─── SUPER UNIDADE ───────────────────────────────────────────── */
.lp-page .su-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.lp-page .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.lp-page .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  transition: border-color 0.2s;
}
.lp-page .feature-item:hover {
  border-color: rgba(59, 130, 246, 0.3);
}
.lp-page .feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.lp-page .feature-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.lp-page .feature-text p {
  font-size: 0.78rem;
  color: var(--lp-text-muted);
  line-height: 1.5;
}

/* ─── APP PREVIEW ─────────────────────────────────────────────── */
.lp-page .app-preview {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}
.lp-page .app-preview-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--lp-divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-page .app-preview-dots {
  display: flex;
  gap: 6px;
}
.lp-page .app-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.lp-page .app-preview-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lp-text-secondary);
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
}
.lp-page .app-preview-body {
  display: flex;
  height: 340px;
}
.lp-page .app-sidebar {
  width: 180px;
  border-right: 1px solid var(--lp-divider);
  padding: 16px 0;
  flex-shrink: 0;
}
.lp-page .app-sidebar-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--lp-text-muted);
  border-left: 2px solid transparent;
  transition: all 0.12s;
}
.lp-page .app-sidebar-item.active {
  color: var(--lp-primary);
  background: rgba(59, 130, 246, 0.08);
  border-left-color: var(--lp-primary);
}
.lp-page .app-sidebar-icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}
.lp-page .app-sidebar-item.active .app-sidebar-icon {
  opacity: 1;
}
.lp-page .app-main {
  flex: 1;
  padding: 20px;
  overflow: hidden;
}
.lp-page .app-main-title {
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.lp-page .app-main-sub {
  font-size: 0.72rem;
  color: var(--lp-text-muted);
  margin-bottom: 16px;
}
.lp-page .app-stat-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.lp-page .app-stat-card {
  flex: 1;
  background: var(--lp-surface-hover);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.lp-page .app-stat-n {
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-weight: 700;
  font-size: 1.15rem;
}
.lp-page .app-stat-l {
  font-size: 0.6rem;
  color: var(--lp-text-muted);
  margin-top: 2px;
}
.lp-page .app-table-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--lp-divider);
  font-size: 0.75rem;
}
.lp-page .app-table-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
}
.lp-page .app-table-name {
  flex: 1;
  font-weight: 500;
  color: var(--lp-text-primary);
}
.lp-page .app-table-pts {
  font-family: var(--font-geist-mono, "Geist Mono", monospace);
  font-size: 0.72rem;
  color: var(--lp-text-secondary);
}
.lp-page .app-table-chip {
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.6rem;
  font-weight: 600;
}

/* ─── COMO FUNCIONA ───────────────────────────────────────────── */
.lp-page .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.lp-page .steps-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.4),
    rgba(139, 92, 246, 0.4),
    rgba(236, 72, 153, 0.4)
  );
}
.lp-page .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
}
.lp-page .step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.lp-page .step-number-1 {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}
.lp-page .step-number-2 {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.lp-page .step-number-3 {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}
.lp-page .step h3 {
  font-size: 1rem;
  font-weight: 600;
}
.lp-page .step p {
  font-size: 0.875rem;
  color: var(--lp-text-secondary);
  line-height: 1.65;
}

/* ─── ROADMAP ─────────────────────────────────────────────────── */
.lp-page .roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.lp-page .roadmap-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.lp-page .roadmap-card:hover {
  transform: translateY(-3px);
}
.lp-page .roadmap-card.available {
  border-color: rgba(34, 197, 94, 0.3);
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.06) 0%,
    var(--lp-surface) 60%
  );
}
.lp-page .roadmap-card.available:hover {
  border-color: rgba(34, 197, 94, 0.5);
}
.lp-page .roadmap-card.secret {
  border-color: rgba(139, 92, 246, 0.25);
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.05) 0%,
    var(--lp-surface) 60%
  );
  cursor: pointer;
}
.lp-page .roadmap-card.secret:hover {
  border-color: rgba(139, 92, 246, 0.45);
}
.lp-page .roadmap-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.lp-page .status-available {
  background: rgba(34, 197, 94, 0.12);
  color: var(--lp-success);
}
.lp-page .status-soon {
  background: rgba(245, 158, 11, 0.1);
  color: var(--lp-warning);
}
.lp-page .status-secret {
  background: rgba(139, 92, 246, 0.12);
  color: var(--lp-accent-purple);
}
.lp-page .roadmap-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}
.lp-page .roadmap-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.lp-page .roadmap-card p {
  font-size: 0.8rem;
  color: var(--lp-text-muted);
  line-height: 1.6;
}
.lp-page .lock-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.5));
  animation: lp-float 3s ease-in-out infinite;
}
.lp-page .roadmap-card.secret:hover .lock-icon {
  filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.6));
}

/* ─── PRICING ─────────────────────────────────────────────────── */
.lp-page .pricing-wrap {
  max-width: 520px;
  margin: 48px auto 0;
}
.lp-page .pricing-card {
  background: var(--lp-surface);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--lp-radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(139, 92, 246, 0.12),
    0 40px 80px rgba(0, 0, 0, 0.3);
}
.lp-page .pricing-top {
  padding: 32px 36px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.06) 0%,
    rgba(139, 92, 246, 0.08) 50%,
    rgba(236, 72, 153, 0.06) 100%
  );
  border-bottom: 1px solid var(--lp-border);
}
.lp-page .pricing-label {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 6px;
  background: var(--lp-grad);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lp-page .pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.lp-page .price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lp-text-secondary);
  margin-top: 6px;
}
.lp-page .price-amount {
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
}
.lp-page .price-period {
  font-size: 0.9rem;
  color: var(--lp-text-muted);
  margin-bottom: 4px;
}
.lp-page .pricing-note {
  font-size: 0.8rem;
  color: var(--lp-text-muted);
  margin-top: 8px;
}
.lp-page .pricing-trial {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  margin-top: 12px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  font-size: 0.8rem;
  color: var(--lp-success);
}
.lp-page .pricing-features {
  padding: 32px 36px;
}
.lp-page .pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--lp-divider);
  font-size: 0.88rem;
  color: var(--lp-text-secondary);
}
.lp-page .pricing-feature:last-child {
  border-bottom: none;
}
.lp-page .pricing-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.lp-page .pricing-bottom {
  padding: 0 36px 32px;
}
.lp-page .pricing-validation {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--lp-text-muted);
  justify-content: center;
  text-align: center;
}

/* ─── TESTIMONIALS ────────────────────────────────────────────── */
.lp-page .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.lp-page .testimonial-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 28px;
  position: relative;
  transition: border-color 0.2s;
}
.lp-page .testimonial-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
}
.lp-page .testimonial-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(139, 92, 246, 0.3);
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
  font-weight: 800;
  margin-bottom: 12px;
  display: block;
}
.lp-page .testimonial-text {
  font-size: 0.9rem;
  color: var(--lp-text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.lp-page .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-page .testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading, "Space Grotesk", sans-serif);
}
.lp-page .testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
}
.lp-page .testimonial-role {
  font-size: 0.76rem;
  color: var(--lp-text-muted);
  margin-top: 2px;
  line-height: 1.4;
}
.lp-page .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.lp-page .star {
  color: var(--lp-warning);
  font-size: 0.85rem;
}

/* ─── FINAL CTA ───────────────────────────────────────────────── */
.lp-page .cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.lp-page .cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 70% 70% at 50% 50%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(59, 130, 246, 0.07) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 40% 40% at 80% 20%,
      rgba(236, 72, 153, 0.07) 0%,
      transparent 50%
    );
}
.lp-page .cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.lp-page .cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.lp-page footer {
  border-top: 1px solid var(--lp-divider);
  padding: 40px 0;
}
.lp-page .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.lp-page .footer-links {
  display: flex;
  gap: 28px;
}
.lp-page .footer-link {
  font-size: 0.83rem;
  color: var(--lp-text-muted);
  transition: color 0.15s;
}
.lp-page .footer-link:hover {
  color: var(--lp-text-secondary);
}
.lp-page .footer-copy {
  font-size: 0.78rem;
  color: var(--lp-text-muted);
}

/* ─── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes lp-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px #22c55e;
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 12px #22c55e;
  }
}
@keyframes lp-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes lp-techPulse {
  0%,
  100% {
    opacity: 0.65;
    transform: translateY(-50%) rotate(0deg) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) rotate(8deg) scale(1.05);
  }
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .lp-page .hero-rec-container {
    gap: 32px;
    padding: 110px 24px 40px;
  }
  .lp-page .hero-visual {
    grid-template-columns: 180px 1fr;
  }
  .lp-page .hero-rec-phone .phone {
    width: 210px;
    height: 440px;
  }
}
@media (max-width: 1100px) {
  .lp-page .hero-rec-container {
    grid-template-columns: 1fr;
    padding: 110px 32px 60px;
  }
  .lp-page .hero-visual {
    display: none;
  }
  .lp-page .hero-feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-page .roadmap-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .lp-page .hero-rec-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 88px 18px 28px;
  }
  .lp-page .hero-feature-strip {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
    margin: 0 20px 40px;
  }
  .lp-page .hero-rec-headline {
    font-size: clamp(1.9rem, 7.5vw, 2.4rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 14px !important;
  }
  .lp-page .hero-actions {
    margin-top: 20px !important;
    gap: 10px !important;
  }
  .lp-page .hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 16px 20px !important;
    font-size: 1rem !important;
  }
  .lp-page .hero-mobile-couple {
    display: block !important;
  }
  .lp-page .hero-mobile-phone {
    display: flex !important;
    justify-content: center;
    position: relative;
    margin-top: 28px;
  }
  .lp-page .phone {
    width: 240px;
    height: 500px;
  }
  .lp-page .problems-grid {
    grid-template-columns: 1fr;
  }
  .lp-page .su-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-page .feature-grid {
    grid-template-columns: 1fr;
  }
  .lp-page .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lp-page .steps-grid::before {
    display: none;
  }
  .lp-page .roadmap-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lp-page .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .lp-page .nav-links {
    display: none;
  }
  .lp-page .nav-cta {
    gap: 8px;
  }
  .lp-page .lp-language-switcher button {
    padding: 6px 8px;
  }
  .lp-page .pricing-top {
    padding: 24px;
  }
  .lp-page .pricing-features {
    padding: 24px;
  }
  .lp-page .pricing-bottom {
    padding: 0 24px 24px;
  }
  .lp-page #embaixadores .ev-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .lp-page #embaixadores .casal-right {
    min-height: 360px !important;
  }
  .lp-page #embaixadores .ev-grid > div:first-child {
    padding: 80px 24px 60px !important;
  }
  .lp-page .hero-top-pills {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .lp-page .hero-rec-headline {
    font-size: clamp(1.7rem, 9vw, 2rem) !important;
  }
  .lp-page .roadmap-grid {
    grid-template-columns: 1fr;
  }
  .lp-page .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .lp-page .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .lp-page #embaixadores .duo-grid {
    grid-template-columns: 1fr !important;
  }
}

