/* ================================================================
   HIGNOVA — Design DNA
   Inspired by: saastream.net (Material Design / Clean Corporate)
   Colors: Primary Blue #1a73e8, Purple #5d46e1, Dark #0f0a2e
   Fonts: Plus Jakarta Sans (display) + Inter (body)
   Prefix: hn-*
   ================================================================ */

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  --hn-primary: #1a73e8;
  --hn-primary-hover: #1557b0;
  --hn-accent: #5d46e1;
  --hn-accent-hover: #4c38c4;
  --hn-accent-glow: rgba(93, 70, 225, 0.3);
  --hn-bg: #ffffff;
  --hn-bg-alt: #f9fafb;
  --hn-bg-dark: #0f0a2e;
  --hn-bg-dark-card: rgba(255, 255, 255, 0.03);
  --hn-text: #202124;
  --hn-text-muted: #5f6368;
  --hn-text-light: #a0aec0;
  --hn-text-white: #ffffff;
  --hn-border: #e8eaed;
  --hn-border-accent: #6366f1;
  --hn-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --hn-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --hn-shadow-accent: 0 10px 30px -10px rgba(93, 70, 225, 0.3);
  --hn-radius: 12px;
  --hn-radius-lg: 20px;
  --hn-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --hn-font-display: 'Plus Jakarta Sans', sans-serif;
  --hn-font-body: 'Inter', sans-serif;
  --hn-max-width: 1200px;
}

/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--hn-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--hn-text);
  background: var(--hn-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--hn-transition); }
ul, ol { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

.hn-container {
  width: 100%;
  max-width: var(--hn-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.hn-section {
  padding: 80px 0;
}

.hn-section--dark {
  background: var(--hn-bg-dark);
  color: var(--hn-text-white);
}

.hn-section--alt {
  background: var(--hn-bg-alt);
}

/* ── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--hn-font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--hn-text);
}

.hn-section--dark h1,
.hn-section--dark h2,
.hn-section--dark h3 {
  color: var(--hn-text-white);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.hn-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.hn-section-header p {
  color: var(--hn-text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0.75rem auto 0;
}

.hn-section--dark .hn-section-header p {
  color: var(--hn-text-light);
}

.hn-accent-text { color: var(--hn-primary); }
.hn-accent-purple { color: var(--hn-accent); }

/* ── Buttons ───────────────────────────────────────────────────── */
.hn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--hn-font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--hn-transition);
  text-align: center;
  line-height: 1.4;
  gap: 8px;
  min-height: 48px;
}

.hn-btn--primary {
  background: var(--hn-primary);
  color: var(--hn-text-white);
}
.hn-btn--primary:hover {
  background: var(--hn-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.35);
}

.hn-btn--accent {
  background: var(--hn-accent);
  color: var(--hn-text-white);
}
.hn-btn--accent:hover {
  background: var(--hn-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--hn-shadow-accent);
}

.hn-btn--outline {
  background: transparent;
  border: 2px solid var(--hn-primary);
  color: var(--hn-primary);
}
.hn-btn--outline:hover {
  background: var(--hn-primary);
  color: var(--hn-text-white);
}

.hn-btn--white {
  background: var(--hn-text-white);
  color: var(--hn-primary);
}
.hn-btn--white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.hn-btn--block { width: 100%; }
.hn-btn--lg { padding: 16px 40px; font-size: 1.1rem; }

/* ── Nav ───────────────────────────────────────────────────────── */
.hn-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hn-border);
  padding: 0 20px;
}

.hn-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--hn-max-width);
  margin: 0 auto;
  height: 72px;
}

.hn-nav__logo {
  font-family: var(--hn-font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--hn-text);
  letter-spacing: -0.5px;
}
.hn-nav__logo span {
  color: var(--hn-primary);
}

.hn-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hn-nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--hn-text-muted);
  position: relative;
}
.hn-nav__links a:hover,
.hn-nav__links a.active {
  color: var(--hn-primary);
}

.hn-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hn-primary);
  transition: var(--hn-transition);
}
.hn-nav__links a:hover::after,
.hn-nav__links a.active::after {
  width: 100%;
}

.hn-nav__cta {
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
}

.hn-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hn-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hn-text);
  transition: var(--hn-transition);
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hn-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #f8fbff 0%, var(--hn-bg) 100%);
}

.hn-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hn-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 115, 232, 0.08);
  color: var(--hn-primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hn-hero h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hn-hero h1 span {
  color: var(--hn-primary);
}

.hn-hero__text {
  font-size: 1.15rem;
  color: var(--hn-text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hn-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hn-hero__image {
  position: relative;
}
.hn-hero__image img {
  border-radius: var(--hn-radius-lg);
  box-shadow: var(--hn-shadow-lg);
}

/* ── Features Grid ─────────────────────────────────────────────── */
.hn-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hn-feature-card {
  background: var(--hn-bg);
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius);
  padding: 32px;
  transition: var(--hn-transition);
}
.hn-feature-card:hover {
  border-color: var(--hn-border-accent);
  box-shadow: var(--hn-shadow-lg);
  transform: translateY(-4px);
}

.hn-feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(26, 115, 232, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--hn-primary);
}

.hn-feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.hn-feature-card p {
  color: var(--hn-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Trust/Why Section (6-grid) ────────────────────────────────── */
.hn-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hn-trust-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--hn-radius);
  background: var(--hn-bg);
  border: 1px solid var(--hn-border);
  transition: var(--hn-transition);
}
.hn-trust-item:hover {
  border-color: var(--hn-primary);
  box-shadow: var(--hn-shadow);
}

.hn-trust-item__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.hn-trust-item h4 {
  margin-bottom: 8px;
}

.hn-trust-item p {
  color: var(--hn-text-muted);
  font-size: 0.9rem;
}

/* ── Steps ─────────────────────────────────────────────────────── */
.hn-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hn-step {
  text-align: center;
  padding: 32px 24px;
}

.hn-step__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--hn-primary);
  color: var(--hn-text-white);
  font-family: var(--hn-font-display);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.hn-step h3 {
  margin-bottom: 10px;
}

.hn-step p {
  color: var(--hn-text-muted);
  font-size: 0.95rem;
}

/* ── Pricing Cards ─────────────────────────────────────────────── */
.hn-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.hn-pricing-card {
  background: var(--hn-bg);
  border: 2px solid var(--hn-border);
  border-radius: var(--hn-radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--hn-transition);
  position: relative;
}
.hn-pricing-card:hover {
  border-color: var(--hn-border-accent);
  box-shadow: var(--hn-shadow-lg);
  transform: translateY(-4px);
}

.hn-pricing-card--popular {
  border-color: var(--hn-accent);
  box-shadow: var(--hn-shadow-accent);
  transform: scale(1.03);
}
.hn-pricing-card--popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.hn-pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hn-accent);
  color: var(--hn-text-white);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hn-pricing-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--hn-text);
}

.hn-pricing-card__price {
  font-family: var(--hn-font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--hn-text);
  line-height: 1;
  margin-bottom: 4px;
}
.hn-pricing-card__price .hn-currency {
  font-size: 1.5rem;
  vertical-align: super;
}
.hn-pricing-card__price .hn-cents {
  font-size: 1.25rem;
  vertical-align: super;
}

.hn-pricing-card__old {
  font-size: 0.9rem;
  color: var(--hn-text-muted);
  text-decoration: line-through;
  margin-bottom: 16px;
}

.hn-pricing-card__features {
  text-align: left;
  margin: 20px 0;
  padding: 0;
}
.hn-pricing-card__features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--hn-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.hn-pricing-card__features li::before {
  content: '\2713';
  color: var(--hn-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Stats Bar ─────────────────────────────────────────────────── */
.hn-stats {
  background: var(--hn-primary);
  padding: 40px 0;
}

.hn-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  color: var(--hn-text-white);
}

.hn-stats__value {
  font-family: var(--hn-font-display);
  font-size: 2.5rem;
  font-weight: 800;
}

.hn-stats__label {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 4px;
}

/* ── Sports Section ────────────────────────────────────────────── */
.hn-sports {
  background: var(--hn-bg-dark);
  padding: 80px 0;
  color: var(--hn-text-white);
  overflow: hidden;
}

.hn-sports__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hn-sports h2 {
  color: var(--hn-text-white);
  margin-bottom: 16px;
}

.hn-sports p {
  color: var(--hn-text-light);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hn-sports__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hn-sports__images img {
  border-radius: var(--hn-radius);
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ── Trust Badges ──────────────────────────────────────────────── */
.hn-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.hn-badges img {
  height: 50px;
  opacity: 0.8;
  transition: var(--hn-transition);
}
.hn-badges img:hover { opacity: 1; }

/* ── Testimonials ──────────────────────────────────────────────── */
.hn-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hn-testimonial {
  background: var(--hn-bg);
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius);
  padding: 28px;
  transition: var(--hn-transition);
}
.hn-testimonial:hover {
  box-shadow: var(--hn-shadow-lg);
  border-color: var(--hn-border-accent);
}

.hn-testimonial__stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 12px;
}

.hn-testimonial__text {
  font-size: 0.95rem;
  color: var(--hn-text-muted);
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.65;
}

.hn-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hn-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.hn-testimonial__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.hn-testimonial__role {
  font-size: 0.8rem;
  color: var(--hn-text-muted);
}

/* ── FAQ Accordion ─────────────────────────────────────────────── */
.hn-faq {
  background: var(--hn-bg-dark);
  padding: 80px 0;
  border-radius: var(--hn-radius-lg);
}

.hn-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.hn-faq__item {
  background: var(--hn-bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--hn-transition);
}
.hn-faq__item:hover {
  border-color: var(--hn-accent);
  background: rgba(93, 70, 225, 0.05);
}
.hn-faq__item.active {
  border-color: var(--hn-accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--hn-shadow-accent);
}

.hn-faq__trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--hn-text-white);
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--hn-font-display);
  outline: none;
}

.hn-faq__icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--hn-accent);
}
.hn-faq__item.active .hn-faq__icon {
  transform: rotate(45deg);
}

.hn-faq__answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--hn-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}
.hn-faq__item.active .hn-faq__answer {
  display: block;
}

/* ── Footer ────────────────────────────────────────────────────── */
.hn-footer {
  background: var(--hn-bg-dark);
  color: var(--hn-text-light);
  padding: 60px 0 0;
}

.hn-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hn-footer__brand .hn-nav__logo {
  font-size: 1.5rem;
  margin-bottom: 14px;
  display: inline-block;
}

.hn-footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.hn-footer h4 {
  color: var(--hn-text-white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.hn-footer__links a {
  display: block;
  font-size: 0.9rem;
  color: var(--hn-text-light);
  padding: 4px 0;
}
.hn-footer__links a:hover {
  color: var(--hn-primary);
}

.hn-footer__bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.hn-footer__payment {
  margin-top: 16px;
}
.hn-footer__payment img {
  height: 32px;
  opacity: 0.7;
  display: inline-block;
}

/* ── Forms ──────────────────────────────────────────────────────── */
.hn-form {
  max-width: 560px;
  margin: 0 auto;
}

.hn-form__group {
  margin-bottom: 18px;
}

.hn-form__label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--hn-text);
}

.hn-section--dark .hn-form__label {
  color: var(--hn-text-white);
}

.hn-form__input,
.hn-form__select,
.hn-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--hn-border);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--hn-bg);
  color: var(--hn-text);
  transition: var(--hn-transition);
  min-height: 48px;
}
.hn-form__input:focus,
.hn-form__select:focus,
.hn-form__textarea:focus {
  outline: none;
  border-color: var(--hn-primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.hn-form__textarea { min-height: 120px; resize: vertical; }

.hn-form__honeypot { position: absolute; left: -9999px; opacity: 0; }

.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-message--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-message--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.hn-form__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--hn-text-muted);
  margin-top: 10px;
}

/* ── Trial Form (compact) ──────────────────────────────────────── */
.hn-trial {
  background: var(--hn-bg-alt);
  border: 2px solid var(--hn-border);
  border-radius: var(--hn-radius-lg);
  padding: 40px;
  max-width: 480px;
}

.hn-trial h3 {
  text-align: center;
  margin-bottom: 6px;
}
.hn-trial p {
  text-align: center;
  color: var(--hn-text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ── Page Header (inner pages) ─────────────────────────────────── */
.hn-page-header {
  background: linear-gradient(135deg, var(--hn-bg-dark) 0%, #1a1145 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--hn-text-white);
}

.hn-page-header h1 {
  color: var(--hn-text-white);
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.hn-page-header p {
  color: var(--hn-text-light);
  font-size: 1.1rem;
}

.hn-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.hn-breadcrumb a {
  color: var(--hn-text-light);
}
.hn-breadcrumb a:hover { color: var(--hn-primary); }
.hn-breadcrumb span { color: var(--hn-text-white); }

/* ── Channels Grid ─────────────────────────────────────────────── */
.hn-channels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.hn-channel-card {
  background: var(--hn-bg);
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius);
  padding: 24px;
  transition: var(--hn-transition);
}
.hn-channel-card:hover {
  border-color: var(--hn-primary);
  box-shadow: var(--hn-shadow);
}

.hn-channel-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hn-channel-card ul {
  padding: 0;
}
.hn-channel-card li {
  padding: 3px 0;
  font-size: 0.9rem;
  color: var(--hn-text-muted);
}

/* ── Reseller Plans ────────────────────────────────────────────── */
.hn-reseller__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hn-reseller-card {
  background: var(--hn-bg);
  border: 2px solid var(--hn-border);
  border-radius: var(--hn-radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--hn-transition);
}
.hn-reseller-card:hover {
  border-color: var(--hn-accent);
  box-shadow: var(--hn-shadow-lg);
  transform: translateY(-4px);
}

.hn-reseller-card h3 { margin-bottom: 8px; }
.hn-reseller-card .hn-pricing-card__price { margin-bottom: 16px; }

/* ── Legal Pages ───────────────────────────────────────────────── */
.hn-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.hn-legal h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--hn-border);
}

.hn-legal h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.hn-legal p {
  margin-bottom: 12px;
  color: var(--hn-text-muted);
}

.hn-legal ul,
.hn-legal ol {
  margin: 12px 0;
  padding-left: 24px;
}
.hn-legal ul { list-style: disc; }
.hn-legal ol { list-style: decimal; }
.hn-legal li {
  margin-bottom: 6px;
  color: var(--hn-text-muted);
  font-size: 0.95rem;
}

.hn-legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.hn-legal th,
.hn-legal td {
  padding: 10px 14px;
  border: 1px solid var(--hn-border);
  text-align: left;
  font-size: 0.9rem;
}
.hn-legal th {
  background: var(--hn-bg-alt);
  font-weight: 600;
}

.hn-legal a {
  color: var(--hn-primary);
}
.hn-legal a:hover { text-decoration: underline; }

/* ── Setup Guide ───────────────────────────────────────────────── */
.hn-guide {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.hn-guide h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--hn-text);
}

.hn-guide h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 10px;
}

.hn-guide p {
  margin-bottom: 14px;
  color: var(--hn-text-muted);
  line-height: 1.7;
}

.hn-guide ol {
  padding-left: 24px;
  margin: 12px 0;
  list-style: decimal;
}
.hn-guide ol li {
  margin-bottom: 8px;
  color: var(--hn-text-muted);
}

.hn-guide img {
  border-radius: var(--hn-radius);
  margin: 20px 0;
  box-shadow: var(--hn-shadow);
}

/* ── Checkout ──────────────────────────────────────────────────── */
.hn-checkout {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.hn-checkout__summary {
  background: var(--hn-bg-alt);
  border: 1px solid var(--hn-border);
  border-radius: var(--hn-radius);
  padding: 24px;
  margin-bottom: 32px;
}

.hn-checkout__summary h3 {
  margin-bottom: 12px;
}

.hn-checkout__summary table {
  width: 100%;
}
.hn-checkout__summary td {
  padding: 6px 0;
  font-size: 0.95rem;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hn-pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .hn-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .hn-section { padding: 50px 0; }

  .hn-nav__links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--hn-bg); border-bottom: 1px solid var(--hn-border); flex-direction: column; padding: 20px; gap: 16px; box-shadow: var(--hn-shadow-lg); }
  .hn-nav__links.active { display: flex; }
  .hn-nav__toggle { display: flex; }

  .hn-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hn-hero h1 { font-size: 2.5rem; }

  .hn-features__grid,
  .hn-trust__grid,
  .hn-steps__grid,
  .hn-testimonials__grid { grid-template-columns: 1fr; }

  .hn-pricing__grid { grid-template-columns: 1fr; }
  .hn-pricing-card--popular { transform: none; }
  .hn-pricing-card--popular:hover { transform: translateY(-4px); }

  .hn-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hn-sports__content { grid-template-columns: 1fr; }
  .hn-reseller__grid { grid-template-columns: 1fr; }
  .hn-footer__grid { grid-template-columns: 1fr; }

  .hn-hero__actions { flex-direction: column; }
  .hn-trial { padding: 24px; }
}

@media (max-width: 480px) {
  .hn-hero h1 { font-size: 2rem; }
  .hn-stats__value { font-size: 1.75rem; }
}
