:root {
  --ink: #07111f;
  --ink-2: #102033;
  --paper: #f7f9fc;
  --card: #ffffff;
  --muted: #64748b;
  --line: #e3e8ef;
  --brand: #0066ff;
  --brand-2: #00b8ff;
  --accent: #ffb000;
  --success: #20b15a;
  --danger: #e5484d;
  --shadow: 0 18px 46px rgba(7, 17, 31, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.9rem clamp(1rem, 4vw, 4.5rem);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--ink);
  display: grid;
  font-weight: 900;
  font-size: 1.65rem;
  line-height: 0.95;
}

.brand span span,
.site-footer strong span,
.login-card span {
  color: var(--brand);
}

.brand small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.52em;
}

.brand-logo {
  align-items: center;
  display: flex;
}

.brand-logo img {
  height: 52px;
  max-width: min(240px, 44vw);
  object-fit: contain;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 0.15rem;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.62rem 0.82rem;
}

.site-nav a:hover,
.site-nav a.active {
  background: #eaf3ff;
  color: var(--brand);
}

.menu-toggle {
  display: none;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.2rem;
}

.btn-yellow {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 102, 255, 0.22);
}

.btn-outline {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero {
  align-items: center;
  color: #fff;
  display: grid;
  min-height: clamp(640px, 86vh, 860px);
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 5vw, 5.5rem);
  position: relative;
}

.hero-copy {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  color: #fff;
}

.hero-copy p:not(.eyebrow) {
  color: #d9e7f8;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.eyebrow {
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.hero-actions,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-metrics span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #c8d7ea;
  padding: 0.8rem 1rem;
}

.hero-metrics b {
  color: #fff;
  display: block;
}

.hero-art {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.hero-art img {
  filter: saturate(1.08) contrast(1.05);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.92) 0%, rgba(7, 17, 31, 0.72) 42%, rgba(7, 17, 31, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.72) 0%, rgba(7, 17, 31, 0.08) 48%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.section,
.page {
  padding: clamp(2.8rem, 6vw, 6rem) clamp(1rem, 5vw, 5.5rem);
}

.section-title {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section-title p,
.page-hero p,
.about-grid p,
.final-cta p,
.player-info p {
  color: var(--muted);
}

.plans-grid,
.promo-grid,
.partners-grid,
.values-grid,
.benefits,
.ranking-list,
.admin-cards {
  display: grid;
  gap: 1rem;
}

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

.plans-grid.wide {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.plan-card,
.promo-card,
.partner-card,
.values-grid article,
.benefits article,
.form-card,
.ranking-card,
.admin-panel,
.login-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.plan-card {
  position: relative;
}

.plan-card > img,
.promo-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.plan-body,
.promo-card div,
.partner-card,
.values-grid article,
.benefits article,
.form-card {
  padding: 1.25rem;
}

.badge {
  background: var(--accent);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 0.35rem 0.65rem;
  position: absolute;
  right: 0.9rem;
  top: 0.9rem;
  z-index: 2;
}

.category,
.speed strong,
.price,
.benefit-icon,
.promo-card small,
.rank-position,
.player-stats b {
  color: var(--brand);
}

.category,
.speed span,
.upload {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.speed strong {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 0.95;
}

.upload,
.plan-body p,
.plan-body li,
.promo-card p,
.partner-card p,
.player-stats span {
  color: var(--muted);
}

.plan-body ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.included-apps {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0.25rem;
}

.app-logo {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  min-height: 2rem;
  min-width: 4.2rem;
  padding: 0.45rem 0.6rem;
  text-align: center;
  white-space: nowrap;
}

.app-logo-wifi6 {
  background: #e8f6ff;
  border: 1px solid #9ed8ff;
  color: #075f95;
}

.app-logo-sky {
  background: linear-gradient(135deg, #e5007e, #ff7a00);
  color: #fff;
}

.app-logo-deezer {
  background: linear-gradient(135deg, #7a1bff, #ff2d75 45%, #ffb000);
  color: #fff;
}

.app-logo-looke {
  background: #121826;
  color: #35d4ff;
}

.app-logo-disney {
  background: #071a5f;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
}

.app-logo-hbomax {
  background: linear-gradient(135deg, #2b0c75, #8c35ff);
  color: #fff;
}

.price {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  font-weight: 900;
  line-height: 1;
  margin: 1rem 0;
}

.price small {
  color: var(--muted);
  font-size: 0.9rem;
}

.benefits {
  background: #fff;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: clamp(2.8rem, 6vw, 5rem) clamp(1rem, 5vw, 5.5rem);
}

.benefits article {
  box-shadow: none;
}

.benefit-icon {
  font-size: 1.6rem;
}

.split-cta,
.final-cta,
.page-hero,
.partners-strip {
  background: linear-gradient(135deg, #0b5de8, #00a6e8);
  border-radius: 26px;
  box-shadow: var(--shadow);
  color: #fff;
  margin: 0 clamp(1rem, 5vw, 5.5rem);
  padding: clamp(1.7rem, 4vw, 3.2rem);
}

.split-cta {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}

.split-cta h2,
.final-cta h2,
.page-hero h1 {
  color: #fff;
}

.split-cta p,
.final-cta p,
.page-hero p {
  color: rgba(255, 255, 255, 0.86);
}

.split-cta .eyebrow,
.final-cta .eyebrow,
.page-hero .eyebrow {
  color: #fff;
}

.promo-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.promo-card.no-media {
  background: #fff;
}

.promo-card small {
  display: block;
  font-weight: 900;
  margin: 1rem 0;
}

.partners-strip {
  align-items: center;
  background: #fff;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.partners-strip p {
  color: var(--brand);
  font-weight: 900;
  margin: 0;
}

.partners-strip strong {
  background: #eef5ff;
  border-radius: 999px;
  color: var(--brand);
  padding: 0.55rem 0.9rem;
}

.page-hero.compact {
  margin: 0 0 2rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.filters a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 900;
  padding: 0.65rem 1rem;
}

.filters a.active {
  background: var(--brand);
  color: #fff;
}

.about-grid,
.contact-grid {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
}

.about-grid img {
  border-radius: 26px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.partners-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.partner-card img {
  max-height: 90px;
  object-fit: contain;
}

.contact-list {
  border-left: 5px solid var(--brand);
  color: var(--muted);
  padding-left: 1rem;
}

label {
  color: var(--muted);
  display: grid;
  font-weight: 800;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

input,
textarea,
select {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font: inherit;
  padding: 0.82rem;
  width: 100%;
}

.alert {
  border-radius: 12px;
  font-weight: 800;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
}

.alert.success {
  background: #e9f8ef;
  color: #166534;
}

.alert.danger {
  background: #fff0f0;
  color: #991b1b;
}

.ranking-list {
  gap: 0.85rem;
}

.ranking-card {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 70px 88px minmax(0, 1fr) minmax(280px, 0.8fr);
  padding: 1rem;
}

.ranking-card.leader {
  border-color: rgba(0, 102, 255, 0.28);
}

.rank-position {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
}

.player-photo {
  aspect-ratio: 1;
  background: #eef5ff;
  border-radius: 16px;
  display: grid;
  overflow: hidden;
  place-items: center;
}

.player-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.player-photo span {
  color: var(--brand);
  font-size: 1.8rem;
  font-weight: 900;
}

.player-stats {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.player-stats span {
  background: #f7f9fc;
  border-radius: 14px;
  font-weight: 800;
  padding: 0.75rem;
  text-align: center;
}

.player-stats b {
  display: block;
  font-size: 2rem;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 2rem clamp(1rem, 5vw, 5.5rem);
}

.site-footer strong {
  color: var(--ink);
  font-size: 1.4rem;
}

.site-footer a,
.contact-list a {
  color: var(--brand);
  font-weight: 800;
}

.footer-links {
  margin-top: 0.75rem;
}

.footer-links span {
  color: var(--line);
  margin: 0 0.35rem;
}

.legal-content {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 920px;
}

.legal-content article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.legal-content h2 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.legal-content p {
  color: var(--muted);
}

.legal-updated {
  font-size: 0.92rem;
  text-align: center;
}

.policy-consent {
  background: rgba(7, 18, 38, 0.58);
  bottom: 0;
  left: 0;
  padding: 1rem;
  position: fixed;
  right: 0;
  z-index: 60;
}

.policy-consent__panel {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 980px;
  padding: 1rem;
}

.policy-consent strong {
  color: var(--ink);
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.policy-consent p {
  color: var(--muted);
  margin: 0;
}

.policy-consent__links {
  font-size: 0.92rem;
  margin-top: 0.45rem !important;
}

.policy-consent a {
  color: var(--brand);
  font-weight: 800;
}

.policy-consent__links span {
  color: var(--line);
  margin: 0 0.35rem;
}

.floating-whatsapp {
  background: var(--success);
  border-radius: 999px;
  bottom: 1rem;
  box-shadow: 0 12px 28px rgba(32, 177, 90, 0.28);
  color: #fff;
  font-weight: 900;
  padding: 0.85rem 1.15rem;
  position: fixed;
  right: 1rem;
  z-index: 30;
}

.admin-login {
  display: grid;
  min-height: 100vh;
  padding: 1rem;
  place-items: center;
}

.login-card {
  max-width: 420px;
  padding: 1.5rem;
  width: 100%;
}

.login-card h1 {
  font-size: 2.4rem;
}

.admin-body {
  background: #0f172a;
  color: #e5e7eb;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  background: #020617;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  height: 100vh;
  padding: 1.1rem;
  position: sticky;
  top: 0;
}

.admin-sidebar .brand {
  color: #fff;
}

.admin-sidebar nav {
  display: grid;
  gap: 0.4rem;
  margin-top: 2rem;
}

.admin-sidebar nav a,
.admin-sidebar button,
.actions a,
.actions button {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 0.65rem 0.8rem;
}

.admin-sidebar form {
  margin-top: 2rem;
}

.admin-main {
  padding: clamp(1rem, 4vw, 2.5rem);
}

.admin-main > header {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.admin-cards {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.admin-cards article,
.admin-form,
.admin-panel {
  background: #111c31;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem;
}

.admin-cards span {
  color: var(--brand-2);
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
}

.admin-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 820px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--brand-2);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.actions form {
  margin: 0;
}

.actions .danger {
  border-color: rgba(229, 72, 77, 0.45);
  color: #fecaca;
}

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

.check {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.check input {
  width: auto;
}

.admin-body input,
.admin-body textarea,
.admin-body select {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .menu-toggle {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    display: inline-flex;
    font-size: 1.25rem;
    padding: 0.5rem 0.7rem;
  }

  .site-nav {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: none;
    left: 1rem;
    padding: 0.7rem;
    position: absolute;
    right: 1rem;
    top: 100%;
  }

  .site-nav.open {
    display: grid;
  }

  .hero,
  .about-grid,
  .contact-grid,
  .split-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .plans-grid,
  .benefits,
  .values-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .ranking-card {
    grid-template-columns: 60px 78px minmax(0, 1fr);
  }

  .player-stats {
    grid-column: 1 / -1;
  }

  .admin-body {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    height: auto;
    position: relative;
  }

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

  .policy-consent__panel {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.25rem;
  }

  .site-header {
    padding: 0.8rem 1rem;
  }

  .brand {
    font-size: 1.35rem;
  }

  .brand-logo img {
    height: 44px;
    max-width: 58vw;
  }

  .section-title {
    display: block;
  }

  .hero {
    min-height: 680px;
  }

  .form-grid,
  .ranking-card,
  .player-stats {
    grid-template-columns: 1fr;
  }

  .ranking-card {
    text-align: center;
  }

  .player-photo {
    justify-self: center;
    width: 104px;
  }
}
