* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #03133b;
  color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at center, rgba(255, 208, 0, 0.08), transparent 30%),
    linear-gradient(180deg, #03133b 0%, #001a57 100%);
}

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

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  background: linear-gradient(90deg, #153b93 0%, #214ea8 55%, #e58a12 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 72px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: block;
}

.menu {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.channels-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}

.channels-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  font-weight: 800;
  font-size: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,208,0,0.05);
}

.hero-content {
  text-align: center;
}

.hero-content h1 {
  margin: 20px 0 10px;
  font-size: 96px;
  line-height: 0.95;
  font-weight: 900;
  color: #f4ead7;
}

.hero-content h2 {
  max-width: 1100px;
  margin: 0 auto 34px;
  font-size: 34px;
  line-height: 1.35;
  font-weight: 800;
}

.gold {
  color: #ffd54c;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 40px 0 28px;
}

.stat-card {
  border: 1px solid rgba(61, 124, 255, 0.6);
  border-radius: 22px;
  padding: 28px 16px;
  background: rgba(0, 17, 60, 0.5);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset;
}

.stat-card strong {
  display: block;
  font-size: 54px;
  color: #ffd54c;
  margin-bottom: 10px;
  font-weight: 900;
}

.stat-card span {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.compatibility {
  font-size: 20px;
  margin: 26px 0 34px;
  color: #f2f4f8;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 62px;
  padding: 0 26px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.18);
  text-align: center;
}

.btn-gold {
  background: #e8c44b;
  color: #000000;
}

.btn-blue {
  background: #2f6fd6;
  color: #ffffff;
}

.demo-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 18px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(86,55,33,0.48), rgba(82,36,58,0.38));
  border: 1px solid rgba(255,196,0,0.25);
}

.demo-box a {
  display: block;
  text-decoration: none;
  color: #ffd54c;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 8px;
}

.demo-box small {
  color: #ffffff;
  font-size: 16px;
}

.page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px 80px;
}

.page-title {
  text-align: center;
  margin: 10px 0 14px;
  font-size: 54px;
  line-height: 1.05;
  color: #f4ead7;
  font-weight: 900;
}

.page-subtitle {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 34px;
  color: #dfe7ff;
  font-size: 18px;
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  border: 1px solid rgba(61, 124, 255, 0.6);
  border-radius: 22px;
  padding: 26px 22px;
  background: rgba(0, 17, 60, 0.55);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset;
}

.price-card h2 {
  margin: 0 0 18px;
  font-size: 30px;
  color: #ffd54c;
  font-weight: 900;
  text-align: center;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 17px;
  line-height: 1.4;
}

.price-list li:last-child {
  border-bottom: none;
}

.price-label {
  color: #ffffff;
  font-weight: 700;
}

.price-value {
  color: #ffd54c;
  font-weight: 900;
  white-space: nowrap;
}

.page-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.page-note {
  max-width: 980px;
  margin: 34px auto 0;
  text-align: center;
  color: #d7def6;
  font-size: 15px;
  line-height: 1.6;
}

.contact-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 34px 24px 80px;
}

.contact-card {
  border: 1px solid rgba(61, 124, 255, 0.6);
  border-radius: 24px;
  padding: 28px;
  background: rgba(0, 17, 60, 0.55);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset;
}

.contact-card h1 {
  margin: 0 0 10px;
  text-align: center;
  font-size: 44px;
  color: #f4ead7;
}

.contact-card p {
  text-align: center;
  color: #dfe7ff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.18);
}

.contact-actions .wa {
  background: #25d366;
  color: #ffffff;
}

.contact-actions .back {
  background: #2f6fd6;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 72px;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .stat-card strong {
    font-size: 42px;
  }

  .stat-card span {
    font-size: 20px;
  }

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

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px;
  }

  .brand {
    justify-content: center;
    width: 100%;
  }

  .brand-logo {
    height: 64px;
  }

  .menu {
    width: 100%;
    justify-content: center;
    gap: 12px 18px;
  }

  .menu a {
    font-size: 13px;
  }

  .hero {
    padding: 28px 16px 56px;
  }

  .channels-strip {
    gap: 10px;
    margin-bottom: 24px;
  }

  .channels-strip span {
    min-width: auto;
    padding: 10px 14px;
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 48px;
    line-height: 1;
    margin: 10px 0 12px;
  }

  .hero-content h2 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 24px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 28px 0 22px;
  }

  .stat-card {
    padding: 22px 14px;
    border-radius: 18px;
  }

  .stat-card strong {
    font-size: 40px;
  }

  .stat-card span {
    font-size: 18px;
  }

  .compatibility {
    font-size: 16px;
    margin: 20px 0 26px;
    line-height: 1.5;
  }

  .cta-row {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    font-size: 16px;
    padding: 0 18px;
  }

  .demo-box {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .demo-box a {
    font-size: 20px;
    line-height: 1.3;
  }

  .demo-box small {
    font-size: 14px;
    line-height: 1.4;
  }

  .page-wrap {
    padding: 28px 16px 56px;
  }

  .page-title {
    font-size: 34px;
  }

  .page-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .price-card {
    padding: 20px 16px;
  }

  .price-card h2 {
    font-size: 24px;
  }

  .price-list li {
    font-size: 15px;
    padding: 12px 0;
  }

  .page-note {
    font-size: 14px;
  }

  .contact-wrap {
    padding: 28px 16px 56px;
  }

  .contact-card {
    padding: 22px 16px;
  }

  .contact-card h1 {
    font-size: 32px;
  }

  .contact-card p {
    font-size: 16px;
  }

  .contact-actions a {
    min-height: 54px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 14px 12px;
  }

  .brand-logo {
    height: 56px;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
  }

  .menu a {
    font-size: 13px;
  }

  .hero {
    padding: 22px 12px 44px;
  }

  .channels-strip {
    gap: 8px;
  }

  .channels-strip span {
    font-size: 12px;
    padding: 9px 12px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content h2 {
    font-size: 18px;
  }

  .stat-card strong {
    font-size: 34px;
  }

  .stat-card span {
    font-size: 16px;
  }

  .compatibility {
    font-size: 15px;
  }

  .btn {
    font-size: 15px;
  }

  .demo-box a {
    font-size: 18px;
  }

  .demo-box small {
    font-size: 13px;
  }

  .page-title {
    font-size: 28px;
  }

  .price-card h2 {
    font-size: 22px;
  }

  .price-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-value {
    white-space: normal;
  }
}
