/* Seguidor SMM — Landing premium (referência TurboSMM visual) */
:root {
  --primary: #6D28D9;
  --primary-2: #7C3AED;
  --primary-3: #8B5CF6;
  --primary-light: #A78BFA;
  --primary-soft: #F5F3FF;
  --primary-ultra-soft: #FAF8FF;
  --dark: #12102B;
  --dark-purple: #1C1454;
  --text: #15132B;
  --text-secondary: #6F6B80;
  --muted: #9894A8;
  --white: #FFFFFF;
  --background: #FFFFFF;
  --surface: #FFFFFF;
  --border: #EBE8F3;
  --border-soft: #ECE8F4;
  --ink: #15132B;
  --ink-soft: #6F6B80;
  --max: 1180px;
  --font: "Plus Jakarta Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --grad-main: linear-gradient(135deg, #5B21B6 0%, #7C3AED 50%, #8B5CF6 100%);
  --grad-dark: linear-gradient(135deg, #191248 0%, #35158A 50%, #6126D9 100%);
  --shadow-sm: 0 8px 30px rgba(32, 20, 65, 0.045);
  --shadow-md: 0 10px 30px rgba(43, 22, 80, 0.06);
  --shadow-lg: 0 25px 60px rgba(40, 20, 80, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease, border-color .25s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.28) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.28);
}
.btn--ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid #D8D4E6;
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--primary-2); color: var(--primary); }
.btn--soft {
  background: #F3EEFF;
  color: var(--primary);
  box-shadow: none;
}
.btn--soft:hover { background: #EDE7FF; }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}
.btn--lg { padding: 13px 22px; font-size: 15px; border-radius: 11px; }
.btn--block { width: 100%; }

/* Header */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.lp-nav.is-scrolled {
  border-bottom-color: rgba(235,232,243,.9);
  box-shadow: 0 8px 30px rgba(25, 15, 60, 0.06);
}
.lp-nav__inner {
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
}
.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.02em;
  color: var(--text);
  justify-self: start;
}
.lp-logo__img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.lp-logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad-main);
  box-shadow: 0 6px 16px rgba(109,40,217,.35);
  font-size: 14px;
}
.lp-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.lp-menu a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color .2s ease;
}
.lp-menu a:hover { color: var(--primary); }
.lp-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.lp-nav__login {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
}
.lp-nav__login:hover { color: var(--primary); }
.lp-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  color: var(--text);
}

/* Hero */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 72px;
  background:
    radial-gradient(circle at 18% 18%, rgba(139,92,246,.07), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(139,92,246,.16), transparent 34%),
    linear-gradient(180deg, #FAF8FF 0%, #FFFFFF 58%, #FFFFFF 100%);
}
.lp-hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -250px;
  top: -280px;
  background: radial-gradient(circle, rgba(139,92,246,.17) 0%, rgba(139,92,246,.06) 35%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.lp-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -180px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(109,40,217,.08) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero__orbits {
  position: absolute;
  right: -40px;
  top: 40px;
  width: min(640px, 55vw);
  opacity: .9;
  pointer-events: none;
  z-index: 0;
}
.lp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 42px;
  align-items: center;
}
.lp-kicker,
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
}
.lp-badge {
  background: var(--primary-soft);
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 18px;
}
.lp-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 800;
  color: var(--text);
  max-width: 14ch;
}
.lp-hero h1 .accent { color: var(--primary-2); }
.lp-hero__lead {
  margin: 0 0 26px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.65;
  max-width: 46ch;
}
.lp-stats-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 16px 14px;
  margin-bottom: 18px;
}
.lp-stats-card strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 2px;
}
.lp-stats-card span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.3;
}
.lp-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}
.lp-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.lp-seal i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
}

/* Floating icons */
.float-icon {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(139,92,246,.20), rgba(255,255,255,.80));
  border: 1px solid rgba(124,58,237,.15);
  box-shadow: 0 10px 30px rgba(124,58,237,.12);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 16px;
  z-index: 2;
  animation: floating 5s ease-in-out infinite;
  pointer-events: none;
}
.float-icon--1 { top: 12%; right: 46%; animation-duration: 5.2s; }
.float-icon--2 { top: 28%; right: 4%; animation-duration: 6.1s; animation-delay: .4s; }
.float-icon--3 { bottom: 18%; right: 42%; animation-duration: 4.6s; animation-delay: .8s; color: #EC4899; }
.float-icon--4 { top: 58%; right: 52%; animation-duration: 5.8s; animation-delay: .2s; color: #F59E0B; }
@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Auth card */
.auth-card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(119,77,211,.12);
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 3;
}
.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: #F3F1F8;
  margin-bottom: 20px;
}
.auth-tabs button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 10px 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #6B7280;
  cursor: pointer;
}
.auth-tabs button.is-active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(76,29,149,.08);
}
.auth-tabs button:disabled { opacity: .4; cursor: not-allowed; }
.auth-pane { display: none; }
.auth-pane.is-active { display: block; }
.auth-pane h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.auth-pane h2 i { color: var(--primary-2); font-size: 18px; }
.auth-pane .sub {
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-size: 14px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.field input,
.field select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 0 14px;
  background: #FCFBFF;
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus {
  border-color: rgba(124,58,237,.45);
  box-shadow: 0 0 0 4px rgba(124,58,237,.08);
  background: #fff;
}
.pass-wrap { position: relative; }
.pass-wrap input { padding-right: 44px; }
.pass-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
}
.field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.remember, .terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.remember input, .terms input { margin-top: 2px; }
.forgot-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-2);
}
.forgot-link:hover { color: var(--primary); }
.btn-main {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 11px;
  background: var(--grad-main);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(109,40,217,.28);
  position: relative;
  overflow: hidden;
}
.btn-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.25) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.btn-main:hover::after { transform: translateX(120%); }
.auth-foot {
  margin-top: 16px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-secondary);
}
.auth-foot a { color: var(--primary); font-weight: 700; }
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.alert {
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-size: 13.5px;
}
.alert-danger { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.alert-success { background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0; }

/* Sections */
.lp-section { padding: 78px 0; position: relative; }
.lp-section--soft { background: linear-gradient(180deg, #FAF8FF 0%, #FFFFFF 100%); }
.lp-center { text-align: center; }
.lp-center .lp-sub { margin-left: auto; margin-right: auto; }
.lp-title {
  margin: 10px 0 12px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
}
.lp-sub {
  margin: 0 0 34px;
  color: var(--text-secondary);
  font-size: 15.5px;
  max-width: 54ch;
  line-height: 1.65;
}

/* Benefits */
.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}
.lp-bcard {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 13px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lp-bcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(90,50,170,.09);
  border-color: rgba(124,58,237,.20);
}
.lp-bcard__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 16px;
}
.lp-bcard h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
}
.lp-bcard p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.55;
}

/* Timeline */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  text-align: center;
  margin-top: 8px;
}
.lp-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  border-top: 2px dashed rgba(167,139,250,.55);
  z-index: 0;
}
.lp-step {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.lp-step.is-visible { opacity: 1; transform: translateY(0); }
.lp-step__n {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-main);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(109,40,217,.28);
}
.lp-step h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
}
.lp-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13.5px;
}

/* Reseller */
.lp-reseller {
  padding: 28px 0 56px;
}
.lp-reseller__panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, #1F145B 0%, #3A168F 50%, #6D28D9 100%);
  color: #fff;
  padding: 48px 44px;
  box-shadow: 0 24px 60px rgba(49, 20, 120, 0.28);
}
.lp-reseller__panel::before,
.lp-reseller__panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.lp-reseller__panel::before {
  width: 280px;
  height: 280px;
  right: 18%;
  top: -90px;
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%);
}
.lp-reseller__panel::after {
  width: 160px;
  height: 160px;
  left: -40px;
  bottom: -50px;
  background: rgba(255,255,255,.06);
  transform: rotate(18deg);
  border-radius: 28px;
}
.lp-reseller__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.lp-reseller .lp-kicker { color: #DDD6FE; }
.lp-reseller h2 {
  margin: 10px 0 12px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  max-width: 14ch;
}
.lp-reseller p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.78);
  max-width: 42ch;
}
.lp-reseller__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lp-reseller__card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 14px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.lp-reseller__card i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  flex: 0 0 auto;
}
.lp-reseller__card strong { display: block; font-size: 14px; margin-bottom: 2px; }
.lp-reseller__card span { font-size: 12.5px; color: rgba(255,255,255,.72); }
.lp-rocket {
  justify-self: end;
  width: min(280px, 100%);
  filter: drop-shadow(0 20px 40px rgba(179,122,255,.35));
  animation: rocketFloat 6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes rocketFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-8px) rotate(-7deg); }
}

/* Video — proporção 16:9 sem esticar */
.lp-video {
  width: min(860px, 100%);
  margin: 8px auto 0;
  opacity: 1 !important;
  transform: none !important;
}
.lp-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20,15,50,.15);
  background: #0F172A;
}
.lp-video__frame::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* fallback se aspect-ratio não existir */
}
@supports (aspect-ratio: 16 / 9) {
  .lp-video__frame::before { display: none; }
}
.lp-video iframe,
.lp-video__frame iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  border: 0 !important;
  display: block !important;
  object-fit: contain;
  z-index: 1;
}
.lp-video__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

/* Split */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.lp-panel-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.lp-panel-card__float {
  position: absolute;
  top: -14px;
  right: -10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 10px 24px rgba(109,40,217,.28);
}
.lp-mini { display: grid; gap: 10px; }
.lp-mini__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  background: var(--primary-ultra-soft);
  border-radius: 12px;
  padding: 12px 14px;
}
.lp-mini__row span { color: var(--text-secondary); font-size: 13.5px; font-weight: 600; }
.lp-mini__row b { color: var(--primary); font-size: 14px; }

/* API code */
.lp-code-window {
  background: #0E1424;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(15,20,40,.14);
  overflow: hidden;
}
.lp-code-tabs {
  display: flex;
  gap: 4px;
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lp-code-tabs button {
  border: 0;
  background: transparent;
  color: #94A3B8;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.lp-code-tabs button.is-active {
  background: rgba(124,58,237,.22);
  color: #E9D5FF;
}
.lp-code {
  margin: 0;
  padding: 18px;
  color: #E2E8F0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12.5px;
  line-height: 1.6;
  overflow: auto;
  min-height: 180px;
}
.lp-code .k { color: #C4B5FD; }
.lp-code .s { color: #86EFAC; }
.lp-code .n { color: #FDE68A; }
.lp-code-pane { display: none; }
.lp-code-pane.is-active { display: block; }

/* Pricing */
.lp-filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.lp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-filters button {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-secondary);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.lp-filters button.is-active {
  background: var(--grad-main);
  border-color: transparent;
  color: #fff;
}
.lp-search {
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 14px 0 36px;
  min-width: min(240px, 100%);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%9894A8' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3-3'/%3E%3C/svg%3E") 14px center no-repeat;
  outline: none;
}
.lp-search:focus { border-color: rgba(124,58,237,.4); }
.lp-table-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(36,20,80,.08);
  overflow: auto;
}
.lp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.lp-table th,
.lp-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.lp-table th {
  background: #FAF8FF;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lp-table tbody tr:hover { background: #FAF8FF; }
.lp-table tr:last-child td { border-bottom: none; }
.lp-price { color: var(--primary); font-weight: 800; }
.lp-speed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: #047857;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}
.lp-speed i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
}
.lp-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F3EEFF;
  color: #6D28D9;
  border-radius: 9px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

/* Support */
.lp-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  text-align: left;
}
.lp-support__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.lp-support__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(90,50,170,.09);
}
.lp-support__card i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 12px;
}
.lp-support__card h3 { margin: 0 0 6px; font-size: 16px; }
.lp-support__card p { margin: 0; color: var(--text-secondary); font-size: 13.5px; }

/* Footer */
.lp-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #171142, #29116A);
  color: rgba(255,255,255,.82);
  padding: 56px 0 28px;
}
.lp-footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -160px;
  background: radial-gradient(circle, rgba(139,92,246,.28), transparent 70%);
  pointer-events: none;
}
.lp-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.lp-footer h4,
.lp-footer__heading {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.lp-footer__contact {
  margin-top: 14px !important;
  font-size: 13px !important;
  color: rgba(255,255,255,.7);
}
.lp-footer__contact a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.lp-footer__legal {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
  max-width: none !important;
}
.lp-reseller__card h3 {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 2px;
  color: #fff;
}
.lp-footer ul { display: grid; gap: 10px; }
.lp-footer a { color: rgba(255,255,255,.72); font-size: 14px; }
.lp-footer a:hover { color: #fff; }
.lp-footer p { margin: 12px 0 0; font-size: 14px; line-height: 1.6; max-width: 36ch; }
.lp-footer .lp-logo {
  color: #fff !important;
  margin-bottom: 12px;
}
.lp-footer .lp-logo__img {
  height: 40px;
  max-width: 200px;
  filter: none;
  background: transparent;
  opacity: 1;
}
.lp-footer .lp-logo__mark {
  background: rgba(255,255,255,.16);
  box-shadow: none;
  color: #fff;
}
.lp-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.lp-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.lp-footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* WhatsApp polish if custom footer injects fixed button */
a[href*="whatsapp"][style*="position:fixed"],
a[href*="wa.me"][style*="position:fixed"] {
  width: 56px !important;
  height: 56px !important;
  bottom: 22px !important;
  right: 22px !important;
  border-radius: 50% !important;
  border: none !important;
  overflow: visible !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
  color: transparent !important;
  background-color: #25D366 !important;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E"),
    linear-gradient(145deg, #2FE574 0%, #25D366 45%, #1EBE57 100%) !important;
  background-size: 54% 54%, cover !important;
  background-position: center, center !important;
  background-repeat: no-repeat, no-repeat !important;
  box-shadow:
    0 4px 14px rgba(37, 211, 102, 0.38),
    0 10px 28px rgba(15, 23, 42, 0.14) !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
  z-index: 60 !important;
}
a[href*="whatsapp"][style*="position:fixed"] img,
a[href*="wa.me"][style*="position:fixed"] img {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}
a[href*="whatsapp"][style*="position:fixed"]:hover,
a[href*="wa.me"][style*="position:fixed"]:hover {
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow:
    0 6px 18px rgba(37, 211, 102, 0.48),
    0 14px 32px rgba(15, 23, 42, 0.16) !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .lp-hero__grid { gap: 28px; }
  .float-icon--1, .float-icon--4 { display: none; }
}
@media (max-width: 992px) {
  .lp-nav__inner { grid-template-columns: 1fr auto; }
  .lp-menu { display: none; }
  .lp-menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow-lg);
    align-items: stretch;
    gap: 8px;
    z-index: 20;
  }
  .lp-burger { display: inline-grid; place-items: center; }
  .lp-hero__grid,
  .lp-split,
  .lp-reseller__grid,
  .lp-benefits-grid,
  .lp-support,
  .lp-footer__grid {
    grid-template-columns: 1fr;
  }
  .lp-steps {
    grid-template-columns: 1fr 1fr;
  }
  .lp-steps::before { display: none; }
  .lp-rocket { justify-self: center; width: 200px; margin-top: 8px; }
  .lp-hero h1 { max-width: none; }
  .float-icon { display: none; }
}
@media (max-width: 768px) {
  .lp-hero { padding: 28px 0 48px; }
  .lp-stats-card { grid-template-columns: 1fr 1fr; }
  .lp-section { padding: 56px 0; }
  .lp-reseller__panel { padding: 28px 20px; }
  .lp-reseller__cards { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .lp-filters-bar { flex-direction: column; align-items: stretch; }
  .lp-search { width: 100%; min-width: 0; }
}
@media (max-width: 576px) {
  .lp-steps { grid-template-columns: 1fr; }
  .lp-nav__actions .lp-nav__login { display: none; }
  .auth-card { padding: 20px 16px; }
}
