/* ============================================================
   Xtreamable — Global Stylesheet
   Design DNA cloned from zestiptv.com
   Visual tone: Dark-moody + bright yellow accents
   Fonts: Russo One (headings) + Titillium Web (body)
   ============================================================ */

/* — CSS Variables — */
:root {
  --xt-bg: #000000;
  --xt-bg-alt: #0d0d0d;
  --xt-card-bg: #111111;
  --xt-card-bg-hover: #1a1a1a;
  --xt-accent: #eeee22;
  --xt-accent-hover: #d4d41e;
  --xt-blue: #1a73e8;
  --xt-gold: #dd9933;
  --xt-text: #ffffff;
  --xt-text-muted: #b0b0b0;
  --xt-text-secondary: #e8eaed;
  --xt-border: #222222;
  --xt-border-light: #333333;
  --xt-footer-bg: #000000;
  --xt-success: #22c55e;
  --xt-error: #ef4444;
  --xt-radius: 12px;
  --xt-radius-sm: 8px;
  --xt-radius-lg: 16px;
  --xt-shadow: 0 4px 24px rgba(238,238,34,0.08);
  --xt-transition: 0.3s ease;
  --xt-max-w: 1200px;
}

/* — Reset — */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  color: var(--xt-text);
  background: var(--xt-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--xt-accent); text-decoration: none; transition: color var(--xt-transition); }
a:hover { color: var(--xt-accent-hover); }
ul, ol { list-style: none; }

/* — Typography — */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Russo One', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--xt-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--xt-text-secondary); }
.xt-accent { color: var(--xt-accent); }
.xt-section-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--xt-accent);
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* — Layout — */
.xt-container {
  width: 100%;
  max-width: var(--xt-max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.xt-section {
  padding: 5rem 0;
}
.xt-section--alt {
  background: var(--xt-bg-alt);
}
.xt-grid {
  display: grid;
  gap: 1.5rem;
}
.xt-grid--2 { grid-template-columns: repeat(2, 1fr); }
.xt-grid--3 { grid-template-columns: repeat(3, 1fr); }
.xt-grid--4 { grid-template-columns: repeat(4, 1fr); }
.xt-flex { display: flex; align-items: center; }
.xt-flex--center { justify-content: center; }
.xt-flex--between { justify-content: space-between; }
.xt-flex--wrap { flex-wrap: wrap; }
.xt-text-center { text-align: center; }

/* — Navigation — */
.xt-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--xt-border);
  z-index: 1000;
  padding: 0 1.5rem;
}
.xt-nav__inner {
  max-width: var(--xt-max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.xt-nav__logo {
  font-family: 'Russo One', sans-serif;
  font-size: 1.6rem;
  color: var(--xt-text);
  text-decoration: none;
  letter-spacing: 1px;
}
.xt-nav__logo span {
  color: var(--xt-accent);
}
.xt-nav__links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.xt-nav__links a {
  color: var(--xt-text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--xt-transition);
  text-decoration: none;
}
.xt-nav__links a:hover,
.xt-nav__links a.active {
  color: var(--xt-accent);
}
.xt-nav__cta {
  background: var(--xt-accent);
  color: #000 !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--xt-radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.xt-nav__cta:hover {
  background: var(--xt-accent-hover);
  color: #000 !important;
}

/* Mobile nav toggle */
.xt-nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--xt-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* — Buttons — */
.xt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Russo One', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  border: none;
  border-radius: var(--xt-radius-sm);
  cursor: pointer;
  transition: all var(--xt-transition);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.xt-btn--primary {
  background: var(--xt-accent);
  color: #000;
}
.xt-btn--primary:hover {
  background: var(--xt-accent-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238,238,34,0.3);
}
.xt-btn--outline {
  background: transparent;
  color: var(--xt-accent);
  border: 2px solid var(--xt-accent);
}
.xt-btn--outline:hover {
  background: var(--xt-accent);
  color: #000;
}
.xt-btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}
.xt-btn--block {
  width: 100%;
}

/* — Cards — */
.xt-card {
  background: var(--xt-card-bg);
  border: 1px solid var(--xt-border);
  border-radius: var(--xt-radius);
  padding: 2rem;
  transition: all var(--xt-transition);
}
.xt-card:hover {
  border-color: var(--xt-accent);
  box-shadow: var(--xt-shadow);
  transform: translateY(-4px);
}
.xt-card--featured {
  border-color: var(--xt-accent);
  position: relative;
}
.xt-card--featured::before {
  content: 'Best Value';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--xt-accent);
  color: #000;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Titillium Web', sans-serif;
}

/* — Pricing Cards — */
.xt-pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.xt-pricing__card {
  background: var(--xt-card-bg);
  border: 1px solid var(--xt-border);
  border-radius: var(--xt-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--xt-transition);
  display: flex;
  flex-direction: column;
}
.xt-pricing__card:hover {
  border-color: var(--xt-accent);
  box-shadow: var(--xt-shadow);
  transform: translateY(-6px);
}
.xt-pricing__card--featured {
  border-color: var(--xt-accent);
  position: relative;
  background: linear-gradient(180deg, #111 0%, #0d0d0d 100%);
}
.xt-pricing__name {
  font-family: 'Russo One', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--xt-text);
}
.xt-pricing__desc {
  font-size: 0.85rem;
  color: var(--xt-text-muted);
  margin-bottom: 1.5rem;
}
.xt-pricing__price {
  font-family: 'Russo One', sans-serif;
  font-size: 2.5rem;
  color: var(--xt-accent);
  margin-bottom: 0.25rem;
}
.xt-pricing__price span {
  font-size: 1rem;
  color: var(--xt-text-muted);
}
.xt-pricing__period {
  font-size: 0.85rem;
  color: var(--xt-text-muted);
  margin-bottom: 1.5rem;
}
.xt-pricing__features {
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.xt-pricing__features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--xt-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.xt-pricing__features li::before {
  content: '\2713';
  color: var(--xt-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* — Hero — */
.xt-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 60%, #0d0d0d 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.xt-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(238,238,34,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.xt-hero__subtitle {
  font-size: 1rem;
  color: var(--xt-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.xt-hero__title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.xt-hero__desc {
  font-size: 1.15rem;
  color: var(--xt-text-muted);
  max-width: 650px;
  margin: 0 auto 2rem;
}
.xt-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.xt-hero__stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.xt-hero__stat {
  text-align: center;
}
.xt-hero__stat-number {
  font-family: 'Russo One', sans-serif;
  font-size: 1.8rem;
  color: var(--xt-accent);
  display: block;
}
.xt-hero__stat-label {
  font-size: 0.85rem;
  color: var(--xt-text-muted);
}

/* — Channel Logo Bar — */
.xt-logos {
  padding: 2rem 0;
  background: var(--xt-bg-alt);
  border-top: 1px solid var(--xt-border);
  border-bottom: 1px solid var(--xt-border);
  overflow: hidden;
}
.xt-logos__inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.7;
}
.xt-logos__inner img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity var(--xt-transition);
}
.xt-logos__inner img:hover {
  opacity: 1;
}

/* — Content Carousel — */
.xt-carousel {
  padding: 4rem 0;
}
.xt-carousel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.xt-carousel__item {
  border-radius: var(--xt-radius-sm);
  overflow: hidden;
  aspect-ratio: 2/3;
  position: relative;
}
.xt-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xt-carousel__tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.xt-carousel__tab {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--xt-border);
  border-radius: 30px;
  background: transparent;
  color: var(--xt-text-muted);
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--xt-transition);
}
.xt-carousel__tab:hover,
.xt-carousel__tab.active {
  background: var(--xt-accent);
  color: #000;
  border-color: var(--xt-accent);
}

/* — Devices Grid — */
.xt-devices {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.xt-devices__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.xt-devices__item img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.xt-devices__item span {
  font-size: 0.85rem;
  color: var(--xt-text-muted);
  font-weight: 600;
}

/* — Features — */
.xt-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.xt-feature {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--xt-card-bg);
  border: 1px solid var(--xt-border);
  border-radius: var(--xt-radius);
  transition: all var(--xt-transition);
}
.xt-feature:hover {
  border-color: var(--xt-accent);
  transform: translateY(-4px);
}
.xt-feature__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.xt-feature__title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.xt-feature__desc {
  font-size: 0.9rem;
  color: var(--xt-text-muted);
  margin-bottom: 0;
}

/* — FAQ Accordion — */
.xt-faq__item {
  border: 1px solid var(--xt-border);
  border-radius: var(--xt-radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--xt-card-bg);
}
.xt-faq__question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--xt-text);
  font-family: 'Titillium Web', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--xt-transition);
}
.xt-faq__question:hover {
  color: var(--xt-accent);
}
.xt-faq__question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--xt-accent);
  font-weight: 400;
  transition: transform var(--xt-transition);
}
.xt-faq__item.active .xt-faq__question::after {
  content: '\2212';
}
.xt-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}
.xt-faq__item.active .xt-faq__answer {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
}
.xt-faq__answer p {
  font-size: 0.95rem;
  color: var(--xt-text-muted);
  line-height: 1.7;
}

/* — Forms — */
.xt-form {
  max-width: 560px;
  margin: 0 auto;
}
.xt-form__group {
  margin-bottom: 1.25rem;
}
.xt-form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--xt-text-secondary);
  margin-bottom: 0.4rem;
}
.xt-form__input,
.xt-form__select,
.xt-form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--xt-card-bg);
  border: 1px solid var(--xt-border);
  border-radius: var(--xt-radius-sm);
  color: var(--xt-text);
  font-family: 'Titillium Web', sans-serif;
  font-size: 1rem;
  transition: border-color var(--xt-transition);
}
.xt-form__input:focus,
.xt-form__select:focus,
.xt-form__textarea:focus {
  outline: none;
  border-color: var(--xt-accent);
}
.xt-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.xt-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23eeee22' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.xt-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.xt-form__trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--xt-text-muted);
  margin-top: 0.75rem;
}

/* Form messages */
.form-message {
  padding: 0.85rem 1rem;
  border-radius: var(--xt-radius-sm);
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-message--success {
  background: rgba(34,197,94,0.12);
  color: var(--xt-success);
  border: 1px solid rgba(34,197,94,0.3);
}
.form-message--error {
  background: rgba(239,68,68,0.12);
  color: var(--xt-error);
  border: 1px solid rgba(239,68,68,0.3);
}

/* — Footer — */
.xt-footer {
  background: var(--xt-footer-bg);
  border-top: 1px solid var(--xt-border);
  padding: 4rem 0 2rem;
}
.xt-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.xt-footer__brand {
  font-family: 'Russo One', sans-serif;
  font-size: 1.4rem;
  color: var(--xt-text);
  margin-bottom: 1rem;
  display: block;
  text-decoration: none;
}
.xt-footer__brand span {
  color: var(--xt-accent);
}
.xt-footer__desc {
  font-size: 0.9rem;
  color: var(--xt-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.xt-footer__title {
  font-family: 'Russo One', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--xt-text);
}
.xt-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.xt-footer__links a {
  color: var(--xt-text-muted);
  font-size: 0.9rem;
  transition: color var(--xt-transition);
}
.xt-footer__links a:hover {
  color: var(--xt-accent);
}
.xt-footer__address {
  font-size: 0.85rem;
  color: var(--xt-text-muted);
  font-style: normal;
  line-height: 1.7;
}
.xt-footer__bottom {
  border-top: 1px solid var(--xt-border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.xt-footer__copy {
  font-size: 0.85rem;
  color: var(--xt-text-muted);
}
.xt-footer__legal {
  display: flex;
  gap: 1.5rem;
}
.xt-footer__legal a {
  font-size: 0.85rem;
  color: var(--xt-text-muted);
}

/* — Page Header (inner pages) — */
.xt-page-header {
  padding: 8rem 0 3rem;
  background: linear-gradient(180deg, #000 0%, #0d0d0d 100%);
  text-align: center;
}
.xt-page-header h1 {
  margin-bottom: 0.75rem;
}
.xt-page-header p {
  color: var(--xt-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* — Breadcrumb — */
.xt-breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--xt-text-muted);
  justify-content: center;
  margin-bottom: 1rem;
}
.xt-breadcrumb a { color: var(--xt-accent); }
.xt-breadcrumb span { color: var(--xt-text-muted); }

/* — Legal Pages — */
.xt-legal { max-width: 800px; margin: 0 auto; }
.xt-legal h2 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--xt-border);
}
.xt-legal h3 { font-size: 1.1rem; margin: 1.5rem 0 0.75rem; }
.xt-legal p { font-size: 0.95rem; margin-bottom: 0.75rem; }
.xt-legal ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.xt-legal ul li {
  font-size: 0.95rem;
  color: var(--xt-text-secondary);
  padding: 0.3rem 0;
  list-style: disc;
}
.xt-legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.xt-legal table th,
.xt-legal table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--xt-border);
  font-size: 0.9rem;
  text-align: left;
}
.xt-legal table th {
  background: var(--xt-card-bg);
  color: var(--xt-accent);
  font-weight: 700;
}

/* — Setup Guide — */
.xt-guide { max-width: 800px; margin: 0 auto; }
.xt-guide h2 { margin: 2.5rem 0 1rem; }
.xt-guide h3 { margin: 1.5rem 0 0.75rem; }
.xt-guide p { font-size: 0.95rem; }
.xt-guide img {
  border-radius: var(--xt-radius);
  margin: 1.5rem 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.xt-guide ol, .xt-guide ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.xt-guide ol li, .xt-guide ul li {
  font-size: 0.95rem;
  color: var(--xt-text-secondary);
  padding: 0.3rem 0;
  list-style: decimal;
}
.xt-guide ul li { list-style: disc; }

/* — Channels — */
.xt-channels__category {
  margin-bottom: 2.5rem;
}
.xt-channels__category h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--xt-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.xt-channels__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
}
.xt-channels__list li {
  font-size: 0.9rem;
  color: var(--xt-text-secondary);
  padding: 0.4rem 0.75rem;
  background: var(--xt-card-bg);
  border-radius: 4px;
}

/* — Testimonials — */
.xt-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.xt-testimonial {
  background: var(--xt-card-bg);
  border: 1px solid var(--xt-border);
  border-radius: var(--xt-radius);
  padding: 2rem;
}
.xt-testimonial__stars {
  color: var(--xt-accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.xt-testimonial__text {
  font-size: 0.95rem;
  color: var(--xt-text-secondary);
  margin-bottom: 1rem;
  font-style: italic;
}
.xt-testimonial__author {
  font-size: 0.85rem;
  color: var(--xt-text-muted);
  font-weight: 700;
}

/* — Stats Bar — */
.xt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
  padding: 3rem 0;
}
.xt-stats__number {
  font-family: 'Russo One', sans-serif;
  font-size: 2rem;
  color: var(--xt-accent);
}
.xt-stats__label {
  font-size: 0.85rem;
  color: var(--xt-text-muted);
  margin-top: 0.25rem;
}

/* — Contact Info — */
.xt-contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.xt-contact-info__item {
  text-align: center;
  padding: 2rem;
  background: var(--xt-card-bg);
  border: 1px solid var(--xt-border);
  border-radius: var(--xt-radius);
}
.xt-contact-info__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.xt-contact-info__label {
  font-size: 0.85rem;
  color: var(--xt-text-muted);
  margin-bottom: 0.25rem;
}
.xt-contact-info__value {
  font-size: 1rem;
  color: var(--xt-text);
  font-weight: 700;
}

/* — About Values — */
.xt-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.xt-value {
  padding: 2rem;
  background: var(--xt-card-bg);
  border: 1px solid var(--xt-border);
  border-radius: var(--xt-radius);
}
.xt-value__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.xt-value__title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.xt-value__desc { font-size: 0.9rem; color: var(--xt-text-muted); }

/* — Reseller — */
.xt-reseller-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.xt-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.xt-step { padding: 1.5rem; }
.xt-step__number {
  width: 48px;
  height: 48px;
  background: var(--xt-accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Russo One', sans-serif;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}
.xt-step__title { font-size: 0.95rem; margin-bottom: 0.5rem; }
.xt-step__desc { font-size: 0.85rem; color: var(--xt-text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .xt-pricing { grid-template-columns: repeat(2, 1fr); }
  .xt-features { grid-template-columns: repeat(2, 1fr); }
  .xt-testimonials { grid-template-columns: repeat(2, 1fr); }
  .xt-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .xt-contact-info { grid-template-columns: repeat(2, 1fr); }
  .xt-reseller-pricing { grid-template-columns: repeat(2, 1fr); }
  .xt-stats { grid-template-columns: repeat(2, 1fr); }
  .xt-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .xt-nav__links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--xt-border);
  }
  .xt-nav__links.open { display: flex; }
  .xt-nav__toggle { display: block; }
  .xt-pricing { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .xt-features { grid-template-columns: 1fr; }
  .xt-testimonials { grid-template-columns: 1fr; }
  .xt-footer__grid { grid-template-columns: 1fr; }
  .xt-hero { padding: 8rem 0 3rem; }
  .xt-hero__stats { gap: 1.5rem; }
  .xt-contact-info { grid-template-columns: 1fr; }
  .xt-values { grid-template-columns: 1fr; }
  .xt-reseller-pricing { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .xt-steps { grid-template-columns: 1fr; }
  .xt-grid--2, .xt-grid--3, .xt-grid--4 { grid-template-columns: 1fr; }
}
