/* ================================================================
   RYANIX STORE — Design System
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

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

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --bg:       #0A0E1A;
  --bg2:      #0F1628;
  --bg3:      #141D35;
  --card:     #131929;
  --card2:    #1A2340;
  --orange:   #FF6B00;
  --orange2:  #FF8C33;
  --orange3:  rgba(255,107,0,.12);
  --border:   rgba(255,255,255,.08);
  --border2:  rgba(255,107,0,.25);
  --white:    #FFFFFF;
  --white2:   #C8D0E0;
  --muted:    #6B7899;
  --green:    #22C55E;
  --blue:     #3B82F6;
  --r:        10px;
  --r2:       6px;
  --rL:       16px;
  --sh:       0 4px 40px rgba(0,0,0,.5);
  --sh2:      0 2px 12px rgba(0,0,0,.3);
  --font-d:   'Syne', system-ui, sans-serif;
  --font-b:   'DM Sans', system-ui, sans-serif;
  --trans:    .2s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-b); font-size: 16px;
  background: var(--bg); color: var(--white);
  line-height: 1.65; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Layout ──────────────────────────────────────────────────── */
.wrap   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-sm{ max-width: 860px;  margin: 0 auto; padding: 0 24px; }
.wrap-xs{ max-width: 640px;  margin: 0 auto; padding: 0 24px; }
.section      { padding: 84px 0; }
.section-alt  { background: var(--bg2); }
.section-dark { background: var(--bg3); }

/* ── Skip link ───────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -60px; left: 16px;
  background: var(--orange); color: #fff; padding: 8px 18px;
  border-radius: var(--r2); font-weight: 600; font-size: .85rem;
  z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 3px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--r2); border: none;
  font-size: .88rem; font-weight: 600; font-family: var(--font-b);
  line-height: 1; transition: all var(--trans); cursor: pointer;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,107,0,.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.btn-ghost  { background: rgba(255,107,0,.1); color: var(--orange); border: 1px solid var(--border2); }
.btn-ghost:hover { background: rgba(255,107,0,.18); }
.btn-lg { padding: 15px 30px; font-size: .95rem; border-radius: var(--r); }
.btn-sm { padding: 8px 16px; font-size: .78rem; }
.btn-wa {
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--r); font-weight: 700;
  font-size: .9rem; border: none; cursor: pointer;
  font-family: var(--font-b); text-decoration: none;
  transition: all var(--trans);
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(37,211,102,.3); }
.btn-wa-sm { padding: 10px 18px; font-size: .82rem; }

/* ── Typography ──────────────────────────────────────────────── */
.eyebrow {
  display: inline-block; font-family: var(--font-d);
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 14px;
}
.section-desc {
  font-size: 1rem; color: var(--white2); max-width: 580px; line-height: 1.7;
}
.head-center { text-align: center; }
.head-center .section-desc { margin: 0 auto; }

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(10,14,26,.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), #FF3D00);
  display: flex; align-items: center; justify-content: center;
}
.logo-text { font-family: var(--font-d); font-size: 1rem; font-weight: 700; letter-spacing: -.01em; }
.logo-text span { color: var(--orange); }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-size: .8rem; font-weight: 500; color: var(--white2);
  padding: 6px 10px; border-radius: var(--r2);
  transition: color var(--trans), background var(--trans);
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,.06); }

.header-ctas { display: flex; gap: 10px; align-items: center; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; border-radius: var(--r2);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none; position: fixed; inset: 64px 0 0;
  background: rgba(10,14,26,.98); z-index: 899;
  flex-direction: column; padding: 28px 24px; gap: 4px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 500; padding: 12px 16px; border-radius: var(--r2); color: var(--white2); }
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.mobile-nav .btn, .mobile-nav .btn-wa { margin-top: 12px; width: 100%; justify-content: center; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 96px 0 64px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 55% 40%, rgba(255,107,0,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 480px; gap: 56px; align-items: start;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,107,0,.1); border: 1px solid rgba(255,107,0,.3);
  border-radius: 100px; padding: 5px 14px;
  font-size: .7rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -.025em;
  color: var(--white); margin-bottom: 20px;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-desc { font-size: 1rem; color: var(--white2); line-height: 1.72; margin-bottom: 28px; max-width: 500px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero configurator (right column) */
.hero-config {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rL); padding: 28px;
  box-shadow: var(--sh);
  position: sticky; top: 84px;
}
.config-title {
  font-family: var(--font-d); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
/* Device selector mini */
.device-select {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px;
}
.device-opt {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: var(--r2);
  border: 1.5px solid var(--border);
  background: var(--bg2); cursor: pointer;
  transition: border-color var(--trans), background var(--trans);
  font-size: .8rem;
}
.device-opt.active {
  border-color: var(--orange); background: rgba(255,107,0,.06);
}
.device-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.device-opt-label { font-weight: 600; color: var(--white); }
.device-opt-price { font-family: var(--font-d); color: var(--orange); font-weight: 700; }

/* Subscription selector */
.sub-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.sub-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.sub-opt {
  padding: 14px 12px; border-radius: var(--r2);
  border: 1.5px solid var(--border);
  background: var(--bg2); cursor: pointer; text-align: center;
  transition: all var(--trans);
}
.sub-opt.active { border-color: var(--orange); background: rgba(255,107,0,.08); }
.sub-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.sub-opt-name { font-weight: 700; font-size: .82rem; color: var(--white); margin-bottom: 4px; }
.sub-opt-price { font-family: var(--font-d); font-size: 1.1rem; font-weight: 800; color: var(--orange); }

/* Total display */
.config-total {
  background: var(--bg3); border: 1px solid rgba(255,107,0,.2);
  border-radius: var(--r); padding: 14px 16px; margin-bottom: 16px;
}
.total-rows { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.total-row { display: flex; justify-content: space-between; font-size: .78rem; color: var(--white2); }
.total-row.final {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 4px; padding-top: 8px;
  font-weight: 700; color: var(--white); font-size: .9rem;
}
.total-row.final span:last-child { color: var(--orange); font-family: var(--font-d); font-size: 1.1rem; }

/* ── PRODUCTS GRID ───────────────────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.product-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--rL); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.product-card:hover {
  border-color: rgba(255,107,0,.4); transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.product-card.featured { border-color: var(--orange); }
.product-img {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  padding: 28px; display: flex; align-items: center; justify-content: center;
  min-height: 160px; position: relative;
}
.product-img img { max-height: 120px; width: auto; object-fit: contain; }
.product-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--orange); color: #fff;
  font-size: .6rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; border-radius: 4px; padding: 3px 8px;
}
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.product-name { font-family: var(--font-d); font-size: .92rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.product-device-price {
  font-size: .72rem; color: var(--muted); font-weight: 500;
}
.product-packages { display: flex; flex-direction: column; gap: 6px; }
.pkg-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 8px 12px; font-size: .78rem;
}
.pkg-row-name { color: var(--white2); font-weight: 500; }
.pkg-row-total { font-family: var(--font-d); font-weight: 800; color: var(--orange); }
.product-cta { margin-top: auto; }
.product-cta .btn { width: 100%; justify-content: center; }

/* ── PRODUCT CONFIGURATOR (full section) ─────────────────────── */
.full-config {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--rL); padding: 32px;
}
.full-config-grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start;
}
.config-device-grid {
  display: flex; flex-direction: column; gap: 8px;
}
.config-device-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--r);
  border: 1.5px solid var(--border); background: var(--bg2);
  cursor: pointer; transition: all var(--trans);
}
.config-device-opt:hover { border-color: rgba(255,107,0,.4); }
.config-device-opt.active { border-color: var(--orange); background: rgba(255,107,0,.06); }
.config-device-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.cdo-check {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--muted); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans);
}
.config-device-opt.active .cdo-check {
  border-color: var(--orange); background: var(--orange);
}
.cdo-name { font-weight: 600; font-size: .85rem; color: var(--white); }
.cdo-price { font-family: var(--font-d); font-size: .9rem; font-weight: 700; color: var(--orange); margin-left: auto; flex-shrink: 0; }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.steps-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.step-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  position: relative;
}
.step-item::after {
  content: '';
  position: absolute; top: 22px; left: calc(50% + 22px);
  width: calc(100% - 44px); height: 1px;
  background: linear-gradient(90deg, rgba(255,107,0,.4), rgba(255,107,0,.1));
}
.step-item:last-child::after { display: none; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #FF3D00);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: .88rem; font-weight: 800; color: #fff;
  flex-shrink: 0; box-shadow: 0 0 0 4px rgba(255,107,0,.15);
}
.step-title { font-weight: 700; font-size: .8rem; color: var(--white); line-height: 1.3; }
.step-desc { font-size: .72rem; color: var(--muted); line-height: 1.5; }

/* ── IPTV FEATURES ───────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 18px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color var(--trans);
}
.feature-card:hover { border-color: rgba(255,107,0,.3); }
.feature-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--orange3); display: flex; align-items: center; justify-content: center;
}
.feature-stat { font-family: var(--font-d); font-size: 1.3rem; font-weight: 800; color: var(--orange); }
.feature-label { font-size: .8rem; color: var(--white2); font-weight: 500; line-height: 1.4; }

/* ── SUBSCRIPTION CARDS ──────────────────────────────────────── */
.sub-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sub-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--rL); padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
}
.sub-card.featured { border-color: var(--orange); }
.sub-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
}
.sub-card-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--orange); color: #fff;
  font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; border-radius: 4px; padding: 3px 8px;
}
.sub-price {
  font-family: var(--font-d); font-size: 2.8rem; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.sub-price span { font-size: 1.1rem; color: var(--white2); font-family: var(--font-b); }
.sub-features { display: flex; flex-direction: column; gap: 8px; }
.sub-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: var(--white2);
}
.sub-feat svg { flex-shrink: 0; color: var(--green); }
.sub-card .btn { width: 100%; justify-content: center; }

/* ── COMPARISON TABLE ────────────────────────────────────────── */
.compare-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .82rem; min-width: 700px; }
.compare-table th, .compare-table td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  font-family: var(--font-d); font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  background: var(--bg3);
}
.compare-table thead th.prod-head {
  text-align: center; color: var(--white); font-size: .78rem;
  letter-spacing: 0; text-transform: none;
}
.compare-table td { background: var(--card); color: var(--white2); }
.compare-table td.center { text-align: center; }
.compare-table tr:hover td { background: var(--card2); }
.check { color: var(--green); }
.cross { color: var(--muted); }

/* ── SEO CONTENT SECTION ─────────────────────────────────────── */
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.seo-body { display: flex; flex-direction: column; gap: 18px; }
.seo-body p { font-size: .92rem; color: var(--white2); line-height: 1.78; }
.seo-body h3 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-top: 6px; }
.info-list { display: flex; flex-direction: column; gap: 10px; }
.info-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: var(--white2); line-height: 1.55;
}
.info-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 18px 22px; background: none; border: none;
  text-align: left; font-size: .88rem; font-weight: 600; color: var(--white);
  font-family: var(--font-b); cursor: pointer; transition: background var(--trans);
}
.faq-q:hover { background: rgba(255,255,255,.02); }
.faq-q svg { flex-shrink: 0; color: var(--muted); transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--orange); }
.faq-a {
  display: none; padding: 0 22px 18px;
  font-size: .82rem; color: var(--white2); line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; padding-top: 14px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: #060911; border-top: 1px solid var(--border); padding: 52px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px;
}
.footer-brand p { font-size: .78rem; color: var(--muted); line-height: 1.65; max-width: 240px; margin-top: 12px; }
.footer-wa { margin-top: 14px; }
.footer-col h4 {
  font-family: var(--font-d); font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: .78rem; color: var(--muted); transition: color var(--trans); }
.footer-col a:hover { color: var(--white2); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .72rem; color: var(--muted); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: .72rem; color: var(--muted); transition: color var(--trans); }
.footer-legal a:hover { color: var(--white2); }

/* ── FINAL CTA ───────────────────────────────────────────────── */
.cta-section {
  text-align: center; padding: 100px 24px;
  background: linear-gradient(160deg, rgba(255,107,0,.07) 0%, transparent 60%);
}
.cta-section .section-title { margin: 0 auto 16px; max-width: 600px; }
.cta-section .section-desc { margin: 0 auto 32px; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ── INNER PAGES ─────────────────────────────────────────────── */
.page-hero { padding: 88px 0 32px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.breadcrumb { font-size: .75rem; color: var(--muted); margin-bottom: 14px; display: flex; gap: 6px; align-items: center; }
.breadcrumb a { color: var(--muted); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--white2); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column;
  transition: border-color var(--trans), transform var(--trans);
}
.blog-card:hover { border-color: rgba(255,107,0,.3); transform: translateY(-3px); }
.blog-card-img { background: var(--bg3); height: 160px; display: flex; align-items: center; justify-content: center; }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-tag { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.blog-card-title { font-family: var(--font-d); font-size: .9rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.blog-card-desc { font-size: .78rem; color: var(--muted); line-height: 1.55; flex: 1; }
.blog-card-link { font-size: .75rem; font-weight: 600; color: var(--orange); transition: color var(--trans); }
.blog-card-link:hover { color: var(--orange2); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-row { grid-template-columns: repeat(3, 1fr); }
  .step-item::after { display: none; }
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-config { position: static; }
  .full-config-grid { grid-template-columns: 1fr; }
  .seo-grid { grid-template-columns: 1fr; gap: 32px; }
  .sub-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-ctas .btn-outline { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .sub-opts { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .sub-cards { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
