/* =============================================================================
   Vizo IPTV — global stylesheet
   1. Tokens  2. Base  3. Layout  4. Buttons  5. Header & nav  6. Hero & sections
   7. Cards & grids  8. Pricing  9. Promos  10. FAQ & testimonials  11. Content (prose)
   12. Blog  13. Checkout & forms  14. Footer  15. Utilities  16. Responsive
   ========================================================================== */

/* 1. Tokens ----------------------------------------------------------------- */
:root {
  --navy: #0b1230;
  --navy-2: #141d45;
  --navy-3: #1d2960;
  --red: #e9002d;
  --red-dark: #b61e20;
  --red-soft: #fff0f2;
  --ink: #111827;
  --text: #2b3240;
  --muted: #5b6477;
  --line: #e4e7ee;
  --bg: #ffffff;
  --bg-alt: #f5f6fa;
  --green: #15803d;
  --whatsapp: #1fae55;
  --warning-bg: #fff8e6;
  --warning-line: #f3c34b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(11, 18, 48, .08);
  --shadow-lg: 0 20px 45px rgba(11, 18, 48, .14);
  --container: 1200px;
  --narrow: 820px;
  --header-h: 72px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/* 2. Base ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body { margin: 0; font-family: var(--font); font-size: 1.0625rem; line-height: 1.65; color: var(--text); background: var(--bg); overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .6em; font-weight: 800; letter-spacing: -.015em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
a { color: var(--red-dark); text-underline-offset: .18em; }
a:hover { color: var(--red); }
strong { color: var(--ink); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--red); color: #fff; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 1000; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; color: #fff; }
body[data-protect] { -webkit-user-select: none; user-select: none; }
body[data-protect] input, body[data-protect] textarea, body[data-protect] select, body[data-protect] .prose { -webkit-user-select: text; user-select: text; }

/* 3. Layout ----------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: var(--narrow); }
.section { padding: clamp(48px, 7vw, 88px) 0; }
.section-tight { padding-top: 32px; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 820px; margin: 0 auto clamp(28px, 4vw, 44px); }
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
.section-head-spaced { margin-top: 56px; }
.section-title { text-align: center; margin-bottom: 32px; }
.text-center { text-align: center; }
.text-accent { color: var(--red); }
.text-success { color: var(--green); font-weight: 700; }

/* 4. Buttons ---------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: .8em 1.5em; border-radius: 999px; border: 2px solid transparent; font: inherit; font-weight: 700; line-height: 1.2; text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; box-shadow: 0 8px 20px rgba(233, 0, 45, .28); }
.btn-primary:hover { color: #fff; box-shadow: 0 12px 26px rgba(233, 0, 45, .38); }
.btn-outline { border-color: var(--red); color: var(--red-dark); background: #fff; }
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-ghost { border-color: rgba(255, 255, 255, .55); color: #fff; background: rgba(255, 255, 255, .06); }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-3); color: #fff; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #17924a; color: #fff; }
.btn-sm { padding: .55em 1.1em; font-size: .95rem; }
.btn-lg { padding: .95em 1.8em; font-size: 1.08rem; }
.btn-block { display: flex; width: 100%; }
.btn[disabled] { opacity: .6; cursor: wait; transform: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 8px 0 0; }
.btn-row-center { justify-content: center; }
.btn-row-stretch > .btn { flex: 1 1 240px; }

/* 5. Header & navigation ---------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--navy); border-bottom: 1px solid rgba(255, 255, 255, .08); }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; flex-shrink: 0; }
.brand:hover { color: #fff; }
.brand-logo { width: 40px; height: 40px; background: #fff; border-radius: 10px; padding: 3px; }
.brand-name { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; }
.brand-name span { color: var(--red); margin-left: 2px; }
.site-nav { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.menu-item { position: relative; display: flex; align-items: center; }
.menu-item > a { display: block; padding: 10px 12px; color: #dfe3f0; text-decoration: none; font-weight: 600; font-size: .98rem; border-radius: 8px; }
.menu-item > a:hover, .menu-item.is-active > a { color: #fff; background: rgba(255, 255, 255, .07); }
.menu-item.is-active > a { box-shadow: inset 0 -2px 0 var(--red); }
.submenu-toggle { width: 28px; height: 28px; margin-left: -8px; border: 0; background: transparent; color: #dfe3f0; cursor: pointer; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; }
.submenu-toggle::before { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s; }
.submenu-toggle[aria-expanded="true"]::before { transform: translateY(2px) rotate(-135deg); }
.submenu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px; list-style: none; margin: 0; padding: 8px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s, transform .18s, visibility .18s; max-height: 70vh; overflow-y: auto; }
.submenu a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem; }
.submenu a:hover, .submenu a[aria-current="page"] { background: var(--red-soft); color: var(--red-dark); }
.has-children:hover > .submenu, .has-children:focus-within > .submenu, .submenu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 10px; background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }

/* 6. Hero & page headers ---------------------------------------------------- */
.hero { position: relative; color: #dfe3f0; background: radial-gradient(1200px 500px at 85% -10%, rgba(233, 0, 45, .35), transparent 60%), linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, #0e1638 100%); padding: clamp(48px, 7vw, 96px) 0; overflow: hidden; }
.hero-compact { padding: clamp(36px, 5vw, 64px) 0; }
.hero h1, .hero h2, .hero strong { color: #fff; }
.hero .lead { font-size: 1.13rem; color: #c9cfe3; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.eyebrow { display: inline-block; margin-bottom: 14px; padding: 6px 14px; border-radius: 999px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .15); font-size: .9rem; font-weight: 700; color: #fff; }
.hero-media { position: relative; }
.hero-media img { width: 100%; border-radius: 22px; box-shadow: 0 30px 60px rgba(0, 0, 0, .45); aspect-ratio: 3 / 2; object-fit: cover; }
.hero-stats { position: absolute; left: 50%; bottom: -22px; transform: translateX(-50%); display: flex; gap: 6px; list-style: none; margin: 0; padding: 8px; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); width: max-content; max-width: 100%; }
.hero-stats li { padding: 8px 16px; text-align: center; line-height: 1.2; }
.hero-stats li + li { border-left: 1px solid var(--line); }
.hero-stats strong { display: block; color: var(--red); font-size: 1.2rem; }
.hero-stats span { font-size: .8rem; color: var(--muted); font-weight: 600; }
.hero-list { margin: 20px 0 26px; }
.hero-list li::before { background-color: var(--red); }
.page-hero { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #c9cfe3; padding: clamp(36px, 5vw, 64px) 0; }
.page-hero-compact { padding: 32px 0; }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero .lead { font-size: 1.12rem; max-width: 820px; margin: 0; }
.breadcrumb { font-size: .9rem; margin-bottom: 14px; color: #9aa3c0; }
.breadcrumb a { color: #c9cfe3; text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb-light a { color: #c9cfe3; }
.lead { font-size: 1.15rem; }

/* 7. Cards, grids, lists ---------------------------------------------------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin: 28px 0; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card > :last-child { margin-bottom: 0; }
.card h2, .card h3, .card h4 { font-size: 1.18rem; margin-bottom: .45em; }
.feature { text-align: center; }
.feature p { color: var(--muted); font-size: .98rem; }
.icon-circle { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--red), var(--red-dark)); box-shadow: 0 8px 18px rgba(233, 0, 45, .3); flex-shrink: 0; }
.icon-dark { background: var(--navy); box-shadow: none; margin: 0; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow); }
.step p { color: var(--muted); margin: 0; }
.check-list, .cross-list { list-style: none; margin: 0 0 1em; padding: 0; }
.check-list li, .cross-list li { position: relative; padding-left: 30px; margin: 8px 0; }
.check-list li::before, .cross-list li::before { content: ""; position: absolute; left: 0; top: .2em; width: 20px; height: 20px; border-radius: 50%; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' d='M5.5 10.5l3 3 6-7'/%3E%3C/svg%3E") center / 14px no-repeat; }
.cross-list li::before { background: #c9ced9 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath stroke='%23fff' stroke-width='2.6' stroke-linecap='round' d='M6.5 6.5l7 7m0-7l-7 7'/%3E%3C/svg%3E") center / 14px no-repeat; }
.inline-ticks { display: flex; flex-wrap: wrap; gap: 6px 18px; list-style: none; padding: 0; margin: 10px 0 0; font-weight: 700; color: var(--red-dark); font-size: .95rem; }
.inline-ticks li::before { content: "✓ "; }
.chip-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; list-style: none; margin: 0; padding: 0; }
.chip-list li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; font-weight: 600; box-shadow: var(--shadow); }
.device { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.device-icon { font-size: 2.2rem; line-height: 1; margin-bottom: 8px; }
.device span:last-child { color: var(--muted); font-size: .95rem; }
.showcase { display: grid; gap: clamp(36px, 6vw, 72px); }
.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.media-row:nth-child(even) .media-row-img { order: 2; }
.media-row-img img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lg); aspect-ratio: 16 / 10; object-fit: cover; }
.media-row-text h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.media-row-text p { color: var(--muted); }
.rounded { border-radius: var(--radius); box-shadow: var(--shadow); }
.callout { background: var(--red-soft); border: 1px solid #ffd3da; border-left: 5px solid var(--red); border-radius: var(--radius-sm); padding: 22px 24px; margin: 28px 0; }
.callout > :last-child { margin-bottom: 0; }
.callout-warning { background: var(--warning-bg); border-color: #f7e1a4; border-left-color: var(--warning-line); }
.trust-bar { background: #fff; border-bottom: 1px solid var(--line); }
.trust-bar-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; list-style: none; margin: 0 auto; padding-top: 22px; padding-bottom: 22px; }
.trust-bar-list li { display: flex; flex-direction: column; text-align: center; line-height: 1.3; }
.trust-bar-list strong { color: var(--navy); }
.trust-bar-list span { color: var(--muted); font-size: .9rem; }
.channel-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; list-style: none; margin: 0; padding: 0; }
.channel-list li { padding: 9px 16px; border-radius: 10px; background: var(--navy); color: #fff; font-weight: 800; font-size: .95rem; letter-spacing: .01em; }
.channel-list .channel-more { background: var(--red); }
.section-foot { margin: 32px 0 0; color: var(--muted); }
.explainer { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.explainer-text h3 { margin-top: 1.4em; }
.answer-box { background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--red); border-radius: 12px; padding: 20px 22px; margin: 0 0 8px; box-shadow: var(--shadow); }
.answer-box p { margin: 0; }
.answer-box .answer-label { font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--red-dark); margin-bottom: 6px; }
.spec-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); font-size: .96rem; }
.spec-table caption { text-align: left; font-weight: 800; font-size: 1.2rem; color: var(--ink); padding: 0 0 12px; }
.spec-table th, .spec-table td { padding: 11px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th { width: 40%; color: var(--muted); font-weight: 700; }
.spec-table td { color: var(--ink); font-weight: 600; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.league { display: block; text-decoration: none; color: var(--text); }
.league:hover { color: var(--text); border-color: #ffc2cc; }
.league h3 { color: var(--ink); }
.league p { color: var(--muted); margin: 0; font-size: .98rem; }
.league-icon { font-size: 2rem; line-height: 1; display: block; margin-bottom: 12px; }
.device-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.device-link { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2px; padding: 22px 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; color: var(--muted); font-size: .9rem; box-shadow: var(--shadow); transition: transform .2s, border-color .2s; }
.device-link:hover { transform: translateY(-3px); border-color: var(--red); color: var(--muted); }
.device-link strong { color: var(--ink); font-size: 1rem; }
.inline-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; list-style: none; margin: 28px 0 0; padding: 0; color: var(--muted); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.compare-table { width: 100%; min-width: 720px; border-collapse: collapse; background: #fff; font-size: .95rem; }
.compare-table th, .compare-table td { padding: 13px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-table thead th { background: var(--navy); color: #fff; font-weight: 800; }
.compare-table thead th.is-us { background: var(--red); }
.compare-table tbody th { color: var(--ink); font-weight: 700; white-space: nowrap; }
.compare-table td { color: var(--muted); }
.compare-table td.is-us { background: var(--red-soft); color: var(--ink); font-weight: 700; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }
.table-note { margin: 14px 0 0; font-size: .88rem; color: var(--muted); text-align: center; }
.checks { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; counter-reset: check; }
.checks li { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px 20px 72px; box-shadow: var(--shadow); counter-increment: check; }
.checks li::before { content: counter(check); position: absolute; left: 22px; top: 22px; width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.checks h3 { font-size: 1.1rem; margin-bottom: .35em; }
.checks p { margin: 0; color: var(--muted); font-size: .98rem; }
.province-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.province { display: flex; flex-direction: column; gap: 2px; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 12px; text-decoration: none; color: var(--muted); font-size: .9rem; transition: transform .2s, box-shadow .2s; }
.province:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--muted); }
.province strong { color: var(--ink); font-size: 1.02rem; }
.province-all { border-left-color: var(--navy); }
.reseller-teaser { max-width: 900px; background: linear-gradient(160deg, var(--navy), var(--navy-3)); color: #c9cfe3; border-radius: 22px; padding: clamp(28px, 5vw, 52px); }
.reseller-teaser h2, .reseller-teaser strong { color: #fff; }
.reseller-teaser .check-list { margin: 18px 0 24px; }
.plan-guide { margin-top: 48px; }
.plan-guide h3 { text-align: center; font-size: 1.45rem; }
.plan-guide .grid { margin: 20px 0; }
.plan-guide h4 { margin-bottom: .4em; }
.plan-guide .card p { color: var(--muted); margin: 0; }
.plan-guide-note { max-width: 820px; margin: 0 auto; text-align: center; color: var(--muted); }
.coverage-text { margin: 32px auto 0; color: var(--muted); text-align: center; }
.glossary { display: grid; grid-template-columns: max-content 1fr; gap: 10px 20px; margin: 0 0 1.6em; }
.glossary dt { font-weight: 800; color: var(--ink); }
.glossary dd { margin: 0; }
.eyebrow-dark { background: rgba(255, 255, 255, .1); }

/* 8. Pricing ---------------------------------------------------------------- */
.pricing { margin: 0 auto; }
.device-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin: 0 auto 32px; padding: 6px; background: #fff; border: 1px solid var(--line); border-radius: 999px; width: max-content; max-width: 100%; box-shadow: var(--shadow); }
.device-tab { border: 0; background: transparent; font: inherit; font-weight: 700; color: var(--navy); padding: 10px 18px; border-radius: 999px; cursor: pointer; transition: background .15s, color .15s; }
.device-tab:hover { background: var(--bg-alt); }
.device-tab[aria-selected="true"] { background: var(--navy); color: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 2px solid var(--line); border-radius: 20px; padding: 28px 22px 22px; text-align: center; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s, border-color .2s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #ffc2cc; }
.price-card.is-featured { border-color: var(--red); box-shadow: 0 20px 40px rgba(233, 0, 45, .18); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.price-title { font-size: 1.45rem; margin-bottom: .1em; }
.price-devices { color: var(--muted); font-size: .92rem; margin-bottom: 14px; }
.price-old { margin: 0; color: var(--muted); font-size: 1rem; }
.price-save { display: inline-block; margin-left: 6px; padding: 2px 8px; border-radius: 6px; background: #e8f7ee; color: var(--green); font-size: .8rem; font-weight: 800; }
.price-now { margin: 4px 0 0; font-size: 2.4rem; font-weight: 900; color: var(--red-dark); line-height: 1.1; letter-spacing: -.02em; }
.price-now small { font-size: .9rem; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.price-monthly { color: var(--muted); font-size: .9rem; margin: 4px 0 16px; min-height: 1.5em; }
.price-features { text-align: left; font-size: .95rem; margin: 0 0 20px; flex: 1; }
.price-features li { margin: 6px 0; }
.price-guarantee { margin: 12px 0 0; font-size: .88rem; font-weight: 700; color: var(--navy-3); }
.pricing-note { text-align: center; color: var(--muted); font-size: .95rem; margin: 26px 0 0; }

/* 9. Promotional blocks ----------------------------------------------------- */
.flash-sale { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; background: #06091a; color: #c9cfe3; border-left: 5px solid var(--red); border-radius: 14px; padding: 26px clamp(20px, 5vw, 56px); margin: 0 0 48px; box-shadow: 0 10px 30px rgba(0, 0, 0, .25); }
.flash-sale p { margin: 0; }
.flash-sale-title { font-size: 1.7rem; font-weight: 900; color: #fff; }
.flash-sale-title span { color: var(--red); }
.countdown { display: flex; align-items: center; gap: 8px; }
.countdown-box { width: 66px; height: 66px; border-radius: 10px; background: var(--red); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(233, 0, 45, .45); }
.countdown-box span { font-size: 1.8rem; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.countdown-box small { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; opacity: .9; }
.countdown-sep { color: var(--red); font-size: 1.6rem; font-weight: 900; }
.trial-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin: 48px 0 0; padding: 26px 30px; background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--red); border-radius: 12px; box-shadow: var(--shadow); }
.trial-cta-text { flex: 1 1 380px; }
.trial-cta h3 { font-size: 1.5rem; margin-bottom: .2em; }
.trial-cta p { color: var(--muted); margin: 0; }
.cta-band { background: linear-gradient(135deg, var(--red-dark), var(--red)); color: #ffe5ea; padding: 56px 0; }
.cta-band h2 { color: #fff; margin-bottom: .2em; }
.cta-band p { margin: 0; font-size: 1.1rem; }
.cta-band-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band .btn-primary { background: #fff; color: var(--red-dark); box-shadow: none; }
.action-box { margin-top: 26px; padding: 24px; border-radius: 16px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .15); }
.action-box h2 { font-size: 1.45rem; margin-bottom: .3em; }
.action-box p { color: #c9cfe3; }
.status-online { margin: 16px 0 0; font-size: .92rem; display: flex; align-items: center; gap: 8px; }
.status-online .dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, .25); }
.muted { color: var(--muted); }

/* Thank-you / payment page */
.pay-hero { padding: clamp(40px, 6vw, 72px) 0 36px; background: linear-gradient(180deg, #fff, var(--bg-alt)); border-bottom: 1px solid var(--line); }
.pay-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.pay-hero .lead { color: var(--muted); max-width: 620px; margin: 0 auto 24px; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 999px; background: var(--red-soft); border: 1px solid #ffc2cc; color: var(--red-dark); font-weight: 700; font-size: .9rem; margin-bottom: 18px; }
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 3px rgba(233, 0, 45, .18); }
.step-pills { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; list-style: none; margin: 0; padding: 0; }
.step-pills li { padding: 8px 16px; border: 1px solid var(--line); border-radius: 10px; background: #fff; font-weight: 700; color: var(--text); font-size: .95rem; }
.step-pills li.step-arrow { border: 0; background: none; padding: 0; color: #b8bfcf; }
.step-pills li.is-current { background: var(--red-soft); border-color: #ffc2cc; color: var(--red-dark); }
.pay-container { max-width: 1000px; }
.pay-notice { display: flex; gap: 14px; padding: 20px 24px; margin-bottom: 28px; background: var(--warning-bg); border: 1px solid #f7e1a4; border-left: 5px solid var(--warning-line); border-radius: 12px; }
.pay-notice-icon { font-size: 1.4rem; line-height: 1.2; }
.pay-notice p { margin: 0 0 6px; color: #7a4a00; }
.pay-notice strong { color: #5c3700; }
.pay-notice-title { font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: #7a4a00; }
.pay-notice-sub { font-size: .92rem; font-style: italic; margin-top: 8px !important; padding-top: 8px; border-top: 1px solid #f3dca0; }
.pay-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(20px, 4vw, 32px); box-shadow: var(--shadow); }
.pay-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding-bottom: 18px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.pay-card-head h2 { margin: 0 0 2px; font-size: 1.45rem; }
.pay-card-head p { margin: 0; color: var(--muted); }
.pay-card-head img { width: 80px; flex-shrink: 0; }
.pay-rows { margin: 0; padding: 6px 22px; background: var(--bg-alt); border-radius: 14px; }
.pay-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding: 16px 0; border-bottom: 1px solid var(--line); }
.pay-row:last-child { border-bottom: 0; }
.pay-row dt { color: var(--muted); font-weight: 600; }
.pay-row dd { margin: 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.pay-value { font-weight: 800; color: var(--ink); font-size: 1.05rem; -webkit-user-select: all; user-select: all; overflow-wrap: anywhere; }
.pay-email { color: var(--red-dark); }
.pay-memo { padding: 4px 10px; border: 1px dashed #c9ced9; border-radius: 6px; background: #fff; }
.pay-plan { font-weight: 600; font-size: 1rem; -webkit-user-select: text; user-select: text; }
.pay-total .pay-value { font-size: 1.6rem; font-weight: 900; }
.pay-currency { font-weight: 800; color: var(--muted); margin-left: -4px; }
.copy-btn { border: 1px solid #d7dbe4; background: #fff; border-radius: 8px; padding: 6px 14px; font: inherit; font-size: .9rem; font-weight: 700; color: var(--ink); cursor: pointer; transition: background .15s, border-color .15s; }
.copy-btn:hover { border-color: var(--ink); }
.copy-btn.is-copied { background: #e8f7ee; border-color: #9fd9b4; color: var(--green); }
.pay-pending { padding: 20px 22px; background: var(--bg-alt); border-radius: 14px; }
.pay-pending p { margin: 0; }
.pay-secure { margin: 18px 0 0; text-align: center; color: var(--muted); font-size: .95rem; }
.pay-secure span { color: var(--green); font-weight: 800; }
.activation-box { max-width: 900px; margin: 48px auto 0; padding: 28px 24px; background: #effcf3; border: 1px solid #c6ecd3; border-radius: 16px; color: #1c5a33; }
.activation-box h2 { color: #1c5a33; font-size: 1.4rem; margin-bottom: .3em; }
.activation-box p { margin: 0; }
.activation-badge { display: inline-block; margin-bottom: 10px !important; padding: 4px 14px; border-radius: 999px; background: #22c55e; color: #fff; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.pay-trust { max-width: 960px; margin: 0 auto; }
.pay-trust .card { text-align: center; }
.pay-trust .card p { color: var(--muted); margin: 0; font-size: .96rem; }
.pay-trust-icon { display: block; font-size: 1.8rem; margin-bottom: 8px; }
.pay-guides { margin-top: 48px; }
.pay-guides h2 { font-size: 1.4rem; }
.pay-footnote { margin: 40px 0 0; text-align: center; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: #8a93a8; }
.order-number { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin: 0 0 24px; padding: 10px 16px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); color: var(--muted); font-weight: 600; }
.order-number strong { font-size: 1.25rem; letter-spacing: .06em; color: var(--ink); -webkit-user-select: all; user-select: all; }
.pay-howto { margin-top: 32px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(20px, 4vw, 32px); box-shadow: var(--shadow); }
.pay-howto > h2 { margin-bottom: .2em; font-size: 1.45rem; }
.pay-steps { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; counter-reset: paystep; }
.pay-steps li { position: relative; padding: 18px 18px 16px 62px; background: var(--bg-alt); border-radius: 14px; counter-increment: paystep; }
.pay-steps li::before { content: counter(paystep); position: absolute; left: 16px; top: 16px; width: 32px; height: 32px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.pay-steps h3 { font-size: 1.05rem; margin-bottom: .3em; }
.pay-steps p { margin: 0; color: var(--text); font-size: .96rem; overflow-wrap: anywhere; }

/* 10. FAQ & testimonials ---------------------------------------------------- */
.faq-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin: 0 0 12px; transition: box-shadow .2s; }
.faq-item[open] { box-shadow: var(--shadow); border-color: #ffc2cc; }
.faq-item summary { position: relative; list-style: none; cursor: pointer; padding: 18px 54px 18px 20px; font-weight: 700; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; border-radius: 50%; background: var(--red-soft); color: var(--red-dark); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; transition: transform .2s; }
.faq-item[open] summary::after { content: "–"; background: var(--red); color: #fff; }
.faq-answer { padding: 0 20px 18px; color: var(--text); }
.faq-answer > :last-child { margin-bottom: 0; }
.faq-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start; }
.faq-split img { margin-top: 12px; }
.page-faq { margin-top: 48px; }
.testimonial { margin: 0; display: flex; flex-direction: column; }
.testimonial blockquote { margin: 0 0 16px; flex: 1; }
.testimonial blockquote p { margin: 0; font-style: italic; }
.testimonial figcaption { font-weight: 800; color: var(--ink); }
.stars { color: #f5a524; letter-spacing: 2px; font-size: 1.15rem; margin-bottom: 8px; }

/* 11. Content typography (pages & articles) --------------------------------- */
.prose { font-size: 1.07rem; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.5em; }
.prose .card h2, .prose .card h3, .prose .card h4, .prose .callout h2, .prose .callout h3 { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.prose li { margin: .35em 0; }
.prose li > p { margin: 0; }
.prose img { border-radius: 14px; margin: 0 auto; }
.prose figure { margin: 1.8em 0; }
.prose figcaption { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 8px; }
.prose blockquote { margin: 1.6em 0; padding: 16px 22px; background: var(--bg-alt); border-left: 4px solid var(--red); border-radius: 0 12px 12px 0; }
.prose blockquote > :last-child { margin-bottom: 0; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.4em 0; }
.prose table, .table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: .96rem; display: block; overflow-x: auto; }
.prose th, .prose td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th, .prose thead td { background: var(--navy); color: #fff; font-weight: 700; }
.prose tbody tr:nth-child(even) { background: var(--bg-alt); }
.prose details { border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; margin: 0 0 12px; }
.prose details summary { font-weight: 700; cursor: pointer; color: var(--ink); }
.prose details[open] summary { margin-bottom: 10px; }
.prose .grid { margin: 24px 0 32px; }
.prose .card { box-shadow: none; }
.prose .card:hover { transform: none; box-shadow: var(--shadow); }
.prose .btn { margin: 8px 0; text-decoration: none; }
.prose section + section { margin-top: 2.2em; }
.prose-wide { max-width: none; }
.columns-list { columns: 3 200px; column-gap: 32px; list-style: none; padding-left: 0 !important; }
.columns-list li { break-inside: avoid; padding: 6px 0 6px 22px; position: relative; margin: 0; }
.columns-list li::before { content: ""; position: absolute; left: 2px; top: 1em; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

/* 12. Blog ------------------------------------------------------------------ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card-img { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-alt); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.post-card-body p { color: var(--muted); font-size: .98rem; }
.post-card-title { font-size: 1.2rem; margin-bottom: .5em; }
.post-card-title a { color: var(--ink); text-decoration: none; }
.post-card-title a:hover { color: var(--red-dark); }
.post-card.is-featured { grid-column: 1 / -1; flex-direction: row; }
.post-card.is-featured .post-card-img { flex: 1.3; aspect-ratio: auto; min-height: 320px; }
.post-card.is-featured .post-card-body { flex: 1; justify-content: center; padding: 34px; }
.post-card.is-featured .post-card-title { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.post-meta { font-size: .88rem; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.read-more { margin-top: auto; font-weight: 700; text-decoration: none; }
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 44px 0 0; }
.pagination a { min-width: 44px; padding: 10px 14px; border-radius: 10px; border: 1px solid var(--line); background: #fff; text-align: center; text-decoration: none; font-weight: 700; color: var(--navy); }
.pagination a:hover { border-color: var(--red); color: var(--red-dark); }
.pagination a[aria-current="page"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.article-hero { background: linear-gradient(160deg, var(--navy), var(--navy-2)); padding: clamp(36px, 5vw, 64px) 0 clamp(90px, 10vw, 130px); color: #c9cfe3; }
.article-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.article-hero .post-meta { color: #aeb6d2; margin: 0; font-size: .95rem; }
.article-cover { margin-top: clamp(-110px, -8vw, -60px); }
.article-cover img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lg); }
.article .prose { padding: 36px 0 8px; }
.toc { margin: 32px 0 0; padding: 18px 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-alt); }
.toc summary { font-weight: 800; color: var(--ink); cursor: pointer; }
.toc ol { margin: 12px 0 0; padding-left: 1.3em; columns: 2 260px; column-gap: 32px; }
.toc li { margin: 4px 0; break-inside: avoid; }
.toc a { text-decoration: none; color: var(--text); }
.toc a:hover { color: var(--red-dark); text-decoration: underline; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 40px 0 56px; }
.post-nav a { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; background: #fff; }
.post-nav a:hover { border-color: var(--red); }
.post-nav small { color: var(--muted); font-weight: 700; }
.post-nav span { color: var(--ink); font-weight: 700; }
.post-nav-next { text-align: right; grid-column: 2; }
.error-code { font-size: clamp(4rem, 12vw, 7rem); font-weight: 900; line-height: 1; margin: 0 0 8px; color: var(--red); }

/* 13. Checkout & forms ------------------------------------------------------ */
.checkout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 28px; align-items: start; }
.checkout-form { padding: clamp(22px, 4vw, 40px); }
.checkout-form:hover, .checkout-aside .card:hover { transform: none; }
.checkout-aside { display: grid; gap: 20px; position: sticky; top: calc(var(--header-h) + 20px); }
.checkout-aside h2 { font-size: 1.2rem; }
.form-step { border: 0; padding: 0; margin: 0 0 30px; min-width: 0; }
.form-step legend { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 800; color: var(--ink); margin-bottom: 16px; padding: 0; }
.step-num { width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: #fff; font-size: .95rem; display: inline-flex; align-items: center; justify-content: center; }
.picker-label { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 8px; }
.segmented { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; padding: 6px; background: var(--bg-alt); border-radius: 12px; margin-bottom: 20px; }
.segment { border: 0; background: transparent; padding: 12px 0; border-radius: 8px; font: inherit; font-weight: 800; font-size: 1.1rem; color: var(--navy); cursor: pointer; }
.segment:hover { background: #fff; }
.segment[aria-checked="true"] { background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.duration-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.duration-option { position: relative; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 16px 8px 14px; border: 2px solid var(--line); border-radius: 14px; background: #fff; font: inherit; cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.duration-option:hover { border-color: #ffb3c0; }
.duration-option[aria-checked="true"] { border-color: var(--red); box-shadow: 0 0 0 4px rgba(233, 0, 45, .12); }
.duration-name { font-weight: 800; color: var(--ink); }
.duration-price { font-weight: 900; font-size: 1.25rem; color: var(--red-dark); }
.duration-old { color: var(--muted); font-size: .85rem; }
.duration-badge { position: absolute; top: -11px; background: var(--red); color: #fff; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; padding: 2px 8px; border-radius: 999px; white-space: nowrap; }
.radio-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.radio-card { position: relative; display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 2px solid var(--line); border-radius: 12px; cursor: pointer; font-weight: 700; color: var(--ink); line-height: 1.3; }
.radio-card input { accent-color: var(--red); width: 18px; height: 18px; flex-shrink: 0; margin: 0; }
.radio-card:has(input:checked) { border-color: var(--red); background: var(--red-soft); }
.radio-cards-2 { grid-template-columns: repeat(2, 1fr); }
.radio-card span strong { display: block; color: var(--ink); }
.radio-card span small { display: block; font-weight: 500; color: var(--muted); font-size: .88rem; margin-top: 2px; }
.renewal-field { margin-top: 18px; }
.label-note { text-transform: none; letter-spacing: 0; font-weight: 600; }
.field-hint { margin: 6px 0 0; font-size: .88rem; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; min-width: 0; }
.form-group label, .plan-select-fallback label { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 6px; }
.form-control { width: 100%; padding: 14px 16px; border: 1px solid #d7dbe4; border-radius: 12px; font: inherit; font-size: 1rem; color: var(--ink); background: #f9fafb; transition: border-color .15s, box-shadow .15s, background-color .15s; -webkit-appearance: none; appearance: none; }
.form-control:focus { outline: none; background: #fff; border-color: var(--red); box-shadow: 0 0 0 4px rgba(233, 0, 45, .14); }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%235b6477' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M6 8l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 20px; padding-right: 44px; }
.form-control.is-invalid { border-color: var(--red); background: var(--red-soft); }
.field-error { color: var(--red-dark); font-size: .88rem; font-weight: 600; margin: 6px 0 0; }
.form-alert { background: var(--red-soft); border: 1px solid #ffc2cc; color: var(--red-dark); font-weight: 700; padding: 14px 18px; border-radius: 12px; }
.form-status { text-align: center; font-weight: 700; margin: 14px 0 0; min-height: 1.5em; }
.form-status.is-error { color: var(--red-dark); }
.form-status.is-success { color: var(--green); }
.hp-field { position: absolute !important; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.order-summary { margin: 0 0 20px; padding: 22px 24px; border: 2px dashed #cfd5e2; border-radius: 16px; background: var(--bg-alt); }
.order-summary h2 { font-size: 1.15rem; margin-bottom: 12px; }
.order-summary dl { margin: 0; }
.order-summary dl > div { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.order-summary dt { color: var(--muted); font-weight: 600; }
.order-summary dd { margin: 0; font-weight: 700; color: var(--ink); text-align: right; }
.order-summary .summary-total { border-bottom: 0; padding-top: 12px; }
.order-summary .summary-total dt { color: var(--ink); font-weight: 800; font-size: 1.1rem; }
.order-summary .summary-total dd { color: var(--red-dark); font-size: 1.6rem; font-weight: 900; line-height: 1.1; }
.summary-note { margin: 12px 0 0; font-size: .92rem; color: var(--muted); }
.pay-note { display: flex; align-items: center; gap: 16px; margin-top: 22px; padding: 16px 18px; border-radius: 12px; background: #f0f7ff; border: 1px solid #cce5ff; border-left: 5px solid #0056b3; }
.pay-note img { width: 80px; flex-shrink: 0; }
.pay-note p { margin: 0; font-size: .95rem; }
.contact-card { display: flex; align-items: center; gap: 18px; margin: 0 0 18px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-card h2 { margin: 0 0 4px; font-size: 1.4rem; }
.contact-card p { margin: 0; font-size: 1.1rem; font-weight: 700; }
.prose .btn-row { margin: 24px 0 8px; }
.thanks-note { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); }

/* 14. Footer ---------------------------------------------------------------- */
.site-footer { background: #070b1f; color: #aab2cc; padding: 64px 0 0; font-size: .98rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-title { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: 8px 0; }
.footer-links a, .site-footer p a { color: #aab2cc; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-about p { margin: 16px 0 0; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badges span { padding: 5px 10px; border-radius: 8px; background: rgba(255, 255, 255, .06); font-size: .85rem; font-weight: 600; color: #dfe3f0; }
.brand-light .brand-name { color: #fff; }
.social-links { display: flex; gap: 10px; list-style: none; margin: 0 0 18px; padding: 0; }
.social-links a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, .08); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.social-links a:hover { background: var(--red); }
.social-links svg { width: 20px; height: 20px; fill: #fff; }
.footer-pay { margin: 0; }
.site-footer strong { color: #fff; }
.footer-bottom { margin-top: 48px; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .9rem; }
.footer-bottom p { margin: 0; text-align: center; }
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(0, 0, 0, .25); transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

/* 15. Motion preferences ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* 16. Responsive ------------------------------------------------------------ */
@media (max-width: 1100px) {
  .menu-item > a { padding: 10px 9px; font-size: .94rem; }
  .pricing-grid, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; flex-direction: column; align-items: stretch; gap: 16px; padding: 16px 20px 32px; background: var(--navy); overflow-y: auto; transform: translateX(100%); visibility: hidden; transition: transform .25s ease, visibility .25s; }
  .site-nav.is-open { transform: translateX(0); visibility: visible; }
  .menu { flex-direction: column; align-items: stretch; gap: 0; }
  .menu-item { flex-wrap: wrap; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .menu-item > a { flex: 1; padding: 14px 4px; font-size: 1.05rem; }
  .menu-item.is-active > a { box-shadow: none; color: #fff; }
  .submenu-toggle { width: 44px; height: 44px; margin: 0; }
  .submenu { position: static; flex-basis: 100%; min-width: 0; max-height: none; background: rgba(255, 255, 255, .04); box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; margin: 0 0 12px; }
  .has-children:hover > .submenu, .has-children:focus-within > .submenu { display: none; }
  .submenu.is-open, .has-children:hover > .submenu.is-open, .has-children:focus-within > .submenu.is-open { display: block; }
  .submenu a { color: #dfe3f0; }
  .submenu a:hover, .submenu a[aria-current="page"] { background: rgba(255, 255, 255, .08); color: #fff; }
  .header-cta { align-self: stretch; }
  body.nav-open { overflow: hidden; }
  .hero-grid, .media-row, .faq-split, .checkout { grid-template-columns: 1fr; }
  .hero-media { margin-top: 8px; }
  .media-row:nth-child(even) .media-row-img { order: 0; }
  .steps, .explainer { grid-template-columns: 1fr; }
  .device-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-bar-list { grid-template-columns: repeat(2, 1fr); }
  .faq-2col { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-card.is-featured { flex-direction: column; }
  .post-card.is-featured .post-card-img { min-height: 0; aspect-ratio: 16 / 9; }
  .checkout-aside { position: static; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .container { padding: 0 16px; }
  .pricing-grid, .grid-4, .post-grid, .form-grid, .radio-cards { grid-template-columns: 1fr; }
  .device-grid { grid-template-columns: repeat(2, 1fr); }
  .checks { grid-template-columns: 1fr; }
  .checks li { padding-left: 66px; }
  .glossary { grid-template-columns: 1fr; gap: 2px; }
  .glossary dd { margin-bottom: 10px; }
  .duration-options { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .device-tabs { border-radius: 16px; width: 100%; }
  .device-tab { flex: 1 1 30%; padding: 10px 8px; }
  .hero-stats { position: static; transform: none; width: 100%; margin-top: 12px; justify-content: space-between; }
  .hero-stats li { padding: 6px 8px; }
  .flash-sale { flex-direction: column; text-align: center; }
  .countdown-box { width: 58px; height: 58px; }
  .trial-cta { padding: 22px; }
  .trial-cta .btn, .cta-band .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { grid-column: 1; }
  .whatsapp-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
  .order-summary dl > div { flex-wrap: wrap; }
  .pay-note { flex-direction: column; align-items: flex-start; }
}
@media print {
  .site-header, .site-footer, .whatsapp-float, .trial-cta, .cta-band, .flash-sale { display: none !important; }
  body { color: #000; }
}
