:root {
  color-scheme: light;
  --ink: #12233f;
  --muted: #60708a;
  --blue: #2378f2;
  --blue-dark: #125fd0;
  --blue-soft: #eaf3ff;
  --cyan: #46c6ed;
  --line: #dce8f6;
  --surface: #ffffff;
  --background: #f7faff;
  --shadow: 0 24px 70px rgba(43, 91, 154, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
a { color: inherit; }
[hidden] { display: none !important; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(220, 232, 246, 0.78);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #183258;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand strong { color: var(--blue); }

.brand-mark {
  position: relative;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #3090ff, #1768e4);
  box-shadow: 0 8px 18px rgba(35, 120, 242, 0.25);
}

.brand-mark::before {
  width: 15px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 9px 9px 11px 11px;
  content: "";
}

.brand-mark span {
  position: absolute;
  width: 4px;
  height: 6px;
  border-radius: 2px;
  background: #fff;
}

nav { display: flex; align-items: center; gap: 32px; }
nav a { color: #52647e; font-size: 14px; font-weight: 650; text-decoration: none; }
nav a:hover { color: var(--blue); }

nav .nav-cta {
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(132, 211, 255, 0.26), transparent 28%),
    radial-gradient(circle at 15% 35%, rgba(99, 159, 255, 0.11), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.hero::after {
  position: absolute;
  right: -130px;
  bottom: 10px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(93, 171, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(93, 171, 255, 0.04), 0 0 0 140px rgba(93, 171, 255, 0.025);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 640px;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  padding-block: 72px 88px;
}

.eyebrow, .kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-status { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid #cfe4ff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: #2ac68f; box-shadow: 0 0 0 4px rgba(42, 198, 143, 0.13); animation: status-pulse 2.8s ease-in-out infinite; }
.verified-date { margin: 0; color: #75859a; font-size: 13px; font-weight: 600; white-space: nowrap; }

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(42, 198, 143, 0.13); opacity: 1; transform: scale(1); }
  50% { box-shadow: 0 0 0 8px rgba(42, 198, 143, 0.04); opacity: .72; transform: scale(.88); }
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 25px 0 22px;
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}
h1 span { color: var(--blue); }

.hero-lead {
  max-width: 610px;
  margin-bottom: 29px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 26px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  padding: 13px 24px;
  cursor: pointer;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, input:focus-visible, .dialog-close:focus-visible, a:focus-visible { outline: 3px solid rgba(35, 120, 242, 0.32); outline-offset: 3px; }
.button-primary { background: linear-gradient(135deg, #2c88f8, #1769df); color: #fff; box-shadow: 0 13px 28px rgba(35, 120, 242, 0.27); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(35, 120, 242, 0.34); }
.button-secondary { border: 1px solid #c8d9ed; background: #fff; color: var(--ink); }
.button-secondary:hover { border-color: #99bce8; background: #f7fbff; }
.hero-actions .button { height: 52px; padding-block: 0; }
.hero-actions .button-primary { font-weight: 700; }
.hero-actions .button-secondary { border-color: #bcd8f7; color: var(--blue); box-shadow: none; font-weight: 600; }
.hero-actions .button-secondary span { margin-left: 8px; }
.text-link { color: #345374; font-size: 14px; font-weight: 750; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 6px; color: var(--blue); transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(4px); }

.hero-notes { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 27px 0 0; padding: 0; color: #64758c; font-size: 13px; list-style: none; }
.hero-notes span { margin-right: 5px; color: #21aa7a; font-weight: 900; }

.hero-visual { position: relative; min-height: 450px; display: grid; place-items: center; }
.glow { position: absolute; width: 390px; height: 390px; border-radius: 50%; background: radial-gradient(circle, rgba(91, 178, 255, 0.26), rgba(91, 178, 255, 0.03) 64%, transparent 68%); filter: blur(2px); }
.connection-card {
  position: relative;
  width: min(340px, 84vw);
  border: 1px solid rgba(197, 220, 245, 0.85);
  border-radius: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 35px 80px rgba(54, 106, 170, 0.19);
  text-align: center;
  backdrop-filter: blur(10px);
}
.connection-top { display: flex; align-items: center; gap: 8px; color: #536986; font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: 0.08em; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #27ca91; box-shadow: 0 0 0 4px rgba(39, 202, 145, 0.13); }
.signal { display: flex; align-items: end; gap: 2px; height: 12px; margin-left: auto; }
.signal i { display: block; width: 3px; border-radius: 1px; background: #31bd89; }
.signal i:nth-child(1) { height: 5px; } .signal i:nth-child(2) { height: 8px; } .signal i:nth-child(3) { height: 12px; }
.shield { position: relative; display: grid; width: 112px; height: 126px; margin: 26px auto 17px; place-items: center; background: linear-gradient(150deg, #43a4ff, #216ee7); border-radius: 55% 55% 62% 62% / 40% 40% 74% 74%; box-shadow: 0 19px 35px rgba(35, 120, 242, 0.28), inset 0 0 0 9px rgba(255,255,255,.08); }
.shield::before { position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.27); border-radius: inherit; content: ""; }
.shield-lock { position: relative; width: 28px; height: 25px; margin-top: 10px; border-radius: 6px; background: #fff; }
.shield-lock::before { position: absolute; left: 6px; top: -15px; width: 12px; height: 17px; border: 3px solid #fff; border-bottom: 0; border-radius: 9px 9px 0 0; content: ""; }
.connection-card > strong { display: block; font-size: 21px; }
.connection-card > small { display: block; margin: 4px 0 22px; color: #73849a; }
.server-row { display: flex; align-items: center; gap: 11px; padding: 13px; border-radius: 15px; background: #f2f7fd; text-align: left; }
.server-icon { display: grid; width: 37px; height: 37px; place-items: center; border-radius: 11px; background: #fff; color: var(--blue); font-size: 11px; font-weight: 850; box-shadow: 0 4px 12px rgba(43, 91, 154, 0.08); }
.server-row small, .server-row b { display: block; }
.server-row small { color: #8997a9; font-size: 10px; }
.server-row b { color: #344b6b; font-size: 12px; }
.latency { margin-left: auto; color: #27a977; font-size: 11px; font-weight: 800; }
.float-pill { position: absolute; z-index: 2; padding: 9px 13px; border: 1px solid rgba(205, 223, 243, 0.8); border-radius: 13px; background: rgba(255,255,255,.92); box-shadow: 0 12px 28px rgba(43,91,154,.13); color: #46607e; font-size: 11px; font-weight: 800; }
.pill-fast { top: 17%; left: 1%; transform: rotate(-4deg); }
.pill-devices { right: 0; bottom: 24%; transform: rotate(3deg); }
.pill-china { top: 5%; right: 3%; color: #2473cf; transform: rotate(2deg); }
.pill-premium { bottom: 7%; left: 4%; color: #6658c8; transform: rotate(-2deg); }
.pill-traffic { top: 50%; right: -6%; color: #168b73; transform: rotate(-3deg); }

.section { padding-block: 96px; }
.benefits { background: #fff; }
.section-heading { max-width: 630px; margin: 0 auto 46px; text-align: center; }
.kicker { margin-bottom: 10px; }
.section-heading h2, .steps h2 { margin-bottom: 14px; font-size: clamp(32px, 4vw, 44px); line-height: 1.15; letter-spacing: -0.04em; }
.section-heading > p:last-child { color: var(--muted); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { min-height: 235px; border: 1px solid #e3edf8; border-radius: 20px; padding: 25px 23px; background: linear-gradient(150deg, #fff, #fbfdff); box-shadow: 0 12px 36px rgba(52, 91, 143, 0.055); }
.benefit-card h3 { margin: 18px 0 8px; font-size: 17px; letter-spacing: -0.02em; }
.benefit-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.feature-icon { position: relative; display: grid; width: 44px; height: 44px; place-items: center; border-radius: 14px; background: var(--blue-soft); color: var(--blue); font-size: 24px; font-weight: 600; }
.globe-icon::before { width: 20px; height: 20px; border: 2px solid var(--blue); border-radius: 50%; content: ""; }
.globe-icon::after { position: absolute; width: 8px; height: 18px; border: solid var(--blue); border-width: 0 1px; border-radius: 50%; content: ""; }
.specialist-icon::before { width: 20px; height: 20px; border: 2px solid var(--blue); border-radius: 50%; content: ""; }
.specialist-icon::after { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); content: ""; }
.devices-icon::before { width: 20px; height: 15px; border: 2px solid var(--blue); border-radius: 3px; content: ""; }
.devices-icon::after { position: absolute; bottom: 10px; width: 14px; height: 2px; border-radius: 2px; background: var(--blue); content: ""; }
.devices-icon i { position: absolute; right: 9px; bottom: 9px; width: 9px; height: 17px; border: 2px solid var(--blue); border-radius: 3px; background: var(--blue-soft); }
.chat-icon::before { width: 20px; height: 16px; border: 2px solid var(--blue); border-radius: 6px; content: ""; }
.chat-icon::after { position: absolute; left: 12px; bottom: 10px; width: 7px; height: 7px; border-left: 2px solid var(--blue); transform: skew(-30deg); content: ""; }
.years-icon { font-size: 14px; font-weight: 850; letter-spacing: -.04em; }

.plans { background: var(--background); }
.pricing-grid { display: grid; max-width: 830px; margin: auto; grid-template-columns: repeat(2, 1fr); align-items: stretch; gap: 24px; }
.price-card { position: relative; display: flex; min-height: 460px; flex-direction: column; border: 1px solid #dfe9f5; border-radius: var(--radius); padding: 33px; background: #fff; box-shadow: 0 14px 44px rgba(44, 87, 146, 0.07); }
.price-card-featured { border: 2px solid var(--blue); box-shadow: 0 25px 65px rgba(35, 120, 242, 0.16); transform: translateY(-8px); }
.popular-label { position: absolute; top: -14px; right: 22px; padding: 6px 13px; border-radius: 999px; background: var(--blue); color: #fff; font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.plan-title { display: flex; align-items: center; gap: 13px; }
.plan-title h3 { margin: 0 0 1px; font-size: 21px; }
.plan-title p { margin: 0; color: var(--muted); font-size: 12px; }
.plan-dot { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 13px; }
.plan-dot::before { width: 17px; height: 20px; border: 2px solid currentColor; border-radius: 9px 9px 11px 11px; content: ""; }
.basic-dot { background: #eef3f9; color: #7891ae; }
.premium-dot { background: var(--blue-soft); color: var(--blue); }
.price { display: flex; align-items: baseline; gap: 7px; margin: 28px 0; }
.price strong { font-size: 36px; letter-spacing: -0.04em; }
.price span { color: var(--muted); font-size: 13px; }
.price-card ul { display: grid; gap: 15px; margin: 0 0 31px; padding: 26px 0 0; border-top: 1px solid #e8eff7; color: #435675; font-size: 14px; list-style: none; }
.price-card li { display: flex; gap: 9px; }
.price-card li span { display: grid; flex: 0 0 20px; height: 20px; place-items: center; border-radius: 50%; background: #e7f8f2; color: #1ca678; font-size: 11px; font-weight: 900; }
.price-card .button { width: 100%; margin-top: auto; }
.payment-note { margin: 31px 0 0; color: #78889c; font-size: 12px; text-align: center; }
.payment-note span { margin-right: 4px; color: var(--blue); }

.steps { padding-block: 72px; background: #fff; }
.steps-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.steps-copy { max-width: 430px; }
.steps-copy h2 { margin-bottom: 18px; font-size: clamp(30px, 3.7vw, 41px); line-height: 1.1; }
.steps-intro { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.steps ol { display: grid; margin: 0; padding: 0; list-style: none; }
.steps li { position: relative; display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 18px; padding-bottom: 28px; }
.steps li:last-child { padding-bottom: 0; }
.steps li:not(:last-child)::before { position: absolute; top: 42px; bottom: 0; left: 20px; width: 1px; background: #cfe4ff; content: ""; }
.steps li > span { position: relative; z-index: 1; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--blue-soft); color: var(--blue); font-weight: 850; }
.steps strong { font-size: 16px; }
.steps li p { margin: 5px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.faq { border-top: 1px solid #e8f0f8; background: var(--background); }
.faq .section-heading { margin-bottom: 38px; }
.faq-grid { display: grid; width: min(100%, 880px); margin-inline: auto; gap: 12px; }
.faq details { overflow: hidden; border: 1px solid #dfe9f5; border-radius: 16px; background: #fff; box-shadow: 0 8px 24px rgba(44, 87, 146, 0.05); }
.faq details[open] { border-color: #c9ddf3; box-shadow: 0 13px 34px rgba(44, 87, 146, 0.08); }
.faq summary { display: grid; min-height: 66px; grid-template-columns: minmax(0, 1fr) 30px; align-items: center; gap: 18px; padding: 16px 18px 16px 22px; cursor: pointer; font-size: 15px; font-weight: 750; line-height: 1.4; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { display: grid; width: 30px; height: 30px; place-items: center; justify-self: end; border-radius: 50%; background: var(--blue-soft); color: var(--blue); content: "+"; font-size: 20px; font-weight: 450; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { padding-bottom: 12px; }
.faq details p { max-width: 790px; margin: 0; padding: 0 68px 18px 22px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.faq details p + p { margin-top: -7px; padding-top: 0; }

.site-footer { border-top: 1px solid #e4edf7; background: #f8fbff; }
.footer-inner { padding-block: 34px 20px; color: #75859a; font-size: 12px; }
.footer-columns { display: grid; grid-template-columns: minmax(0, 1.5fr) 1fr 1fr; align-items: start; gap: 40px; }
.brand-footer { font-size: 16px; }
.brand-footer .brand-mark { width: 30px; height: 30px; border-radius: 9px; }
.brand-footer .brand-mark::before { width: 12px; height: 14px; }
.footer-brand p { margin: 10px 0 0; line-height: 1.5; }
.footer-column h2 { margin: 3px 0 12px; color: #52647e; font-size: 12px; font-weight: 650; }
.footer-links { display: grid; justify-items: start; gap: 10px; }
.footer-links a { color: #75859a; text-decoration: none; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { margin-top: 26px; padding-top: 16px; border-top: 1px solid #e4edf7; }
.copyright { margin: 0; color: #8a98aa; }

.checkout-dialog { width: min(470px, calc(100% - 28px)); max-height: calc(100dvh - 28px); border: 0; border-radius: 26px; padding: 0; color: var(--ink); box-shadow: 0 35px 100px rgba(18, 35, 63, .28); }
.checkout-dialog::backdrop { background: rgba(18, 35, 63, .56); backdrop-filter: blur(5px); }
.dialog-shell { position: relative; padding: 36px; }
.dialog-close { position: absolute; z-index: 2; top: 18px; right: 18px; display: grid; width: 34px; height: 34px; place-items: center; border: 0; border-radius: 50%; background: #f1f5fa; color: #62748b; cursor: pointer; font-size: 23px; line-height: 1; }
.dialog-icon { display: grid; width: 47px; height: 47px; margin-bottom: 20px; place-items: center; border-radius: 15px; background: var(--blue-soft); color: var(--blue); font-size: 24px; }
.dialog-shell h2 { margin-bottom: 8px; font-size: 29px; letter-spacing: -.035em; }
.dialog-description { margin-bottom: 22px; color: var(--muted); font-size: 14px; }
.order-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; padding: 17px; border: 1px solid #dfebf8; border-radius: 15px; background: #f7fbff; }
.order-summary span + span { padding-left: 14px; border-left: 1px solid #dce8f5; }
.order-summary small, .order-summary strong { display: block; }
.order-summary small { margin-bottom: 2px; color: #8695a8; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.order-summary strong { font-size: 13px; }
.duration-picker { margin: 0 0 19px; border: 0; padding: 0; }
.duration-picker legend { margin-bottom: 7px; padding: 0; font-size: 12px; font-weight: 750; }
.duration-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
form .duration-option { position: relative; display: flex; min-height: 53px; align-items: center; justify-content: space-between; gap: 8px; margin: 0; border: 1px solid #ccdbea; border-radius: 12px; padding: 9px 11px; background: #fff; color: #52647e; cursor: pointer; }
.duration-option:hover { border-color: #99bce8; background: #f7fbff; }
.duration-option.is-selected { border-color: var(--blue); background: var(--blue-soft); color: var(--blue-dark); box-shadow: 0 0 0 2px rgba(35, 120, 242, .08); }
.duration-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.duration-option:focus-within { outline: 3px solid rgba(35, 120, 242, .24); outline-offset: 2px; }
.duration-option span { font-size: 12px; }
.duration-option strong { font-size: 12px; white-space: nowrap; }
form label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 750; }
form input { width: 100%; height: 51px; border: 1px solid #ccdbea; border-radius: 12px; padding: 0 14px; background: #fff; color: var(--ink); outline: 0; }
form input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(35,120,242,.1); }
.form-message { min-height: 20px; margin: 6px 0 5px; color: var(--muted); font-size: 12px; }
.form-message.is-error { color: #c83e4d; }
.submit-button { width: 100%; justify-content: space-between; }
.submit-button:disabled { cursor: wait; opacity: .7; transform: none; }
.button-arrow { font-size: 20px; font-weight: 400; }
.privacy-note { margin: 12px 0 0; color: #8795a6; font-size: 10px; text-align: center; }
.success-view { padding: 18px 4px 4px; text-align: center; }
.success-mark { display: grid; width: 66px; height: 66px; margin: 0 auto 23px; place-items: center; border-radius: 50%; background: #e7f9f2; color: #1ba978; font-size: 31px; font-weight: 900; }
.success-view > p:not(.kicker) { color: var(--muted); font-size: 14px; }
.success-view > p strong { color: var(--ink); overflow-wrap: anywhere; }
.status-badge { display: inline-flex; align-items: center; gap: 8px; margin: 10px 0 27px; padding: 8px 12px; border-radius: 999px; background: #fff6df; color: #956b0e; font-size: 11px; font-weight: 800; }
.status-badge span { width: 7px; height: 7px; border-radius: 50%; background: #efb839; }
.success-view .button { width: 100%; }

.error-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 22%, rgba(132, 211, 255, 0.28), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.error-shell {
  display: flex;
  width: min(620px, calc(100% - 40px));
  min-height: 100vh;
  margin-inline: auto;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.error-code { margin: 52px 0 8px; color: var(--blue); font-size: 18px; font-weight: 850; letter-spacing: .15em; }
.error-shell h1 { margin: 0 0 18px; font-size: clamp(42px, 8vw, 64px); }
.error-shell > p:not(.error-code) { max-width: 520px; margin-bottom: 28px; color: var(--muted); font-size: 18px; }
.error-actions { display: flex; align-items: center; gap: 26px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 0.82fr; gap: 24px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-inner { grid-template-columns: 1fr 1.15fr; gap: 48px; }
  nav a:not(.nav-cta) { display: none; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 560px); }
  .header-inner { min-height: 66px; }
  nav { gap: 0; }
  nav .nav-cta { padding: 8px 13px; font-size: 12px; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 55px 64px; }
  h1 { margin-top: 20px; font-size: clamp(42px, 13vw, 58px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-notes { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero-visual { min-height: 420px; margin-top: 12px; }
  .pill-fast { left: 0; }
  .pill-devices { right: 0; bottom: 20%; }
  .pill-china { top: 2%; right: 2%; }
  .pill-premium { bottom: 4%; left: 1%; }
  .pill-traffic { top: 40%; right: -1%; }
  .section { padding-block: 72px; }
  .section-heading { margin-bottom: 34px; }
  .benefit-grid, .pricing-grid, .steps-inner { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; }
  .pricing-grid { gap: 25px; }
  .price-card-featured { transform: none; }
  .steps { padding-block: 60px; }
  .steps-inner { gap: 34px; }
  .faq summary { min-height: 62px; gap: 13px; padding: 15px 14px 15px 17px; font-size: 14px; }
  .faq details p { padding: 0 17px 17px; font-size: 13px; }
  .footer-inner { padding-block: 28px 18px; }
  .footer-columns { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { gap: 9px; }
  .footer-bottom { margin-top: 22px; padding-top: 14px; }
  .dialog-shell { padding: 31px 24px 25px; }
  .order-summary { gap: 8px; padding: 14px 12px; }
  .order-summary span + span { padding-left: 9px; }
  .order-summary strong { font-size: 12px; }
  .error-actions { align-items: flex-start; flex-direction: column; gap: 19px; }
}

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