/* MovyTV - Origami/Paper Theme | Spectral + Barlow | my-* prefix */
/* Design DNA cloned from primeiptvpro.net + Origami aesthetic */

:root {
  --my-bg: #ffffff;
  --my-bg-alt: #f8f7f4;
  --my-bg-card: #fcfcfa;
  --my-primary: #7367f0;
  --my-primary-hover: #5a4fd6;
  --my-secondary: #fda527;
  --my-secondary-hover: #e8931a;
  --my-sky: #59bfe6;
  --my-gold: #fbbc05;
  --my-dark: #222222;
  --my-text: #333333;
  --my-text-muted: #666666;
  --my-text-light: #999999;
  --my-border: #e8e6e1;
  --my-footer-bg: #1a1a2e;
  --my-footer-text: #cccccc;
  --my-white: #ffffff;
  --my-success: #28a745;
  --my-error: #dc3545;
  --my-radius: 8px;
  --my-radius-lg: 16px;
  --my-shadow: 0 2px 12px rgba(115, 103, 240, 0.08);
  --my-shadow-hover: 0 8px 30px rgba(115, 103, 240, 0.15);
  --my-transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--my-text);
  background: var(--my-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--my-primary); text-decoration: none; transition: var(--my-transition); }
a:hover { color: var(--my-primary-hover); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Spectral', serif;
  color: var(--my-dark);
  line-height: 1.3;
  font-weight: 700;
}
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.2rem; }
p { margin-bottom: 1rem; }

/* Container */
.my-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section */
.my-section { padding: 80px 0; }
.my-section--alt { background: var(--my-bg-alt); }
.my-section--dark { background: var(--my-footer-bg); color: var(--my-white); }
.my-section--dark h2, .my-section--dark h3 { color: var(--my-white); }
.my-text-center { text-align: center; }

/* Section Header */
.my-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.my-section-header h2 { margin-bottom: 12px; }
.my-section-header p {
  color: var(--my-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.my-section-header .my-accent-line {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--my-primary);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ========== HEADER / NAV ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--my-white);
  border-bottom: 1px solid var(--my-border);
  transition: var(--my-transition);
}
.header--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: 'Spectral', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--my-dark);
  text-decoration: none;
}
.logo span { color: var(--my-primary); }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--my-text);
  transition: var(--my-transition);
  position: relative;
}
.nav__menu a:hover, .nav__menu a.active { color: var(--my-primary); }
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--my-primary);
  transition: width 0.3s ease;
}
.nav__menu a:hover::after { width: 100%; }
.nav__cta {
  background: var(--my-primary) !important;
  color: var(--my-white) !important;
  padding: 8px 20px;
  border-radius: var(--my-radius);
  font-weight: 600 !important;
}
.nav__cta:hover { background: var(--my-primary-hover) !important; }
.nav__cta::after { display: none !important; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--my-dark);
  border-radius: 2px;
  transition: var(--my-transition);
}
/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.nav__dropdown-toggle::after { display: none !important; }
.nav__dropdown-toggle svg {
  width: 10px; height: 10px;
  fill: currentColor;
  transition: var(--my-transition);
}
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--my-white);
  border: 1px solid var(--my-border);
  border-radius: var(--my-radius);
  box-shadow: var(--my-shadow-hover);
  min-width: 200px;
  padding: 8px 0;
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 0.88rem;
}
.nav__dropdown-menu a:hover { background: var(--my-bg-alt); }
.nav__dropdown-menu a::after { display: none; }

/* ========== HERO ========== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8f7f4 0%, #ede9fe 50%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(115,103,240,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero__content { position: relative; z-index: 1; }
.hero__badge {
  display: inline-block;
  background: rgba(115, 103, 240, 0.1);
  color: var(--my-primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero__title { margin-bottom: 16px; }
.hero__title span { color: var(--my-primary); }
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--my-text-muted);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__image { position: relative; z-index: 1; }
.hero__image img {
  border-radius: var(--my-radius-lg);
  box-shadow: var(--my-shadow-hover);
}

/* ========== BUTTONS ========== */
.my-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--my-radius);
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--my-transition);
  text-decoration: none;
  min-height: 48px;
}
.my-btn--primary { background: var(--my-primary); color: var(--my-white); }
.my-btn--primary:hover {
  background: var(--my-primary-hover); color: var(--my-white);
  transform: translateY(-2px); box-shadow: var(--my-shadow-hover);
}
.my-btn--secondary { background: var(--my-secondary); color: var(--my-white); }
.my-btn--secondary:hover {
  background: var(--my-secondary-hover); color: var(--my-white);
  transform: translateY(-2px);
}
.my-btn--outline {
  background: transparent; color: var(--my-primary);
  border: 2px solid var(--my-primary);
}
.my-btn--outline:hover {
  background: var(--my-primary); color: var(--my-white);
  transform: translateY(-2px);
}
.my-btn--dark { background: var(--my-dark); color: var(--my-white); }
.my-btn--dark:hover { background: #111; color: var(--my-white); transform: translateY(-2px); }
.my-btn--full { width: 100%; }
.my-btn--sky { background: var(--my-sky); color: var(--my-white); }
.my-btn--sky:hover { background: #3eadd6; color: var(--my-white); transform: translateY(-2px); }
.my-btn--gold { background: var(--my-gold); color: var(--my-white); }
.my-btn--gold:hover { background: #e0a800; color: var(--my-white); transform: translateY(-2px); }

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--my-white);
  border-top: 1px solid var(--my-border);
  border-bottom: 1px solid var(--my-border);
  padding: 30px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-bar__item h3 {
  font-size: 2rem;
  color: var(--my-primary);
  margin-bottom: 4px;
}
.stats-bar__item p {
  font-size: 0.9rem;
  color: var(--my-text-muted);
  margin-bottom: 0;
}

/* ========== VALUE PROP ========== */
.value-prop__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.value-prop__image img {
  border-radius: var(--my-radius-lg);
  box-shadow: var(--my-shadow);
}
.value-prop__content h2 { margin-bottom: 16px; }
.value-prop__content p { color: var(--my-text-muted); margin-bottom: 20px; }
.value-prop__list { margin-bottom: 24px; }
.value-prop__list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--my-text);
}
.value-prop__list li::before {
  content: '\2713';
  position: absolute; left: 0;
  color: var(--my-primary); font-weight: 700;
}

/* ========== FEATURES ========== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--my-bg-card);
  border: 1px solid var(--my-border);
  border-radius: var(--my-radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--my-transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--my-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--my-shadow-hover);
  border-color: rgba(115, 103, 240, 0.3);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(115, 103, 240, 0.1);
  color: var(--my-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.feature-card p { color: var(--my-text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* ========== PRICING ========== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--my-bg-card);
  border: 1px solid var(--my-border);
  border-radius: var(--my-radius-lg);
  padding: 0 24px 32px;
  text-align: center;
  transition: var(--my-transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pricing-card__header {
  padding: 20px 16px;
  margin: 0 -24px 24px;
  color: var(--my-white);
}
.pricing-card:nth-child(1) .pricing-card__header { background: var(--my-primary); }
.pricing-card:nth-child(2) .pricing-card__header { background: var(--my-gold); }
.pricing-card:nth-child(3) .pricing-card__header { background: var(--my-sky); }
.pricing-card:nth-child(4) .pricing-card__header { background: var(--my-dark); }
.pricing-card__header h3 { color: var(--my-white); font-size: 1.2rem; margin-bottom: 4px; }
.pricing-card__header .pricing-card__duration { font-size: 0.85rem; opacity: 0.9; }
.pricing-card__price { margin: 16px 0; }
.pricing-card__price .price-amount {
  font-family: 'Spectral', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--my-dark);
}
.pricing-card__price .price-currency {
  font-size: 1.4rem; vertical-align: super;
  color: var(--my-primary);
}
.pricing-card__price .price-period {
  display: block;
  font-size: 0.85rem;
  color: var(--my-text-muted);
}
.pricing-card__features {
  margin: 16px 0 24px;
  text-align: left;
  flex: 1;
}
.pricing-card__features li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--my-text);
}
.pricing-card__features li::before {
  content: '\2713';
  position: absolute; left: 0;
  color: var(--my-primary); font-weight: 700;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--my-shadow-hover);
}
.pricing-card .my-btn { margin-top: auto; }
.pricing-card__badge {
  position: absolute;
  top: 12px; right: -28px;
  background: var(--my-secondary);
  color: var(--my-white);
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 32px;
  transform: rotate(45deg);
  text-transform: uppercase;
}

/* ========== TESTIMONIALS ========== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--my-bg-card);
  border: 1px solid var(--my-border);
  border-radius: var(--my-radius-lg);
  padding: 28px;
  transition: var(--my-transition);
}
.testimonial-card:hover { box-shadow: var(--my-shadow-hover); }
.testimonial-card__stars { color: #f3bb00; font-size: 1rem; margin-bottom: 12px; }
.testimonial-card__text {
  color: var(--my-text); font-size: 0.95rem;
  font-style: italic; margin-bottom: 16px; line-height: 1.6;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover;
}
.testimonial-card__name { font-weight: 600; color: var(--my-dark); font-size: 0.95rem; }
.testimonial-card__location { font-size: 0.8rem; color: var(--my-text-muted); }

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--my-primary) 0%, #5a4fd6 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--my-white);
}
.cta-section h2 { color: var(--my-white); margin-bottom: 12px; }
.cta-section p {
  opacity: 0.9; margin-bottom: 24px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ========== FORMS ========== */
.my-form-group { margin-bottom: 16px; }
.my-form-group label {
  display: block; margin-bottom: 6px;
  font-weight: 600; font-size: 0.92rem; color: var(--my-dark);
}
.my-form-group input,
.my-form-group select,
.my-form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--my-border);
  border-radius: var(--my-radius);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem; color: var(--my-text);
  background: var(--my-white);
  transition: var(--my-transition);
  min-height: 48px;
}
.my-form-group input:focus,
.my-form-group select:focus,
.my-form-group textarea:focus {
  outline: none; border-color: var(--my-primary);
  box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.15);
}
.my-form-group textarea { min-height: 120px; resize: vertical; }
.my-form-card {
  background: var(--my-bg-card);
  border: 1px solid var(--my-border);
  border-radius: var(--my-radius-lg);
  padding: 36px;
  box-shadow: var(--my-shadow);
}
.my-form-card h3 { margin-bottom: 8px; }
.my-form-card > p { color: var(--my-text-muted); margin-bottom: 24px; }
.form-message {
  padding: 12px 16px; border-radius: var(--my-radius);
  margin-top: 16px; font-size: 0.92rem; font-weight: 500;
}
.form-message--success {
  background: rgba(40, 167, 69, 0.1); color: var(--my-success);
  border: 1px solid rgba(40, 167, 69, 0.2);
}
.form-message--error {
  background: rgba(220, 53, 69, 0.1); color: var(--my-error);
  border: 1px solid rgba(220, 53, 69, 0.2);
}
.my-trust-signals {
  display: flex; align-items: center; gap: 16px;
  margin-top: 12px; font-size: 0.82rem; color: var(--my-text-muted);
}
.my-trust-signals span { display: flex; align-items: center; gap: 4px; }

/* ========== FAQ ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--my-border);
  border-radius: var(--my-radius);
  margin-bottom: 12px; overflow: hidden;
  background: var(--my-bg-card);
  transition: var(--my-transition);
}
.faq-item:hover { border-color: rgba(115, 103, 240, 0.3); }
.faq-item__question {
  width: 100%; background: none; border: none;
  padding: 18px 24px; text-align: left;
  font-family: 'Spectral', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--my-dark);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item__question::after {
  content: '+'; font-size: 1.4rem; color: var(--my-primary);
  transition: var(--my-transition);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.active .faq-item__question::after { content: '\2212'; }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-item__answer { max-height: 400px; }
.faq-item__answer p {
  padding: 0 24px 18px;
  color: var(--my-text-muted); font-size: 0.95rem; line-height: 1.7;
}

/* ========== CHANNELS ========== */
.channels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.channel-category {
  background: var(--my-bg-card);
  border: 1px solid var(--my-border);
  border-radius: var(--my-radius);
  padding: 20px; text-align: center;
  transition: var(--my-transition);
}
.channel-category:hover { border-color: var(--my-primary); box-shadow: var(--my-shadow); }
.channel-category__icon { font-size: 2rem; margin-bottom: 8px; }
.channel-category h4 { font-size: 0.95rem; margin-bottom: 4px; }
.channel-category p { font-size: 0.8rem; color: var(--my-text-muted); margin-bottom: 0; }

/* ========== PAGE HERO ========== */
.page-hero {
  padding: 120px 0 50px;
  background: linear-gradient(135deg, #f8f7f4 0%, #ede9fe 100%);
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--my-text-muted); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 16px; font-size: 0.85rem;
}
.breadcrumb a { color: var(--my-primary); }
.breadcrumb span { color: var(--my-text-muted); }

/* ========== LEGAL ========== */
.legal-content { max-width: 800px; margin: 0 auto; padding: 40px 0; }
.legal-content h2 {
  font-size: 1.4rem; margin-top: 32px; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 2px solid var(--my-border);
}
.legal-content h3 { font-size: 1.1rem; margin-top: 20px; margin-bottom: 8px; }
.legal-content ul, .legal-content ol { margin: 12px 0; padding-left: 24px; }
.legal-content li { list-style: disc; margin-bottom: 6px; color: var(--my-text); }
.legal-content ol li { list-style: decimal; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal-content th, .legal-content td {
  padding: 10px 14px; border: 1px solid var(--my-border);
  text-align: left; font-size: 0.92rem;
}
.legal-content th { background: var(--my-bg-alt); font-weight: 600; }
.legal-content strong { color: var(--my-dark); }

/* ========== GUIDE ========== */
.guide-content { max-width: 800px; margin: 0 auto; }
.guide-content img { border-radius: var(--my-radius); margin: 20px 0; box-shadow: var(--my-shadow); }
.guide-content h2 { margin-top: 32px; margin-bottom: 12px; }
.guide-content h3 { margin-top: 20px; margin-bottom: 8px; }
.guide-content p { line-height: 1.8; }
.guide-content ol { padding-left: 24px; margin: 12px 0; }
.guide-content ol li { list-style: decimal; margin-bottom: 8px; }

/* ========== ABOUT ========== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about__image img { border-radius: var(--my-radius-lg); box-shadow: var(--my-shadow); }
.about__values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.about__value-card {
  background: var(--my-bg-card);
  border: 1px solid var(--my-border);
  border-radius: var(--my-radius); padding: 24px; text-align: center;
}
.about__value-card .icon { font-size: 1.8rem; margin-bottom: 8px; }
.about__value-card h4 { margin-bottom: 6px; }
.about__value-card p { font-size: 0.85rem; color: var(--my-text-muted); margin-bottom: 0; }

/* ========== CONTACT ========== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info__item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(115, 103, 240, 0.1); color: var(--my-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-info__text h4 { margin-bottom: 4px; }
.contact-info__text p { color: var(--my-text-muted); font-size: 0.92rem; margin-bottom: 0; }

/* ========== RESELLER ========== */
.reseller__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.reseller__tier {
  background: var(--my-bg-card);
  border: 1px solid var(--my-border);
  border-radius: var(--my-radius-lg);
  padding: 28px; text-align: center;
  transition: var(--my-transition);
}
.reseller__tier:hover { box-shadow: var(--my-shadow-hover); transform: translateY(-4px); }
.reseller__tier .icon { font-size: 2rem; margin-bottom: 12px; }
.reseller__tier h3 { margin-bottom: 8px; }
.reseller__tier p { color: var(--my-text-muted); font-size: 0.92rem; }

/* ========== TRIAL ========== */
.trial-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.trial-rules {
  background: var(--my-bg-alt);
  border-radius: var(--my-radius-lg); padding: 28px; margin-top: 20px;
}
.trial-rules h4 { margin-bottom: 12px; }
.trial-rules li {
  position: relative; padding-left: 20px;
  margin-bottom: 10px; color: var(--my-text-muted); font-size: 0.92rem;
}
.trial-rules li::before {
  content: '\2022'; position: absolute; left: 0;
  color: var(--my-primary); font-weight: 700;
}

/* ========== CANADIAN CHANNELS ========== */
.canada-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #f8f7f4 0%, #ede9fe 40%, #fef3c7 100%);
  text-align: center;
  position: relative;
}
.canada-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin: 40px auto 0;
  max-width: 600px;
}
.canada-stat {
  background: rgba(115, 103, 240, 0.08);
  border-radius: var(--my-radius);
  padding: 20px; text-align: center;
}
.canada-stat h3 { color: var(--my-primary); font-size: 1.6rem; margin-bottom: 4px; }
.canada-stat p { font-size: 0.85rem; color: var(--my-text-muted); margin-bottom: 0; }

/* ========== FOOTER ========== */
.footer {
  background: var(--my-footer-bg);
  color: var(--my-footer-text);
  padding: 60px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand .logo {
  color: var(--my-white); font-size: 1.4rem;
  margin-bottom: 12px; display: inline-block;
}
.footer__brand p {
  font-size: 0.9rem; color: var(--my-footer-text);
  margin-bottom: 16px; line-height: 1.6;
}
.footer__col h4 {
  color: var(--my-white); font-size: 1rem;
  margin-bottom: 16px; font-family: 'Barlow', sans-serif; font-weight: 600;
}
.footer__col a {
  display: block; color: var(--my-footer-text);
  font-size: 0.9rem; padding: 4px 0;
  transition: var(--my-transition);
}
.footer__col a:hover { color: var(--my-primary); padding-left: 4px; }
.footer__address {
  font-size: 0.85rem; color: var(--my-text-muted);
  margin-top: 8px; line-height: 1.5;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px; padding: 20px 0;
  text-align: center; font-size: 0.85rem; color: var(--my-text-muted);
}

/* ========== UTILITY ========== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__image { order: -1; max-width: 500px; margin: 0 auto; }
  .value-prop__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .trial-section__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav__menu {
    display: none;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--my-white);
    flex-direction: column; padding: 20px;
    border-bottom: 1px solid var(--my-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); gap: 0;
  }
  .nav__menu--open { display: flex; }
  .nav__menu a { padding: 12px 0; border-bottom: 1px solid var(--my-border); width: 100%; }
  .nav__menu a::after { display: none; }
  .nav__toggle { display: flex; }
  .nav__dropdown-menu {
    position: static; box-shadow: none; border: none; padding-left: 16px;
  }
  .pricing__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .features__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .reseller__tiers { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .about__values { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .my-section { padding: 50px 0; }
  .page-hero { padding: 100px 0 40px; }
  .canada-stats { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { padding: 110px 0 60px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
}
