:root {
  --bg: #ffffff;
  --bg-soft: #f7fbff;
  --bg-mint: #eefdf7;
  --text: #081633;
  --muted: #64748b;
  --line: #e2e8f0;
  --card: #ffffff;
  --mint: #29d391;
  --mint-dark: #0ca678;
  --blue: #1e88ff;
  --purple: #8b5cf6;
  --cyan: #20c7f4;
  --orange: #f59e0b;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --shadow-small: 0 12px 30px rgba(15, 23, 42, 0.07);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(41, 211, 145, 0.13), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(139, 92, 246, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 45%, #ffffff 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section-padding {
  padding: 88px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 15% 20%, rgba(41, 211, 145, 0.09), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(30, 136, 255, 0.08), transparent 26%),
    var(--bg-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--mint-dark);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  box-shadow: 0 0 0 6px rgba(41, 211, 145, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 18px 34px rgba(30, 136, 255, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-small);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint), var(--blue) 55%, var(--purple));
  box-shadow: 0 14px 32px rgba(41, 211, 145, 0.25);
}

.brand-text {
  font-size: 24px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--blue));
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(30, 136, 255, 0.2);
}

/* Hero */
.hero {
  padding-top: 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 58px;
}

.hero-content h1 {
  max-width: 620px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.hero-content h1::selection,
.hero-content h1 span::selection {
  background: rgba(41, 211, 145, 0.28);
}

.hero-content h1 {
  background: linear-gradient(135deg, #07152f 10%, #10295c 42%, #1e88ff 68%, #8b5cf6 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 9px 13px;
  color: #0f766e;
  background: rgba(41, 211, 145, 0.11);
  border: 1px solid rgba(41, 211, 145, 0.24);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -30px -20px auto auto;
  width: 430px;
  height: 430px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(41, 211, 145, 0.24), rgba(30, 136, 255, 0.14) 52%, transparent 72%);
  filter: blur(4px);
  z-index: -1;
}

.tv-mockup {
  position: relative;
  width: 100%;
  min-height: 350px;
  padding: 18px;
  overflow: hidden;
  border: 10px solid #111827;
  border-radius: 24px;
  background:
    linear-gradient(rgba(7, 21, 47, 0.12), rgba(7, 21, 47, 0.18)),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.55), transparent 32%),
    radial-gradient(circle at 35% 20%, rgba(41, 211, 145, 0.48), transparent 30%),
    linear-gradient(135deg, #0b1227, #102a5c);
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.18);
}

.tv-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-brand span {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--mint), var(--blue), var(--purple));
}

.mini-nav {
  display: flex;
  gap: 16px;
  opacity: 0.82;
}

.tv-hero {
  min-height: 160px;
  display: flex;
  align-items: center;
  padding: 24px;
  color: #ffffff;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(5, 12, 32, 0.85), rgba(5, 12, 32, 0.28)),
    radial-gradient(circle at 80% 35%, rgba(41, 211, 145, 0.72), transparent 20%),
    radial-gradient(circle at 55% 25%, rgba(139, 92, 246, 0.72), transparent 24%),
    linear-gradient(135deg, #10295c, #0f172a);
}

.live-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.tv-hero h2 {
  max-width: 330px;
  font-size: 28px;
  line-height: 1.08;
  margin-bottom: 10px;
}

.tv-hero p {
  max-width: 370px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.tv-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.tv-cards div {
  padding: 14px 12px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.tv-cards strong,
.tv-cards small {
  display: block;
}

.tv-cards small {
  opacity: 0.72;
}

.tablet-mockup,
.phone-mockup,
.stream-box {
  position: absolute;
  background: #0f172a;
  border: 7px solid #111827;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.24);
}

.tablet-mockup {
  left: -8px;
  bottom: 58px;
  width: 180px;
  height: 118px;
  padding: 12px;
  border-radius: 20px;
}

.tablet-mockup span,
.phone-mockup span {
  display: block;
  height: 22px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mint), var(--blue), var(--purple));
}

.tablet-mockup span:nth-child(2),
.phone-mockup span:nth-child(2) {
  width: 72%;
  background: linear-gradient(135deg, #f59e0b, #8b5cf6);
}

.tablet-mockup span:nth-child(3),
.phone-mockup span:nth-child(3) {
  width: 86%;
  background: linear-gradient(135deg, #1e88ff, #20c7f4);
}

.phone-mockup {
  right: -12px;
  bottom: 42px;
  width: 92px;
  height: 168px;
  padding: 10px;
  border-radius: 22px;
}

.stream-box {
  left: 47%;
  bottom: 16px;
  width: 142px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  transform: rotate(-4deg);
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-small);
}

.icon-box {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(30, 136, 255, 0.1), rgba(41, 211, 145, 0.14));
  border-radius: 16px;
  font-size: 24px;
}

.trust-card h3 {
  font-size: 17px;
  margin-bottom: 2px;
}

.trust-card p {
  color: var(--muted);
  font-size: 14px;
}

/*16px;
  font-size:  Sections */
.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

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

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.step-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(41, 211, 145, 0.16), transparent 68%);
}

.step-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 900;
  font-size: 14px;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--muted);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.device-card:hover,
.tutorial-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 17px;
  font-size: 24px;
}

.feature-icon.blue {
  color: var(--blue);
  background: rgba(30, 136, 255, 0.1);
}

.feature-icon.purple {
  color: var(--purple);
  background: rgba(139, 92, 246, 0.1);
}

.feature-icon.green {
  color: var(--mint-dark);
  background: rgba(41, 211, 145, 0.13);
}

.feature-icon.orange {
  color: var(--orange);
  background: rgba(245, 158, 11, 0.12);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
}

/* Devices */
.devices-grid,
.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.device-card,
.tutorial-card {
  min-height: 170px;
  padding: 22px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-small);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.device-card h3 {
  font-size: 15px;
  margin-top: 16px;
}

.device-visual {
  position: relative;
  width: 86px;
  height: 70px;
  margin: 0 auto;
  border-radius: 18px;
  background: #f1f5f9;
}

.tv-icon {
  border: 6px solid #0f172a;
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--mint));
}

.tv-icon::after {
  content: "";
  position: absolute;
  left: 30%;
  bottom: -13px;
  width: 40%;
  height: 6px;
  border-radius: 999px;
  background: #0f172a;
}

.stick-icon::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 22px;
  width: 46px;
  height: 22px;
  border-radius: 8px;
  background: #111827;
}

.stick-icon::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 8px;
  width: 26px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, #111827, #475569);
}

.android-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #62c554;
  background: rgba(98, 197, 84, 0.12);
  font-size: 42px;
}

.apple-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #111827;
  font-size: 26px;
  font-weight: 900;
}

.phone-icon::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 8px;
  width: 28px;
  height: 54px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.phone-icon::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 14px;
  width: 33px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #111827, #64748b);
}

.laptop-icon::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 62px;
  height: 42px;
  border: 5px solid #111827;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #dbeafe);
}

.laptop-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 8px;
  width: 72px;
  height: 7px;
  border-radius: 999px;
  background: #111827;
}

/* Pricing */
.pricing-switch-wrap {
  position: relative;
}

.pricing-switch-wrap input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pricing-switch {
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin: -10px auto 34px;
  padding: 6px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-small);
}

.pricing-switch label {
  min-width: 180px;
  padding: 11px 18px;
  text-align: center;
  color: var(--muted);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s ease;
}

#single:checked ~ .pricing-switch label[for="single"],
#multi:checked ~ .pricing-switch label[for="multi"] {
  color: #ffffff;
  background: linear-gradient(135deg, var(--mint), var(--blue), var(--purple));
  box-shadow: 0 14px 26px rgba(30, 136, 255, 0.2);
}

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

#single:checked ~ .pricing-groups .single-prices {
  display: grid;
}

#multi:checked ~ .pricing-groups .multi-prices {
  display: grid;
}

.price-card {
  position: relative;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card.popular {
  border-color: rgba(30, 136, 255, 0.5);
  box-shadow:
    0 24px 65px rgba(30, 136, 255, 0.13),
    inset 0 0 0 1px rgba(41, 211, 145, 0.18);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  display: inline-flex;
  padding: 7px 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.price-card h3 {
  margin-bottom: 8px;
  color: #334155;
  font-size: 21px;
}

.price {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.price span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin-bottom: 24px;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.price-card li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  border-radius: 999px;
  font-size: 12px;
}

.price-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid rgba(30, 136, 255, 0.28);
  border-radius: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(30, 136, 255, 0.13);
}

.price-btn.filled {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.guarantee-note {
  margin-top: 26px;
  text-align: center;
  color: #0f766e;
  font-weight: 800;
}

/* Tutorials */
.tutorial-card {
  display: block;
}

.tutorial-card span {
  display: block;
  margin-bottom: 12px;
  font-size: 40px;
}

.tutorial-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.tutorial-card p {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

/* FAQ */
.faq-container {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-small);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 20px 52px 20px 22px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 22px 20px;
  color: var(--muted);
}

/* CTA */
.final-cta {
  padding: 72px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(41, 211, 145, 0.2), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(139, 92, 246, 0.18), transparent 30%),
    linear-gradient(135deg, #eefdf7, #f5f7ff);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 720px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

/* Footer */
.site-footer {
  padding: 64px 0 26px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 42px;
}

.footer-brand p,
.site-footer p {
  color: var(--muted);
}

.footer-brand p {
  max-width: 340px;
  margin-top: 16px;
}

.site-footer h3 {
  margin-bottom: 16px;
  font-size: 16px;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.site-footer a:not(.brand):hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  font-size: 14px;
}

.payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.payment-tags span {
  padding: 7px 10px;
  color: #334155;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 1100px) {
  .main-nav {
    gap: 15px;
  }

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

  .hero-visual {
    max-width: 760px;
    margin: 0 auto;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .devices-grid,
  .tutorial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: auto;
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .brand {
    order: 1;
  }

  .header-cta {
    order: 2;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 42px;
  }

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

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .trust-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .tablet-mockup,
  .phone-mockup,
  .stream-box {
    display: none;
  }

  .final-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-padding {
    padding: 64px 0;
  }

  .hero-content h1 {
    font-size: clamp(38px, 14vw, 56px);
  }

  .hero-description,
  .section-heading p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  .tv-mockup {
    min-height: 330px;
    border-width: 7px;
    padding: 14px;
  }

  .mini-nav {
    display: none;
  }

  .tv-hero {
    padding: 18px;
  }

  .tv-hero h2 {
    font-size: 24px;
  }

  .trust-card {
    align-items: flex-start;
  }

  .features-grid,
  .pricing-grid,
  .devices-grid,
  .tutorial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-switch {
    width: 100%;
  }

  .pricing-switch label {
    min-width: auto;
    font-size: 12px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Inner Pages */
.inner-hero {
  padding: 76px 0 84px;
  background:
    radial-gradient(circle at 14% 14%, rgba(41, 211, 145, 0.16), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(139, 92, 246, 0.13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--line);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
}

.inner-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.7vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  background: linear-gradient(135deg, #07152f 10%, #10295c 45%, #1e88ff 70%, #8b5cf6 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.inner-hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 30px;
}

.inner-hero-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.inner-hero-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.clean-list {
  display: grid;
  gap: 13px;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 30px;
  color: #334155;
  font-weight: 750;
}

.clean-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

/* Guide Cards */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.guide-card {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.guide-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(41, 211, 145, 0.13), rgba(30, 136, 255, 0.1));
  border-radius: 20px;
  font-size: 34px;
}

.guide-card h2 {
  margin-bottom: 10px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.guide-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.guide-card ol {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: #334155;
  font-weight: 650;
}

.guide-card li::marker {
  color: var(--blue);
  font-weight: 900;
}

/* Policy */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.policy-card {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.policy-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.policy-card h2 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.policy-card p {
  color: var(--muted);
}

/* Contact / Forms */
.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 46px;
}

.form-layout h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.form-layout p {
  color: var(--muted);
  font-size: 17px;
}

.support-note {
  margin-top: 26px;
  padding: 18px;
  color: #0f766e;
  background: rgba(41, 211, 145, 0.11);
  border: 1px solid rgba(41, 211, 145, 0.22);
  border-radius: 18px;
  font-weight: 700;
}

.mint-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.mint-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 900;
}

.mint-form input,
.mint-form select,
.mint-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  color: var(--text);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mint-form textarea {
  min-height: 140px;
  padding-top: 14px;
  resize: vertical;
}

.mint-form input:focus,
.mint-form select:focus,
.mint-form textarea:focus {
  background: #ffffff;
  border-color: rgba(30, 136, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(30, 136, 255, 0.1);
}

.mint-form .btn {
  border: 0;
  cursor: pointer;
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card {
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.contact-card h2 {
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-card a {
  color: var(--blue);
  font-weight: 900;
}

/* Responsive for inner pages */
@media (max-width: 1100px) {
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-layout,
  .inner-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .inner-hero {
    padding: 56px 0 64px;
  }

  .guide-grid,
  .policy-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .inner-hero h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .mint-form {
    padding: 22px;
  }
}

/* Channels Page */
.channel-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.channel-card {
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.channel-card:hover,
.region-card:hover,
.business-card:hover,
.credit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.channel-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(41, 211, 145, 0.13), rgba(30, 136, 255, 0.1));
  border-radius: 20px;
  font-size: 32px;
}

.channel-card h2 {
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.channel-card p {
  color: var(--muted);
}

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

.region-card {
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-small);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.region-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.region-card p {
  color: var(--muted);
}

.content-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 38px;
  background:
    radial-gradient(circle at 12% 12%, rgba(41, 211, 145, 0.17), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(139, 92, 246, 0.14), transparent 30%),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.content-note h2 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.content-note p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

/* Business / Reseller / Restream */
.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.business-card {
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-card h2 {
  margin-bottom: 10px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.business-card p {
  color: var(--muted);
}

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

.credit-card {
  position: relative;
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.credit-card.popular {
  border-color: rgba(30, 136, 255, 0.5);
  box-shadow:
    0 24px 65px rgba(30, 136, 255, 0.13),
    inset 0 0 0 1px rgba(41, 211, 145, 0.18);
}

.credit-card h2 {
  margin-bottom: 8px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.credit-price {
  margin-bottom: 8px;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.055em;
  color: var(--text);
}

.credit-card > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

/* Restream Table */
.restream-table-wrap {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.restream-table {
  width: 100%;
  border-collapse: collapse;
}

.restream-table th,
.restream-table td {
  padding: 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.restream-table th {
  color: #334155;
  background: #f8fafc;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.restream-table td {
  color: #334155;
  font-weight: 700;
}

.restream-table tr:last-child td {
  border-bottom: 0;
}

.restream-table a {
  display: inline-flex;
  padding: 10px 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
}

/* Responsive for new pages */
@media (max-width: 1100px) {
  .channel-category-grid,
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-grid,
  .credit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .channel-category-grid,
  .regions-grid,
  .business-grid,
  .credit-grid {
    grid-template-columns: 1fr;
  }

  .content-note {
    padding: 26px;
  }

  .restream-table-wrap {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .restream-table,
  .restream-table thead,
  .restream-table tbody,
  .restream-table th,
  .restream-table td,
  .restream-table tr {
    display: block;
  }

  .restream-table thead {
    display: none;
  }

  .restream-table tr {
    margin-bottom: 16px;
    padding: 18px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-small);
  }

  .restream-table td {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .restream-table td:last-child {
    border-bottom: 0;
  }

  .restream-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 900;
  }
}

/* Legal Pages */
.legal-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.legal-card {
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.legal-card.highlight-legal {
  border-color: rgba(41, 211, 145, 0.45);
  background:
    radial-gradient(circle at 18% 16%, rgba(41, 211, 145, 0.13), transparent 34%),
    #ffffff;
  box-shadow:
    0 24px 65px rgba(41, 211, 145, 0.13),
    inset 0 0 0 1px rgba(30, 136, 255, 0.08);
}

.legal-kicker {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.legal-card h2 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.legal-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.inline-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--blue);
  font-weight: 900;
}

.inline-link:hover {
  color: var(--purple);
}

@media (max-width: 1100px) {
  .legal-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
}