﻿:root {
  --bg: #f5f7f4;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #667085;
  --line: #dfe5df;
  --orange: #f97316;
  --orange-dark: #c2410c;
  --green: #16a34a;
  --green-soft: #e8f7ee;
  --charcoal: #1f2937;
  --shadow: 0 18px 50px rgba(17, 24, 39, .10);
  --radius: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif; background: var(--bg); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(249, 115, 22, .45); outline-offset: 3px; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.topbar { background: #101828; color: #d0d5dd; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; gap: 14px; padding: 8px 0; flex-wrap: wrap; }
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(31,41,55,.08); }
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.03em; }
.logo-mark { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, #111827, #0f5132 55%, #f97316); box-shadow: 0 12px 26px rgba(22, 163, 74, .22); color: white; flex: 0 0 auto; }
.logo-mark svg { width: 27px; height: 27px; }
.brand-text span { display: block; font-size: 11px; color: var(--green); letter-spacing: .08em; text-transform: uppercase; }
.brand-text strong { font-size: 20px; }
.nav-links { display: flex; align-items: center; gap: 20px; color: #344054; font-weight: 700; font-size: 14px; }
.nav-vpn-link { position: relative; display: inline-flex; flex-direction: column; align-items: center; gap: 2px; color: #087443; }
.vpn-offer-cloud { display: inline-flex; align-items: center; justify-content: center; min-height: 20px; padding: 0 10px; border-radius: 999px; background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; font-size: 10px; font-weight: 950; line-height: 1; box-shadow: 0 8px 18px rgba(249,115,22,.14); }
.vpn-offer-cloud::before { content: ""; width: 7px; height: 7px; margin-right: 5px; border-radius: 999px; background: currentColor; box-shadow: 4px -3px 0 -1px currentColor, 8px 0 0 -1px currentColor; opacity: .75; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-select, .sort-select, .filter-select { min-height: 42px; border: 1px solid var(--line); border-radius: 10px; padding: 0 12px; background: white; color: var(--charcoal); }
.icon-btn { width: 44px; height: 44px; border: 1px solid var(--line); background: white; border-radius: 12px; display: grid; place-items: center; position: relative; }
.cart-count { position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; border-radius: 99px; background: var(--orange); color: white; font-size: 12px; display: grid; place-items: center; font-weight: 900; }
.menu-toggle { display: none; }
.btn { min-height: 46px; border-radius: 12px; border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 18px; font-weight: 900; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: white; box-shadow: 0 14px 28px rgba(249, 115, 22, .22); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-dark { background: #111827; color: white; }
.btn-outline { background: white; color: #111827; border: 1px solid var(--line); }
.btn-green { background: var(--green); color: white; }
.hero { padding: 66px 0 42px; background: linear-gradient(135deg, #f8faf7 0%, #eef6ee 52%, #fff4ea 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 38px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--green-soft); color: #087443; border: 1px solid #b9e6c9; padding: 8px 12px; border-radius: 999px; font-size: 13px; font-weight: 900; }
h1 { margin: 18px 0 18px; font-size: clamp(42px, 6vw, 76px); line-height: .96; letter-spacing: -.055em; }
.lead { color: #475467; font-size: clamp(17px, 2vw, 21px); line-height: 1.65; max-width: 650px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-carousel { position: relative; min-height: 470px; border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; background: #111827; isolation: isolate; }
.hero-track, .hero-slide { position: absolute; inset: 0; }
.hero-slide { margin: 0; opacity: 0; transform: scale(1.025); transition: opacity .7s ease, transform 1.2s ease; }
.hero-slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,24,39,.04) 0%, rgba(17,24,39,.18) 45%, rgba(17,24,39,.78) 100%); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide figcaption { position: absolute; left: 24px; right: 24px; bottom: 28px; z-index: 2; color: white; display: grid; gap: 8px; max-width: 430px; }
.hero-slide figcaption strong { font-size: 28px; line-height: 1.05; letter-spacing: 0; }
.hero-slide figcaption span { color: rgba(255,255,255,.82); line-height: 1.5; }
.carousel-btn { position: absolute; top: 50%; z-index: 3; width: 42px; height: 42px; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.38); border-radius: 999px; background: rgba(17,24,39,.54); color: white; font-size: 32px; line-height: 1; display: grid; place-items: center; backdrop-filter: blur(10px); }
.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }
.carousel-dots { position: absolute; left: 24px; bottom: 16px; z-index: 4; display: flex; gap: 8px; }
.carousel-dots button { width: 28px; height: 4px; border: 0; border-radius: 999px; background: rgba(255,255,255,.44); padding: 0; }
.carousel-dots button.is-active { background: var(--orange); }
.section { padding: 72px 0; }
.section.alt { background: white; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.section h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.04em; }
.section p.muted, .muted { color: var(--muted); line-height: 1.65; }
.grid { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(17,24,39,.06); }
.benefit { padding: 24px; }
.benefit svg, .category-icon, .product-art { color: var(--green); }
.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-media { height: 220px; background: linear-gradient(135deg, #f8fafc, #e8f7ee); display: grid; place-items: center; position: relative; overflow: hidden; }
.product-art { width: 116px; height: 116px; }
.product-photo { width: 100%; height: 100%; object-fit: contain; padding: 18px; mix-blend-mode: multiply; }
.badge { position: absolute; top: 12px; left: 12px; background: #111827; color: white; border-radius: 999px; padding: 6px 10px; font-size: 12px; font-weight: 900; }
.badge.offer { background: var(--orange); }
.product-body { padding: 18px; display: grid; gap: 10px; flex: 1; }
.product-title { font-size: 18px; font-weight: 900; line-height: 1.25; }
.price { display: flex; gap: 10px; align-items: center; font-weight: 900; font-size: 22px; }
.old-price { color: #98a2b3; text-decoration: line-through; font-size: 14px; }
.stock { color: var(--green); font-weight: 800; font-size: 13px; }
.stock.out { color: #b42318; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; }
.category-card { padding: 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 118px; }
.steps { counter-reset: step; }
.step { padding: 24px; position: relative; }
.step::before { counter-increment: step; content: counter(step); width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--orange); color: white; font-weight: 900; margin-bottom: 18px; }
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #f8fafc; font-size: 13px; color: #475467; }
.controls { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 12px; margin-bottom: 22px; }
.input { width: 100%; min-height: 46px; border: 1px solid var(--line); border-radius: 12px; padding: 0 14px; background: white; }
.drawer { position: fixed; inset: 0; z-index: 100; pointer-events: none; }
.drawer.open { pointer-events: auto; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(17,24,39,.45); opacity: 0; transition: opacity .2s; }
.drawer.open .drawer-backdrop { opacity: 1; }
.cart-panel { position: absolute; right: 0; top: 0; height: 100%; width: min(440px, 100%); background: white; padding: 22px; transform: translateX(100%); transition: transform .24s; overflow-y: auto; }
.drawer.open .cart-panel { transform: translateX(0); }
.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 10px; border-bottom: 1px solid var(--line); padding: 14px 0; }
.qty { display: flex; align-items: center; gap: 8px; }
.qty button { width: 32px; height: 32px; border: 1px solid var(--line); background: white; border-radius: 9px; }
.total-line { display: flex; justify-content: space-between; padding: 8px 0; }
.total-line strong { font-size: 20px; }
.footer { background: #111827; color: #e5e7eb; padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 28px; }
.footer a, .footer p { color: #cbd5e1; }
.footer ul { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.payment-icons span { border: 1px solid rgba(255,255,255,.18); border-radius: 8px; padding: 7px 10px; color: #e5e7eb; font-weight: 900; font-size: 12px; }
.faq details { background: white; border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.faq details + details { margin-top: 10px; }
.faq summary { font-weight: 900; cursor: pointer; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { padding: 22px; display: grid; gap: 16px; }
.review-card p { margin: 0; color: #344054; line-height: 1.65; }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.stars { color: var(--orange); font-size: 18px; letter-spacing: 0; white-space: nowrap; }
.review-meta { display: grid; gap: 4px; color: var(--muted); font-size: 13px; }
.review-meta strong { color: var(--ink); font-size: 15px; }
.review-form-wrap { margin-top: 22px; }
.review-form { padding: 24px; }
.review-form h3 { margin: 0; font-size: 24px; }
.review-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.review-toast { position: fixed; right: 22px; bottom: 22px; z-index: 120; width: min(360px, calc(100% - 32px)); border-radius: 8px; background: #111827; color: white; padding: 16px 18px; box-shadow: 0 18px 50px rgba(17,24,39,.28); opacity: 0; transform: translateY(12px); transition: opacity .22s ease, transform .22s ease; }
.review-toast.show { opacity: 1; transform: translateY(0); }
.review-toast strong { display: block; margin-bottom: 5px; }
.review-toast span { color: #d0d5dd; line-height: 1.45; }
.form { display: grid; gap: 14px; }
textarea.input { min-height: 130px; padding-top: 12px; resize: vertical; }
.notice { padding: 18px; border-radius: var(--radius); background: #fff7ed; border: 1px solid #fed7aa; color: #7c2d12; }
.btn-xl { min-height: 58px; padding: 0 24px; font-size: 16px; border-radius: 8px; }
.vpn-home { background: #f8fafc; }
.vpn-card-wide { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; background: white; border: 1px solid var(--line); border-radius: 8px; padding: 28px; box-shadow: var(--shadow); }
.vpn-card-wide h2 { margin-top: 16px; }
.vpn-card-wide .vpn-showcase { min-height: 430px; }
.vpn-mini-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; }
.vpn-mini-list span { background: var(--green-soft); border: 1px solid #b9e6c9; color: #087443; border-radius: 999px; padding: 8px 10px; font-size: 13px; font-weight: 900; }
.affiliate-note { color: #667085; font-size: 13px; line-height: 1.5; margin: 12px 0 0; }
.vpn-hero { padding: 84px 0 58px; background: radial-gradient(circle at 72% 18%, rgba(111,232,119,.22), transparent 34%), linear-gradient(135deg, #f8faf7 0%, #eef6ee 58%, #fff 100%); overflow: hidden; }
.vpn-hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 46px; }
.vpn-hero-copy { max-width: 690px; }
.vpn-hero h1 { font-size: clamp(42px, 5.8vw, 76px); line-height: .94; margin-bottom: 22px; }
.vpn-hero .lead { max-width: 650px; font-size: clamp(20px, 2vw, 26px); }
.vpn-actions { gap: 14px; margin-top: 28px; }
.vpn-offer-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; padding: 10px 16px; border-radius: 999px; background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; font-weight: 950; box-shadow: 0 12px 28px rgba(249,115,22,.14); }
.vpn-offer-kicker::before { content: ""; width: 16px; height: 10px; border-radius: 999px; background: currentColor; box-shadow: 7px -5px 0 -2px currentColor, 14px 0 0 -3px currentColor; opacity: .82; }
.vpn-showcase { position: relative; min-height: 560px; margin: 0; border-radius: 8px; overflow: hidden; background: #0b1220; border: 1px solid rgba(17,24,39,.12); box-shadow: 0 28px 80px rgba(17,24,39,.22); }
.vpn-showcase-bg { position: absolute; inset: 0; }
.vpn-showcase-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,18,32,.94), rgba(11,18,32,.58) 45%, rgba(11,18,32,.1)); }
.vpn-showcase-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.vpn-tv-overlay { position: absolute; left: 18%; right: 24%; top: 15%; height: 42%; z-index: 2; display: grid; place-items: center; overflow: hidden; border-radius: 2px; background: #050a12; box-shadow: inset 0 0 0 2px rgba(255,255,255,.06); }
.vpn-tv-overlay img { width: 100%; height: 190%; object-fit: cover; object-position: top center; opacity: .92; filter: saturate(1.08) contrast(1.06); }
.vpn-stick { position: absolute; left: 51%; bottom: 23%; z-index: 3; width: 92px; height: 28px; border-radius: 7px; background: linear-gradient(135deg, #05070b, #182230); box-shadow: 0 14px 28px rgba(0,0,0,.42); }
.vpn-stick::after { content: ""; position: absolute; right: -34px; top: 12px; width: 34px; height: 3px; background: #101828; }
.vpn-showcase figcaption { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; color: #e5e7eb; font-size: 13px; line-height: 1.5; }
.vpn-trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.vpn-benefit-strip { padding: 20px 0; background: #101828; }
.vpn-benefit-strip .vpn-trust div { min-height: 92px; display: grid; align-items: center; padding: 18px; border-radius: 8px; background: rgba(255,255,255,.08); color: white; border: 1px solid rgba(255,255,255,.14); }
.vpn-affiliate-carousel-section { padding: 64px 0; background: white; }
.vpn-affiliate-carousel { position: relative; min-height: 520px; border-radius: 8px; overflow: hidden; background: #0b1220; box-shadow: var(--shadow); }
.vpn-affiliate-carousel-hero { min-height: 560px; box-shadow: 0 28px 80px rgba(17,24,39,.22); }
.vpn-affiliate-carousel-embed { min-height: 360px; align-self: stretch; }
.vpn-affiliate-track, .vpn-affiliate-slide { position: absolute; inset: 0; }
.vpn-affiliate-slide { opacity: 0; transform: scale(1.02); transition: opacity .55s ease, transform .9s ease; }
.vpn-affiliate-slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.vpn-affiliate-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.14)); pointer-events: none; }
.vpn-affiliate-slide img { width: 100%; height: 100%; object-fit: contain; background: #05070b; }
.vpn-affiliate-carousel .carousel-dots { bottom: 20px; }
.vpn-trust-inline { margin-top: 30px; }
.vpn-trust-inline div { min-height: 76px; display: flex; align-items: center; padding: 16px; border-radius: 8px; background: white; border: 1px solid var(--line); box-shadow: 0 14px 35px rgba(17,24,39,.08); }
.vpn-screen-section { padding-bottom: 10px; }
.vpn-inline-section { display: grid; gap: 18px; }
.vpn-screen-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 26px; align-items: end; }
.vpn-screen-grid figure { margin: 0; padding: 14px; border-radius: 8px; background: linear-gradient(180deg, #101828, #1f2937); box-shadow: 0 18px 50px rgba(17,24,39,.2); }
.vpn-screen-grid img { width: 100%; height: auto; display: block; border-radius: 18px; }
.vpn-device-shots { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.vpn-device-shots article { display: grid; grid-template-columns: 155px 1fr; gap: 22px; align-items: center; padding: 20px; border-radius: 8px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.vpn-device-shots img { width: 100%; border-radius: 18px; background: #101828; box-shadow: 0 16px 38px rgba(17,24,39,.22); }
.vpn-device-shots p { color: var(--muted); line-height: 1.75; margin-bottom: 0; }
.vpn-alert { padding: 28px; border-radius: 8px; background: #fffbeb; border: 1px solid #facc15; box-shadow: 0 14px 35px rgba(180,83,9,.08); }
.vpn-alert h2 { margin: 0 0 10px; color: #92400e; }
.vpn-alert p { margin: 0; color: #78350f; line-height: 1.75; }
.vpn-step-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 16px; counter-reset: vpn-step; }
.vpn-step-grid article { min-height: 76px; display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 8px; background: white; border: 1px solid var(--line); box-shadow: 0 8px 22px rgba(17,24,39,.05); }
.vpn-step-grid span { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 8px; background: var(--orange); color: white; font-weight: 950; font-size: 15px; }
.vpn-step-grid p { margin: 0; color: #344054; line-height: 1.35; font-weight: 750; font-size: 14px; }
.vpn-compare { border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
.vpn-compare table { margin: 0; }
.vpn-compare th { background: #101828; color: white; }
.vpn-compare td { line-height: 1.55; }
.article-layout { display: grid; gap: 22px; }
.vpn-article-layout { max-width: 1060px; }
.vpn-article-card { position: relative; padding: 34px 36px 34px 92px; overflow: hidden; }
.vpn-article-card > span { position: absolute; left: 28px; top: 32px; color: var(--green); font-size: 28px; font-weight: 950; letter-spacing: 0; }
.vpn-article-card h2 { margin-top: 0; font-size: clamp(28px, 3vw, 42px); }
.vpn-article-card p { max-width: 900px; font-size: 15px; line-height: 1.62; margin: 0; }
.vpn-article-card p:last-child { margin-bottom: 0; }
.vpn-benefit-grid .benefit { border-top: 4px solid var(--green); }
.vpn-cta { display: grid; gap: 14px; align-items: center; padding: 36px; background: linear-gradient(135deg, #ffffff, #e8f7ee); border-radius: 8px; }
.vpn-cta h2 { font-size: clamp(30px, 4vw, 48px); margin: 0; }
.vpn-cta p { max-width: 760px; color: var(--muted); line-height: 1.7; margin: 0; }
.vpn-cta .btn { width: fit-content; }
.vpn-cta-final { background: linear-gradient(135deg, #101828, #14532d); color: white; }
.vpn-cta-final p, .vpn-cta-final .affiliate-note { color: #d1d5db; }
.vpn-faq-block { margin-top: 8px; }
.vpn-product-card { margin-top: 24px; padding: 22px; border-left: 4px solid var(--green); }
.vpn-product-card .vpn-affiliate-carousel-embed { min-height: 240px; margin: 18px 0; }
.mobile-affiliate-bar { display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; background: white; border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(17,24,39,.22); border-radius: 8px; padding: 10px 52px 10px 10px; }
.mobile-affiliate-bar.show { display: block; }
.mobile-affiliate-bar .btn { width: 100%; }
.mobile-affiliate-bar button { position: absolute; right: 8px; top: 8px; width: 36px; height: 36px; border: 1px solid var(--line); background: white; border-radius: 8px; }
.breadcrumb { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.product-detail { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: start; }
.gallery { min-height: 420px; border-radius: 24px; background: linear-gradient(135deg, #f8fafc, #e8f7ee); display: grid; place-items: center; border: 1px solid var(--line); overflow: hidden; }
.gallery .product-photo { min-height: 390px; padding: 28px; }
.image-credit { color: var(--muted); font-size: 13px; line-height: 1.5; }
.image-credit a { color: var(--green); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.video-card { overflow: hidden; }
.video-frame { aspect-ratio: 16 / 9; background: #101828; }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-body { padding: 16px; display: grid; gap: 12px; }
.detail-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin: 18px 0; }
.detail-list div { background: #f8fafc; border: 1px solid var(--line); padding: 12px; border-radius: 12px; }
.legal-list { display: grid; gap: 18px; }
.legal-list article { padding: 24px; }
.guide-grid { display: grid; gap: 18px; margin-top: 28px; }
.article-card { display: grid; grid-template-columns: 150px 1fr; overflow: hidden; }
.article-visual { min-height: 100%; display: grid; place-items: center; background: linear-gradient(135deg, #111827, #14532d); color: white; }
.guide-video { background: #101828; display: grid; align-items: center; }
.guide-video .video-card { border: 0; border-radius: 0; box-shadow: none; height: 100%; }
.guide-video .video-body { display: none; }
.guide-video .video-frame { min-height: 100%; }
.article-body { padding: 22px; }
.article-body h2 { font-size: clamp(22px, 3vw, 32px); }
.meta { color: var(--green); font-weight: 900; font-size: 13px; letter-spacing: .02em; margin-top: 0; }
.section.compact { padding: 48px 0 0; }
@media (max-width: 980px) {
  .hero-grid, .product-detail, .vpn-card-wide, .vpn-hero-grid { grid-template-columns: 1fr; }
  .grid-4, .grid-3, .footer-grid, .review-grid, .vpn-trust, .vpn-screen-grid { grid-template-columns: repeat(2,1fr); }
  .vpn-device-shots, .vpn-step-grid { grid-template-columns: 1fr; }
  .vpn-hero { padding-top: 56px; }
  .vpn-affiliate-carousel { min-height: 420px; }
  .vpn-affiliate-carousel-hero { min-height: 500px; }
  .vpn-affiliate-carousel-embed { min-height: 340px; }
  .vpn-showcase { min-height: 500px; }
  .controls { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: grid; }
  .mobile-menu.open { display: grid; }
}
.mobile-menu { display: none; gap: 8px; padding: 0 0 16px; }
.mobile-menu a { padding: 12px; background: white; border: 1px solid var(--line); border-radius: 10px; font-weight: 800; }
.mobile-menu .nav-vpn-link { align-items: flex-start; }
@media (max-width: 640px) {
  .topbar { display: none; }
  .nav { height: 68px; }
  .brand-text strong { font-size: 17px; }
  .brand-text span { display: none; }
  .hero { padding-top: 38px; }
  .hero-carousel { min-height: 340px; }
  .hero-slide figcaption { left: 18px; right: 18px; bottom: 26px; }
  .hero-slide figcaption strong { font-size: 23px; }
  .carousel-btn { width: 38px; height: 38px; font-size: 28px; }
  .grid-4, .grid-3, .footer-grid, .controls, .product-actions, .detail-list, .review-grid, .review-form-grid, .vpn-trust, .vpn-screen-grid { grid-template-columns: 1fr; }
  .btn-xl { min-height: 54px; width: 100%; }
  .vpn-hero { padding: 42px 0 34px; }
  .vpn-hero h1 { font-size: clamp(36px, 11vw, 48px); }
  .vpn-affiliate-carousel-section { padding: 42px 0; }
  .vpn-affiliate-carousel { min-height: 270px; }
  .vpn-affiliate-carousel-hero { min-height: 300px; }
  .vpn-affiliate-carousel-embed, .vpn-product-card .vpn-affiliate-carousel-embed { min-height: 230px; }
  .vpn-actions { display: grid; }
  .vpn-showcase, .vpn-card-wide .vpn-showcase { min-height: 440px; }
  .vpn-tv-overlay { left: 12%; right: 17%; top: 18%; height: 36%; }
  .vpn-stick { left: 48%; bottom: 24%; width: 74px; height: 24px; }
  .vpn-screen-grid figure { padding: 12px; }
  .vpn-device-shots article { grid-template-columns: 1fr; }
  .vpn-device-shots img { max-width: 210px; margin: 0 auto; }
  .vpn-step-grid article { min-height: auto; }
  .vpn-article-card { padding: 28px 22px; }
  .vpn-article-card > span { position: static; display: block; margin-bottom: 10px; }
  .vpn-cta { padding: 28px 22px; }
  .vpn-cta .btn { width: 100%; }
  .article-card { grid-template-columns: 1fr; }
  .article-visual { min-height: 120px; }
  .section-head { display: block; }
  .nav-actions .btn { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide, .review-toast, .btn { transition: none; }
}

