/* IPTV SHQIP — Warm Terracotta Mediterranean */
:root {
  --bg: #FFFAF7;
  --bg-alt: #FFF3EC;
  --surface: #FFFFFF;
  --border: #FED7AA;
  --gold: #FBBF24;
  --cyan: #EA580C;
  --green: #7C2D12;
  --brown: #7C2D12;
  --text: #1a1a1a;
  --muted: #78716C;
  --footer-bg: #431407;
  --font-head: "Raleway", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
  --font-mono: "Open Sans", ui-monospace, monospace;
  --nav-h: 64px;
  --radius: 8px;
  --card-radius: 14px;
  --section-py: 64px;
  --shadow: 0 4px 20px rgba(124, 45, 18, 0.08);
  --shadow-hover: 0 12px 32px rgba(234, 88, 12, 0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #7C2D12; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.center { text-align: center; }
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); font-size: 0.92em; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(1.85rem, 5vw, 2.75rem); margin-bottom: 0.75rem; }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); margin-bottom: 0.65rem; }
h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }

/* Header — white, shadow on scroll */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FFFAF7;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header--white { background: #FFFAF7; }
.site-header--dark { background: #7C2D12; }
.site-header--dark .nav-toggle { color: #FFFAF7; border-color: rgba(255,255,255,0.3); }
.site-header--dark.scrolled { box-shadow: 0 2px 16px rgba(124, 45, 18, 0.35); }
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(124, 45, 18, 0.12);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 12px;
}
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: min(280px, 52vw);
  line-height: 0;
}
.header-logo img {
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a { color: var(--muted); }
.nav--light a { color: rgba(255,255,255,0.85); }
.nav a:hover, .nav a.active { color: var(--cyan); }
.nav--light a:hover, .nav--light a.active { color: #FFFAF7; }
.nav-cta {
  background: var(--cyan) !important;
  color: #FFFAF7 !important;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta:hover {
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.45);
  color: #FFFAF7 !important;
}
.hamburger, .nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 12px 4%;
  border-top: 1px solid var(--border);
  background: #FFFAF7;
}
.mobile-nav a { color: var(--text); }
.mobile-nav.open { display: flex; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--cyan);
  color: #FFFAF7;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn:hover {
  box-shadow: 0 4px 20px rgba(194, 113, 12, 0.4);
  transform: translateY(-1px);
  color: #FFFAF7;
}
.btn.alt {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}
.btn.alt:hover { background: rgba(234, 88, 12, 0.06); color: var(--cyan); }
.btn--gold {
  background: var(--gold) !important;
  color: #1a1a1a !important;
  font-weight: 700;
}
.btn--gold:hover {
  background: #F59E0B !important;
  color: #1a1a1a !important;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.45);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.25rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Sections */
.section { padding: var(--section-py) 0; background: var(--bg); }
.section--alt { background: var(--bg-alt); }

/* Cards */
.card, .panel, .diag-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  border-left: 4px solid transparent;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
  border-top: 1px solid var(--border);
}
.card:hover, .diag-card:hover, .price-card:hover, .review-card:hover, .why-card:hover, .channel-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-left: 4px solid var(--cyan);
}

/* Hero split */
.hero-split {
  background: var(--bg);
  padding: calc(var(--nav-h) + 40px) 0 56px;
}
.hero-split__grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-split__content .kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 48ch;
  margin-bottom: 0.5rem;
}
.hero-split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-split__media img { width: 100%; height: auto; }

/* Trust bar */
.trust-bar {
  background: var(--bg-alt);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-bar__sep {
  color: var(--border);
  font-weight: 400;
}

/* Status widget inline */
.status-widget-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  padding: 16px 24px;
  background: #FFFAF7;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
}
.status-widget-inline strong { color: var(--text); }
.status-widget-inline .status-online { color: var(--green); font-weight: 600; }
.status-widget-inline .sep { color: var(--border); }

/* Status widget card */
.status-widget {
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--cyan);
  text-align: left;
}
.status-head {
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 184, 122, 0.5); }
  50% { opacity: 0.85; box-shadow: 0 0 0 6px rgba(0, 184, 122, 0); }
}
.status-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.status-row:last-child { border-bottom: none; }

/* Devices section */
.devices-img { max-width: 720px; margin: 1.5rem auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.devices-list { font-family: var(--font-head); font-weight: 600; margin-top: 1rem; }

/* Review avatars */
.review-top { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 10px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Reseller / image heroes — dark overlay + white text */
.why-grid--3 { grid-template-columns: repeat(3, 1fr); }
#reseller-pricing { grid-template-columns: repeat(3, 1fr); }

.contact-card--large { text-align: center; padding: 2rem 1.5rem; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.cta-strip--cyan .btn { background: var(--brown); color: #fff; }
.cta-strip--cyan .btn:hover { background: #166534; color: #fff; }

/* Steps horizontal */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  color: #FFFAF7;
  background: var(--gold);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.pricing-grid.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 0 auto;
}
.price-card { position: relative; }
.price-card.popular {
  border-color: var(--cyan);
  border-top-color: var(--cyan);
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.12);
}
.badge-pop {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: #FFFAF7;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.price-tag {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--cyan);
  margin: 0.5rem 0;
}
.price-card ul { list-style: none; margin: 1rem 0; font-size: 0.9rem; color: var(--muted); }
.price-card li { padding: 4px 0; }

/* Why choose — always 3x2 */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Devices split — image left 55%, text right 45% */
.devices-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 2.5rem;
  align-items: center;
}
.devices-split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.devices-split__media img { width: 100%; height: auto; }
.device-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 1.25rem 0;
  font-weight: 500;
}
.device-item { font-size: 0.95rem; }
.pricing-row-label {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--muted);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  max-width: 260px;
  line-height: 0;
  margin-bottom: 4px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* Comparison table */
.cmp-wrap { overflow-x: auto; margin-top: 1.25rem; -webkit-overflow-scrolling: touch; }
table.cmp {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: #FFFAF7;
}
table.cmp th, table.cmp td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}
table.cmp th {
  background: var(--bg-alt);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
}
table.cmp td:first-child { color: var(--muted); font-weight: 500; }
table.cmp .col-good { color: var(--green); font-weight: 600; }
table.cmp tr:nth-child(even) td { background: var(--bg-alt); }

/* Reviews */
.channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.channels-col h3 { margin-bottom: 0.75rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card .review-meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyan);
  margin-bottom: 4px;
}
.review-device {
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.review-card p { color: var(--muted); font-size: 0.95rem; }

/* FAQ accordion */
.faq-list { margin-top: 1rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 35, 50, 0.04);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: #FFFFFF;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-q span { color: var(--cyan); font-weight: 700; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-q { border-bottom: 1px solid var(--border); }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 1.25rem 1rem; color: var(--muted); font-size: 0.95rem; }

/* CTA strip */
.cta-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}
.cta-strip h2 { margin-bottom: 0.5rem; }
.cta-strip p { color: var(--muted); max-width: 50ch; margin: 0 auto 1.25rem; }
.cta-strip--cyan {
  background: var(--gold);
  border: none;
}
.cta-strip--cyan h2,
.cta-strip--cyan p { color: #FFFAF7; }
.cta-strip--cyan .btn {
  background: var(--brown);
  color: #FFFAF7;
}
.cta-strip--cyan .btn:hover { color: #FFFAF7; background: #166534; }
.price-old s { opacity: 0.6; }

/* Popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 35, 50, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.popup-overlay.open { opacity: 1; visibility: visible; }
.popup-card {
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #FFFAF7;
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.popup-close:hover { color: var(--text); }

/* Float buy */
.float-buy {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 55;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan);
  color: #FFFAF7;
  border-radius: 50%;
  font-size: 1.35rem;
  box-shadow: 0 4px 24px rgba(234, 88, 12, 0.45);
}
.float-buy:hover { color: #FFFAF7; box-shadow: 0 6px 28px rgba(234, 88, 12, 0.55); }

/* Page hero */
.page-hero {
  padding: 56px 0 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero--img {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 72px 0;
  border-bottom: none;
  color: #FFFAF7;
}
.page-hero--img .container { position: relative; z-index: 1; }
.page-hero--img h1,
.page-hero--img .hero-inner h1 {
  color: #FFFAF7 !important;
  font-size: clamp(2rem, 5vw, 52px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.page-hero--img .hero-sub,
.page-hero--img .hero-sub--light {
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.page-hero--img .hero-meta {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}
.page-hero--img .hero-meta a { color: rgba(255, 255, 255, 0.9); }
.page-hero--img .hero-meta a:hover { color: var(--cyan); }
.page-hero--img .hero-cta {
  justify-content: center;
  margin-top: 1.25rem;
}
.page-hero--img .hero-cta .btn { color: #FFFAF7; }

/* Contact */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-card h3 { margin-bottom: 8px; }
.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 12px 14px;
  background: #FFFAF7;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}
.contact-form textarea { min-height: 120px; resize: vertical; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.article-prose { max-width: 72ch; }
.article-prose p { margin-bottom: 1rem; color: var(--muted); }
.article-prose h2 { margin-top: 1.75rem; color: var(--text); }
.article-prose ul, .article-prose ol { margin: 0 0 1rem 1.25rem; color: var(--muted); }
.blog-thumb {
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

/* Footer — dark only */
.footer {
  background: var(--footer-bg);
  color: #E8F0FE;
  padding: 48px 0 24px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer h4 {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--font-mono);
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a { color: #9AA8BC; font-size: 0.9rem; }
.footer a:hover { color: var(--cyan); }
.footer .muted { color: #9AA8BC; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #9AA8BC;
}

.sticky-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.kicker { font-size: 0.85rem; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger, .nav-toggle { display: block; }
  .hero-split__grid { grid-template-columns: 1fr; }
  .hero-split__media { order: -1; max-height: 280px; }
  .devices-split { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .pricing-grid.pricing-grid--3 { grid-template-columns: 1fr; }
  .trust-bar__sep { display: none; }
  .trust-bar__inner { flex-direction: column; gap: 10px; }
  .status-widget-inline { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 375px) {
  :root { --section-py: 48px; }
  .btn-row { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  h1 { font-size: 1.65rem; }
  .float-buy { bottom: 76px; right: 16px; width: 50px; height: 50px; }
  .sticky-wa { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  table.cmp { font-size: 0.8rem; }
  table.cmp th, table.cmp td { padding: 8px 10px; }
}

.hero-badge {
  display: inline-block;
  background: #EA580C;
  color: #FFFAF7;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.channel-cell {
  background: #FFFFFF;
  border: 1px solid #FED7AA;
  border-radius: var(--card-radius);
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: border-left 0.2s, transform 0.2s;
}
.channel-flag { font-size: 1.25rem; }
.channels-section { padding: var(--section-py) 0; }
.devices-note { margin: 1rem 0; color: var(--text); font-size: 0.95rem; }
.cta-strip--copper {
  background: #7C3D12;
  border: none;
  padding: 48px 0;
}
.cta-strip--copper h2 { color: #FFFAF7; margin-bottom: 1rem; }
.cta-strip--copper .btn {
  background: #EA580C;
  color: #FFFAF7;
}
.cta-strip--copper .btn:hover { background: #E08A1A; color: #FFFAF7; }
.cta-strip--royal {
  background: #7C2D12;
  border: none;
  padding: 48px 0;
}
.cta-strip--royal h2 { color: #FFFAF7; margin-bottom: 0.5rem; }
.cta-strip--royal p { color: rgba(255,255,255,0.85); }
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.quality-card h3 { color: var(--brown); margin-bottom: 0.75rem; }
.quality-ours { color: var(--text); margin-bottom: 0.5rem; }
@media (max-width: 900px) {
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .quality-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .channel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .channel-grid { grid-template-columns: 1fr; }
}
