:root {
  --bg: #1a1916;
  --fg: #f6f3ec;
  --gold: #fff200;
  --gold-dark: #ffe600;
  --gold-gradient: linear-gradient(135deg, #ffff55, #ffe600);
  --card: #2a2823;
  --muted: #a8a49a;
  --border: #3d3a33;
  --header: rgba(26, 25, 22, 0.9);
  --shadow-gold: 0 18px 50px -12px rgba(255, 242, 0, 0.85);
  --shadow-card: 0 20px 50px -25px rgba(0, 0, 0, 0.8);
  --radius: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  min-height: 100vh;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.wrap {
  width: min(1152px, calc(100% - 40px));
  margin-inline: auto;
}

.gold {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: scale(1.03);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--bg);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 242, 0), 0.8);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(255, 242, 0), 0.12);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(61, 58, 51, 0.6);
  background: var(--header);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

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

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.header-cta {
  padding: 8px 20px;
  font-size: 14px;
}

.menu-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-mobile.open {
  display: flex;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  opacity: 0.45;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--bg) 38%, transparent 92%);
}

.hero-content {
  position: relative;
  padding: 96px 0 128px;
}

.kicker {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.hero h1 {
  margin-top: 16px;
  max-width: 680px;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 0.95;
}

.hero p {
  margin-top: 24px;
  max-width: 520px;
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-actions .btn {
  padding: 12px 28px;
  font-size: 16px;
}

/* Cards / sections */
.section {
  padding: 56px 0;
}

.cards-3 {
  display: grid;
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.card svg {
  color: var(--gold);
}

.card h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  text-transform: none;
  font-family: "Barlow", system-ui, sans-serif;
}

.card p {
  margin-top: 8px;
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-head svg {
  color: var(--gold);
}

.section-head h2,
.section h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
}

.section-lead {
  margin-top: 12px;
  color: var(--muted);
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.plan {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(61, 58, 51, 0.6);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease;
}

.plan:hover {
  transform: translateY(-4px);
}

.plan.featured {
  border-color: var(--gold);
}

.badge {
  position: absolute;
  top: 12px;
  border-radius: 999px;
  background: var(--gold-gradient);
  color: var(--bg);
  padding: 2px 12px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-speed {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.plan-unit {
  margin-top: 4px;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.plan-price {
  margin-top: 16px;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}

.plan-price small {
  font-size: 14px;
}

.plan .btn {
  margin-top: 16px;
  padding: 6px 16px;
  font-size: 12px;
}

/* TV */
.tv-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.tv-card {
  border: 1px solid rgba(255, 242, 0), 0.4);
}

.tv-tag {
  display: inline-block;
  border-radius: 8px;
  background: var(--gold-gradient);
  color: var(--bg);
  padding: 4px 16px;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.tv-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.tv-row span {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
}

.tv-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
}

.tv-check svg {
  color: var(--gold);
}

.tv-card .btn {
  width: 100%;
  margin-top: 24px;
  padding: 12px;
}

/* Contact */
.contact-box {
  border: 1px solid rgba(255, 242, 0), 0.45);
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
}

.contact-box p {
  margin-top: 12px;
  color: var(--muted);
}

.units {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 520px;
  margin-inline: auto;
  text-align: left;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.unit-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  color: #111;
  transition: background 0.15s ease;
}

.unit-link:hover {
  background: #f6f6f6;
}

.unit-link + .unit-link {
  border-top: 1px solid #ececec;
}

.unit-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f3f3f3;
  flex-shrink: 0;
}

.unit-title {
  font-size: 16px;
  font-weight: 700;
  color: #2563eb;
}

.unit-sub {
  font-size: 14px;
  color: #111;
}

/* Company */
.company-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.company-grid h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
  font-family: "Barlow", system-ui, sans-serif;
}

.company-grid h3 svg {
  color: var(--gold);
}

.company-grid ul {
  margin-top: 16px;
  list-style: none;
  font-size: 14px;
  color: var(--muted);
}

.company-grid li + li {
  margin-top: 6px;
}

/* Footer */
.footer {
  background: var(--gold-gradient);
  color: var(--bg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  text-align: center;
}

.footer-links {
  font-size: 14px;
  font-weight: 600;
}

.footer-links p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-links p + p {
  margin-top: 8px;
}

.footer-phones {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.footer-phones small {
  display: block;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  background: #111;
}

.legal {
  border-top: 1px solid rgba(26, 25, 22, 0.2);
  padding: 16px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.65);
}

.modal.open {
  display: grid;
}

.modal-box {
  width: min(440px, 100%);
  background: #fff;
  color: #111;
  border-radius: 16px;
  overflow: hidden;
}

.modal-head {
  padding: 20px 20px 8px;
}

.modal-head h3 {
  font-size: 22px;
  color: #111;
  text-transform: none;
}

.modal-head p {
  margin-top: 4px;
  color: #666;
  font-size: 14px;
}

.modal .unit-link {
  width: 100%;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.modal-close {
  display: block;
  width: 100%;
  padding: 14px;
  border: 0;
  border-top: 1px solid #ececec;
  background: #fafafa;
  font-weight: 600;
  cursor: pointer;
}

@media (min-width: 640px) {
  .plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .hero-content {
    padding: 128px 0;
  }

  .cards-3,
  .company-grid,
  .tv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-links p {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .plans {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
