/* ================================================================
   EZTREAM.COM — Corporate/Glass Design System
   Inspired by iptvkingdom.be (dark + purple accent)
   Font: Plus Jakarta Sans | Prefix: ez-*
   ================================================================ */

/* ── CSS Variables ──────────────────────────────────────────────── */
:root {
  --ez-bg: #000000;
  --ez-bg-alt: #0a0a0f;
  --ez-surface: #111118;
  --ez-surface-glass: rgba(17, 17, 24, 0.7);
  --ez-card: #16161f;
  --ez-border: #1e1e2a;
  --ez-accent: #6528f7;
  --ez-accent-hover: #7c3aed;
  --ez-accent-light: rgba(101, 40, 247, 0.15);
  --ez-gradient: linear-gradient(135deg, #6528f7, #a855f7);
  --ez-gradient-subtle: linear-gradient(135deg, rgba(101,40,247,0.2), rgba(168,85,247,0.1));
  --ez-text: #ffffff;
  --ez-text-muted: #9ca3af;
  --ez-text-dim: #6b7280;
  --ez-success: #22c55e;
  --ez-error: #ef4444;
  --ez-radius: 16px;
  --ez-radius-sm: 10px;
  --ez-radius-xs: 6px;
  --ez-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --ez-shadow-accent: 0 4px 24px rgba(101, 40, 247, 0.3);
  --ez-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ez-max-w: 1200px;
  --ez-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 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(--ez-font);
  background: var(--ez-bg);
  color: var(--ez-text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ez-accent); text-decoration: none; transition: color var(--ez-transition); }
a:hover { color: var(--ez-accent-hover); }
ul, ol { list-style: none; }

.ez-container {
  max-width: var(--ez-max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.ez-section-title {
  text-align: center;
  margin-bottom: 48px;
}

.ez-section-title h2 {
  margin-bottom: 16px;
}

.ez-section-title p {
  color: var(--ez-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.ez-accent-text { color: var(--ez-accent); }
.ez-gradient-text {
  background: var(--ez-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Promo Banner ───────────────────────────────────────────────── */
.ez-promo-banner {
  background: var(--ez-gradient);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Navigation ─────────────────────────────────────────────────── */
.ez-nav {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ez-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 24px;
}

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

.ez-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ez-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.ez-logo span { color: var(--ez-accent); }

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

.ez-nav__links a {
  color: var(--ez-text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--ez-transition);
  text-decoration: none;
}

.ez-nav__links a:hover { color: var(--ez-text); }

.ez-nav__cta {
  background: var(--ez-gradient);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform var(--ez-transition), box-shadow var(--ez-transition);
}

.ez-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--ez-shadow-accent);
}

.ez-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.ez-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ez-text);
  margin: 5px 0;
  transition: var(--ez-transition);
  border-radius: 2px;
}

/* ── Hero ────────────────────────────────────────────────────────── */
.ez-hero {
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(101,40,247,0.15) 0%, transparent 70%);
}

.ez-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ez-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ez-accent-light);
  border: 1px solid rgba(101,40,247,0.3);
  color: var(--ez-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.ez-hero h1 {
  margin-bottom: 20px;
}

.ez-hero p {
  color: var(--ez-text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.ez-hero__stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.ez-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.ez-btn--primary {
  background: var(--ez-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(101,40,247,0.3);
}

.ez-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(101,40,247,0.4);
  color: #fff;
}

.ez-btn--secondary {
  background: transparent;
  color: var(--ez-text);
  border: 1px solid var(--ez-border);
}

.ez-btn--secondary:hover {
  border-color: var(--ez-accent);
  color: var(--ez-accent);
}

.ez-btn--large {
  padding: 16px 40px;
  font-size: 1rem;
}

.ez-btn--block {
  width: 100%;
}

/* ── Stats Bar ──────────────────────────────────────────────────── */
.ez-stats {
  padding: 40px 24px;
  background: var(--ez-surface);
  border-top: 1px solid var(--ez-border);
  border-bottom: 1px solid var(--ez-border);
}

.ez-stats__grid {
  max-width: var(--ez-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.ez-stats__item h3 {
  font-size: 2rem;
  background: var(--ez-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.ez-stats__item p {
  color: var(--ez-text-muted);
  font-size: 0.9rem;
}

/* ── Features ───────────────────────────────────────────────────── */
.ez-features {
  padding: 80px 24px;
}

.ez-features__grid {
  max-width: var(--ez-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ez-feature-card {
  background: var(--ez-card);
  border: 1px solid var(--ez-border);
  border-radius: var(--ez-radius);
  padding: 32px;
  transition: all var(--ez-transition);
  position: relative;
  overflow: hidden;
}

.ez-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ez-gradient);
  opacity: 0;
  transition: opacity var(--ez-transition);
}

.ez-feature-card:hover {
  border-color: rgba(101,40,247,0.3);
  transform: translateY(-4px);
  box-shadow: var(--ez-shadow);
}

.ez-feature-card:hover::before { opacity: 1; }

.ez-feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--ez-accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.ez-feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.ez-feature-card p {
  color: var(--ez-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── Feature Highlight (2-col) ──────────────────────────────────── */
.ez-highlight {
  padding: 80px 24px;
  background: var(--ez-bg-alt);
}

.ez-highlight__grid {
  max-width: var(--ez-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ez-highlight__img {
  border-radius: var(--ez-radius);
  box-shadow: var(--ez-shadow);
}

.ez-highlight__content h2 {
  margin-bottom: 16px;
}

.ez-highlight__content p {
  color: var(--ez-text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.ez-highlight__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ez-highlight__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ez-text-muted);
  font-size: 0.95rem;
}

.ez-highlight__list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--ez-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='12' height='12'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ── Pricing ────────────────────────────────────────────────────── */
.ez-pricing {
  padding: 80px 24px;
}

.ez-pricing__grid {
  max-width: var(--ez-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ez-price-card {
  background: var(--ez-card);
  border: 1px solid var(--ez-border);
  border-radius: var(--ez-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--ez-transition);
  position: relative;
  overflow: hidden;
}

.ez-price-card--popular {
  border-color: var(--ez-accent);
  box-shadow: var(--ez-shadow-accent);
  transform: scale(1.03);
}

.ez-price-card--popular .ez-price-card__badge {
  display: block;
}

.ez-price-card__badge {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--ez-gradient);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ez-price-card:hover {
  border-color: var(--ez-accent);
  transform: translateY(-4px);
  box-shadow: var(--ez-shadow-accent);
}

.ez-price-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 8px;
}

.ez-price-card--popular .ez-price-card__name {
  margin-top: 24px;
}

.ez-price-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.ez-price-card__price .ez-currency { font-size: 1.2rem; vertical-align: super; }
.ez-price-card__price .ez-period {
  font-size: 0.85rem;
  color: var(--ez-text-muted);
  font-weight: 400;
}

.ez-price-card__old {
  color: var(--ez-text-dim);
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.ez-price-card__features {
  text-align: left;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ez-price-card__features li {
  font-size: 0.88rem;
  color: var(--ez-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ez-price-card__features li::before {
  content: '\2713';
  color: var(--ez-accent);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ez-price-card__sub {
  font-size: 0.78rem;
  color: var(--ez-text-dim);
  margin-top: 12px;
}

/* ── Testimonials ───────────────────────────────────────────────── */
.ez-testimonials {
  padding: 80px 24px;
  background: var(--ez-bg-alt);
}

.ez-testimonials__grid {
  max-width: var(--ez-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ez-testimonial-card {
  background: var(--ez-card);
  border: 1px solid var(--ez-border);
  border-radius: var(--ez-radius);
  padding: 28px;
}

.ez-testimonial-card__stars {
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.ez-testimonial-card p {
  color: var(--ez-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.ez-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ez-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--ez-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.ez-testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.ez-testimonial-card__role {
  color: var(--ez-text-dim);
  font-size: 0.8rem;
}

/* ── FAQ ────────────────────────────────────────────────────────── */
.ez-faq {
  padding: 80px 24px;
}

.ez-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ez-faq__item {
  background: var(--ez-card);
  border: 1px solid var(--ez-border);
  border-radius: var(--ez-radius-sm);
  overflow: hidden;
}

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

.ez-faq__question:hover { background: rgba(101,40,247,0.05); }

.ez-faq__question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--ez-accent);
  transition: transform var(--ez-transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.ez-faq__item.active .ez-faq__question::after {
  content: '-';
}

.ez-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.ez-faq__item.active .ez-faq__answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.ez-faq__answer p {
  color: var(--ez-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── Trial / Contact Form ───────────────────────────────────────── */
.ez-trial {
  padding: 80px 24px;
  background: var(--ez-bg-alt);
}

.ez-trial__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.ez-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.ez-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.ez-form__group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ez-text);
}

.ez-form__group input,
.ez-form__group select,
.ez-form__group textarea {
  padding: 14px 18px;
  background: var(--ez-surface);
  border: 1px solid var(--ez-border);
  border-radius: var(--ez-radius-sm);
  color: var(--ez-text);
  font-size: 0.95rem;
  font-family: var(--ez-font);
  transition: border-color var(--ez-transition);
  min-height: 48px;
}

.ez-form__group input:focus,
.ez-form__group select:focus,
.ez-form__group textarea:focus {
  outline: none;
  border-color: var(--ez-accent);
}

.ez-form__group textarea { resize: vertical; min-height: 120px; }

.ez-form__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: var(--ez-text-dim);
  font-size: 0.82rem;
  margin-top: 8px;
}

.form-message {
  padding: 14px 18px;
  border-radius: var(--ez-radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 12px;
}

.form-message--success {
  background: rgba(34,197,94,0.15);
  color: var(--ez-success);
  border: 1px solid rgba(34,197,94,0.3);
}

.form-message--error {
  background: rgba(239,68,68,0.15);
  color: var(--ez-error);
  border: 1px solid rgba(239,68,68,0.3);
}

/* ── CTA Section ────────────────────────────────────────────────── */
.ez-cta {
  padding: 80px 24px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(101,40,247,0.12) 0%, transparent 70%);
}

.ez-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}

.ez-cta h2 { margin-bottom: 16px; }

.ez-cta p {
  color: var(--ez-text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.ez-footer {
  background: var(--ez-surface);
  border-top: 1px solid var(--ez-border);
  padding: 60px 24px 24px;
}

.ez-footer__grid {
  max-width: var(--ez-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.ez-footer__brand .ez-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.ez-footer__brand p {
  color: var(--ez-text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.ez-footer__col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--ez-text);
}

.ez-footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.ez-footer__col a {
  color: var(--ez-text-muted);
  font-size: 0.88rem;
  transition: color var(--ez-transition);
  text-decoration: none;
}

.ez-footer__col a:hover { color: var(--ez-accent); }

.ez-footer__bottom {
  max-width: var(--ez-max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--ez-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ez-footer__bottom p {
  color: var(--ez-text-dim);
  font-size: 0.82rem;
}

.ez-footer__payments img {
  height: 28px;
  opacity: 0.6;
}

/* ── Page Header (inner pages) ──────────────────────────────────── */
.ez-page-header {
  padding: 100px 24px 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(101,40,247,0.1) 0%, transparent 60%);
}

.ez-page-header h1 { margin-bottom: 16px; }

.ez-page-header p {
  color: var(--ez-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Breadcrumb ─────────────────────────────────────────────────── */
.ez-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--ez-text-dim);
}

.ez-breadcrumb a { color: var(--ez-text-muted); }
.ez-breadcrumb span { color: var(--ez-text-dim); }

/* ── Content Pages ──────────────────────────────────────────────── */
.ez-content {
  padding: 60px 24px 80px;
}

.ez-content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.ez-content h2 {
  margin: 40px 0 16px;
  font-size: 1.4rem;
}

.ez-content h3 {
  margin: 32px 0 12px;
  font-size: 1.15rem;
}

.ez-content p {
  color: var(--ez-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.ez-content ul, .ez-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.ez-content ul { list-style: disc; }
.ez-content ol { list-style: decimal; }

.ez-content li {
  color: var(--ez-text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

.ez-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.ez-content table th,
.ez-content table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--ez-border);
}

.ez-content table th {
  background: var(--ez-surface);
  font-weight: 600;
  font-size: 0.9rem;
}

.ez-content table td {
  color: var(--ez-text-muted);
  font-size: 0.9rem;
}

.ez-content a { text-decoration: underline; }
.ez-content strong { color: var(--ez-text); }

/* ── Channels Grid ──────────────────────────────────────────────── */
.ez-channels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  max-width: var(--ez-max-w);
  margin: 0 auto;
}

.ez-channel-card {
  background: var(--ez-card);
  border: 1px solid var(--ez-border);
  border-radius: var(--ez-radius-sm);
  padding: 20px;
  transition: all var(--ez-transition);
}

.ez-channel-card:hover {
  border-color: rgba(101,40,247,0.3);
  transform: translateY(-2px);
}

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

.ez-channel-card p {
  color: var(--ez-text-muted);
  font-size: 0.85rem;
}

/* ── Contact Info ───────────────────────────────────────────────── */
.ez-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--ez-max-w);
  margin: 0 auto;
}

.ez-contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ez-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ez-contact-item__icon {
  width: 48px;
  height: 48px;
  background: var(--ez-accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ez-contact-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

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

/* ── Reseller Tiers ─────────────────────────────────────────────── */
.ez-reseller-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--ez-max-w);
  margin: 0 auto;
}

.ez-tier-card {
  background: var(--ez-card);
  border: 1px solid var(--ez-border);
  border-radius: var(--ez-radius);
  padding: 32px;
  text-align: center;
  transition: all var(--ez-transition);
}

.ez-tier-card:hover {
  border-color: var(--ez-accent);
  transform: translateY(-4px);
}

.ez-tier-card h3 { margin-bottom: 8px; }

.ez-tier-card .ez-tier-price {
  font-size: 2rem;
  font-weight: 800;
  background: var(--ez-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.ez-tier-card ul {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.ez-tier-card li {
  color: var(--ez-text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ez-tier-card li::before {
  content: '\2713';
  color: var(--ez-accent);
  font-weight: 700;
}

/* ── Setup Guide ────────────────────────────────────────────────── */
.ez-guide-steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ez-guide-step {
  background: var(--ez-card);
  border: 1px solid var(--ez-border);
  border-radius: var(--ez-radius);
  padding: 32px;
}

.ez-guide-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--ez-gradient);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 16px;
}

.ez-guide-step h3 { margin-bottom: 12px; }

.ez-guide-step p {
  color: var(--ez-text-muted);
  line-height: 1.8;
}

.ez-guide-step img {
  margin-top: 16px;
  border-radius: var(--ez-radius-sm);
}

/* ── Checkout ───────────────────────────────────────────────────── */
.ez-checkout {
  padding: 60px 24px 80px;
}

.ez-checkout__inner {
  max-width: 600px;
  margin: 0 auto;
}

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

/* ── Honeypot ───────────────────────────────────────────────────── */
.ez-ohnohoney {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .ez-nav__links { display: none; }
  .ez-nav__toggle { display: block; }

  .ez-nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--ez-border);
  }

  .ez-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ez-pricing__grid { grid-template-columns: 1fr; max-width: 400px; }
  .ez-features__grid { grid-template-columns: 1fr; }
  .ez-testimonials__grid { grid-template-columns: 1fr; }
  .ez-footer__grid { grid-template-columns: 1fr; }
  .ez-contact-grid { grid-template-columns: 1fr; }
  .ez-reseller-tiers { grid-template-columns: 1fr; }
  .ez-price-card--popular { transform: none; }
  .ez-hero { padding: 60px 24px; }
  .ez-hero__actions { flex-direction: column; align-items: center; }

  .ez-page-header { padding: 80px 24px 40px; }
}

/* ── Utility ────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.ez-text-center { text-align: center; }
.ez-mt-2 { margin-top: 16px; }
.ez-mt-4 { margin-top: 32px; }
.ez-mb-4 { margin-bottom: 32px; }
