:root {
  color-scheme: light;
  --ink: #11251c;
  --muted: #5d7167;
  --surface: #fffef9;
  --surface-alt: #edf1e9;
  --canvas: #f4f3ed;
  --line: #d8dfd8;
  --brand: #103c2d;
  --brand-soft: #d8ff79;
  --accent: #eb7040;
  --accent-dark: #c95329;
  --danger: #b33b35;
  --warning: #a66800;
  --success: #18714a;
  --shadow: 0 24px 70px rgba(16, 60, 45, 0.12);
  --radius: 24px;
  --radius-small: 14px;
  --max: 1180px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f4f7f0;
  --muted: #a9b9b0;
  --surface: #14231d;
  --surface-alt: #1a2d24;
  --canvas: #0d1713;
  --line: #30463a;
  --brand: #d8ff79;
  --brand-soft: #264637;
  --accent: #ff8a58;
  --accent-dark: #ff9d76;
  --success: #77d9a7;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 70%, transparent); outline-offset: 3px; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 100; background: var(--ink); color: var(--surface); padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: color-mix(in srgb, var(--canvas) 88%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
  backdrop-filter: blur(18px) saturate(150%);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 850; letter-spacing: -0.03em; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: var(--brand); color: var(--canvas); font-size: 16px; }
[data-theme="dark"] .brand-mark { color: #103c2d; }
.desktop-nav { display: flex; gap: 28px; }
.desktop-nav a, .footer-links a { color: var(--muted); font-size: 14px; font-weight: 650; text-decoration: none; transition: color .2s ease; }
.desktop-nav a:hover, .footer-links a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--surface); cursor: pointer; transition: transform .2s ease, background .2s ease; }
.icon-button:hover { transform: rotate(12deg); background: var(--surface-alt); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 780;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent) 28%, transparent);
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--accent-dark); box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 34%, transparent); }
.button:disabled { cursor: wait; opacity: .6; transform: none; }
.button-small { min-height: 40px; padding: 0 17px; font-size: 14px; }
.button-ghost { background: var(--surface); border-color: var(--line); color: var(--ink); box-shadow: none; }
.button-ghost:hover { background: var(--surface-alt); box-shadow: none; }
.button-dark { background: var(--brand); color: var(--canvas); box-shadow: none; }
[data-theme="dark"] .button-dark { color: #103c2d; }
.button-danger { background: var(--danger); box-shadow: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.text-button { padding: 0; border: 0; color: var(--accent-dark); background: none; font-weight: 750; cursor: pointer; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 140px) max(24px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 76% 30%, rgba(216, 255, 121, .28), transparent 25%),
    linear-gradient(145deg, #103c2d 0%, #174d39 58%, #0e3326 100%);
  color: #fff;
}
.hero::after { content: ""; position: absolute; right: -8%; bottom: -40%; width: 48vw; height: 48vw; max-width: 690px; max-height: 690px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.03), 0 0 0 120px rgba(255,255,255,.025); }
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.eyebrow { margin: 0 0 16px; color: var(--accent-dark); font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.hero .eyebrow { color: var(--brand-soft); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 820px; margin-bottom: 24px; font-size: clamp(44px, 7.5vw, 88px); line-height: .98; letter-spacing: -.065em; }
h2 { margin-bottom: 16px; font-size: clamp(32px, 4vw, 54px); line-height: 1.03; letter-spacing: -.05em; }
h3 { margin-bottom: 8px; font-size: 20px; line-height: 1.2; letter-spacing: -.025em; }
.hero-lede { max-width: 620px; margin-bottom: 32px; color: rgba(255,255,255,.78); font-size: clamp(18px, 2vw, 23px); }
.hero-search { display: flex; max-width: 620px; gap: 10px; padding: 8px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.11); backdrop-filter: blur(16px); }
.hero-search input { flex: 1; min-width: 0; padding: 0 18px; border: 0; outline: 0; background: transparent; color: #fff; }
.hero-search input::placeholder { color: rgba(255,255,255,.62); }
.trust-row { display: flex; flex-wrap: wrap; gap: 16px 26px; margin-top: 28px; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 650; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--brand-soft); }

.section { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: clamp(70px, 9vw, 120px) 0; }
.section-tight { padding-top: 54px; padding-bottom: 54px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.section-head > div { max-width: 700px; }
.section-head p, .lede { color: var(--muted); font-size: 18px; }
.page-hero { padding: 70px 0 28px; }
.page-hero h1 { max-width: 900px; color: var(--ink); font-size: clamp(42px, 6vw, 76px); }
.page-hero .lede { max-width: 720px; }

.plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 2px 0 rgba(16,60,45,.02);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .25s ease;
}
.plan-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--brand) 38%, var(--line)); box-shadow: var(--shadow); }
.plan-card.featured { background: var(--brand); color: var(--canvas); border-color: transparent; }
[data-theme="dark"] .plan-card.featured { color: #103c2d; }
.plan-badge { align-self: flex-start; margin-bottom: 24px; padding: 6px 10px; border-radius: 999px; background: var(--brand-soft); color: #183326; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.plan-region { color: var(--muted); font-size: 14px; font-weight: 700; }
.featured .plan-region { color: color-mix(in srgb, currentColor 68%, transparent); }
.plan-data { margin: 18px 0 4px; font-size: 46px; font-weight: 880; line-height: 1; letter-spacing: -.05em; }
.plan-meta { margin-bottom: 28px; color: var(--muted); }
.featured .plan-meta { color: color-mix(in srgb, currentColor 68%, transparent); }
.plan-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: -12px 0 22px; }
.plan-tags span { padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 11px; font-weight: 720; }
.featured .plan-tags span { border-color: color-mix(in srgb, currentColor 24%, transparent); color: color-mix(in srgb, currentColor 72%, transparent); }
.plan-price { display: flex; align-items: baseline; gap: 5px; margin-top: auto; font-size: 28px; font-weight: 850; }
.plan-price small { color: var(--muted); font-size: 12px; font-weight: 600; }
.featured .plan-price small { color: color-mix(in srgb, currentColor 68%, transparent); }
.plan-card .button { margin-top: 18px; }
.featured .button { background: var(--brand-soft); color: #183326; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: steps; }
.step { position: relative; padding: 30px; border-radius: var(--radius); background: var(--surface-alt); counter-increment: steps; }
.step::before { content: counter(steps, decimal-leading-zero); display: block; margin-bottom: 40px; color: var(--accent-dark); font-size: 13px; font-weight: 850; letter-spacing: .1em; }
.step p { margin-bottom: 0; color: var(--muted); }
.split-panel { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 34px; background: var(--brand); color: #fff; }
.split-copy { padding: clamp(38px, 6vw, 80px); }
.split-copy p { color: rgba(255,255,255,.72); }
.split-visual { display: grid; place-items: center; min-height: 420px; padding: 40px; background: radial-gradient(circle at center, rgba(216,255,121,.3), transparent 48%); }
.phone { width: 230px; padding: 12px; border: 2px solid rgba(255,255,255,.35); border-radius: 38px; background: #0a1913; box-shadow: 0 35px 70px rgba(0,0,0,.3); transform: rotate(5deg); }
.phone-screen { min-height: 390px; padding: 24px 18px; border-radius: 28px; background: #f7f7f1; color: #12241c; }
.signal { display: flex; justify-content: space-between; margin-bottom: 60px; font-size: 11px; font-weight: 800; }
.usage-orbit { display: grid; width: 150px; height: 150px; margin: auto; place-items: center; border-radius: 50%; background: conic-gradient(#ec7040 0 61%, #dce3db 61%); }
.usage-orbit::before { content: "3.05 GB\A used"; white-space: pre; display: grid; width: 116px; height: 116px; place-items: center; border-radius: 50%; background: #f7f7f1; text-align: center; font-weight: 850; }

.form-shell { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 28px; align-items: start; }
.card { padding: clamp(24px, 4vw, 38px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 8px 40px rgba(16,60,45,.05); }
.card-compact { padding: 24px; }
.sticky-card { position: sticky; top: 100px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-size: 14px; font-weight: 760; }
.field input, .field select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--canvas);
  color: var(--ink);
  outline: 0;
  transition: border .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent); }
.field small, .form-note { color: var(--muted); font-size: 12px; }
.check-field { display: flex; align-items: flex-start; gap: 11px; margin: 24px 0; }
.check-field input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--accent); }
.check-field label { color: var(--muted); font-size: 14px; }
.full { width: 100%; }
.summary-line { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.summary-line:last-of-type { border: 0; }
.summary-line span { color: var(--muted); }
.summary-total { margin-top: 14px; padding-top: 20px; border-top: 2px solid var(--ink); font-size: 20px; font-weight: 850; }

.connection-panel { margin-top: 34px; padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line); border-radius: calc(var(--radius) + 8px); background: var(--surface); box-shadow: 0 8px 40px rgba(16,60,45,.05); }
.connection-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.connection-heading h2 { max-width: 650px; margin-bottom: 0; font-size: clamp(31px, 4vw, 48px); }
.verification-badge { flex: 0 0 auto; padding: 8px 12px; border: 1px solid color-mix(in srgb, var(--warning) 45%, var(--line)); border-radius: 999px; background: color-mix(in srgb, var(--warning) 10%, var(--surface)); color: var(--warning); font-size: 11px; font-weight: 820; letter-spacing: .04em; text-transform: uppercase; }
.verification-badge.verified { border-color: color-mix(in srgb, var(--success) 45%, var(--line)); background: color-mix(in srgb, var(--success) 10%, var(--surface)); color: var(--success); }
.spec-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.spec-grid article { min-height: 155px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-grid article:nth-child(3n) { border-right: 0; }
.spec-grid article:nth-last-child(-n+3) { border-bottom: 0; }
.spec-grid span, .spec-grid small { display: block; color: var(--muted); }
.spec-grid span { margin-bottom: 11px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.spec-grid strong { display: block; margin-bottom: 8px; font-size: 17px; line-height: 1.3; }
.spec-grid small { font-size: 12px; line-height: 1.45; }
.delivery-flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.delivery-flow article { display: flex; gap: 12px; padding: 18px; border-radius: var(--radius-small); background: var(--surface-alt); }
.delivery-flow article > span { flex: 0 0 auto; color: var(--accent-dark); font-size: 12px; font-weight: 850; }
.delivery-flow strong { display: block; margin-bottom: 6px; font-size: 14px; }
.delivery-flow p { margin: 0; color: var(--muted); font-size: 12px; }
.contract-note { margin: 20px 0 0; padding: 16px 18px; border-left: 3px solid var(--warning); border-radius: 0 var(--radius-small) var(--radius-small) 0; background: color-mix(in srgb, var(--warning) 7%, var(--surface)); color: var(--muted); font-size: 13px; }

.auth-shell { width: min(calc(100% - 48px), 520px); margin: 0 auto; padding: 80px 0 110px; text-align: center; }
.auth-shell .card { text-align: left; }
.provider-stack { display: grid; gap: 10px; margin-bottom: 24px; }
.provider-button { display: flex; width: 100%; min-height: 52px; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); color: var(--ink); font-weight: 750; text-decoration: none; }
.provider-button[aria-disabled="true"] { opacity: .45; pointer-events: none; }
.divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; color: var(--muted); font-size: 12px; text-transform: uppercase; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.status-banner { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; padding: 18px; border-radius: var(--radius-small); background: var(--surface-alt); }
.status-dot { flex: 0 0 auto; width: 12px; height: 12px; margin-top: 6px; border-radius: 50%; background: var(--warning); box-shadow: 0 0 0 5px color-mix(in srgb, var(--warning) 15%, transparent); }
.status-ready .status-dot, .status-active .status-dot { background: var(--success); box-shadow: 0 0 0 5px color-mix(in srgb, var(--success) 15%, transparent); }
.status-failed .status-dot { background: var(--danger); box-shadow: 0 0 0 5px color-mix(in srgb, var(--danger) 15%, transparent); }
.order-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: 24px; }
.qr-card { text-align: center; }
.qr-card img { width: min(100%, 330px); padding: 12px; border-radius: 18px; background: #fff; border: 1px solid #e1e4df; }
.secret-box { position: relative; margin-top: 16px; padding: 16px; border-radius: 12px; background: var(--canvas); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; text-align: left; word-break: break-all; }
.usage-bar { overflow: hidden; height: 12px; margin: 14px 0 8px; border-radius: 999px; background: var(--surface-alt); }
.usage-bar span { display: block; width: var(--usage, 0%); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--brand), var(--accent)); transition: width .5s ease; }
.detail-list { display: grid; gap: 0; margin: 0; }
.detail-list div { display: grid; grid-template-columns: 1fr 1.4fr; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.detail-list dt { color: var(--muted); }
.detail-list dd { margin: 0; font-weight: 680; text-align: right; }
.installation-steps { display: grid; gap: 14px; padding: 0; list-style: none; counter-reset: install; }
.installation-steps li { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; counter-increment: install; }
.installation-steps li::before { content: counter(install); display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--brand-soft); color: #193329; font-weight: 850; }
.order-list { display: grid; gap: 14px; }
.order-row { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); }
.order-row p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.pill { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: var(--surface-alt); color: var(--muted); font-size: 11px; font-weight: 850; text-transform: uppercase; }
.pill-active, .pill-ready { background: color-mix(in srgb, var(--success) 14%, transparent); color: var(--success); }
.pill-failed { background: color-mix(in srgb, var(--danger) 14%, transparent); color: var(--danger); }

.admin-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th, .admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
.admin-table th { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.admin-actions { display: flex; gap: 6px; }
.admin-actions button { padding: 6px 9px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-alt); color: var(--ink); cursor: pointer; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.stat { padding: 22px; border-radius: 17px; background: var(--surface); border: 1px solid var(--line); }
.stat strong { display: block; font-size: 32px; letter-spacing: -.04em; }
.stat span { color: var(--muted); font-size: 13px; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
details { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
summary { cursor: pointer; font-weight: 780; }
details p { margin: 14px 0 0; color: var(--muted); }
.empty-state { padding: 60px 24px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }
.empty-state p { color: var(--muted); }
.alert { padding: 15px 17px; border-radius: 12px; background: color-mix(in srgb, var(--danger) 10%, var(--surface)); color: var(--danger); }
.success { background: color-mix(in srgb, var(--success) 10%, var(--surface)); color: var(--success); }
.muted { color: var(--muted); }
.hidden { display: none !important; }
.skeleton { min-height: 120px; border-radius: 18px; background: linear-gradient(90deg, var(--surface-alt), var(--surface), var(--surface-alt)); background-size: 200% 100%; animation: shimmer 1.3s infinite; }
.page-loader { min-height: 62vh; display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--muted); }
.page-loader span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: bounce 1s infinite alternate; }
.page-loader span:nth-child(2) { animation-delay: .15s; }
.page-loader span:nth-child(3) { animation-delay: .3s; }
.page-loader em { margin-left: 10px; font-style: normal; }
.toast-region { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: grid; gap: 8px; }
.toast { max-width: 380px; padding: 14px 17px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); box-shadow: var(--shadow); animation: toast-in .25s ease both; }
.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 24px 60px; padding: 56px max(24px, calc((100vw - var(--max)) / 2)); border-top: 1px solid var(--line); background: var(--surface); }
.site-footer p { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; align-items: start; }
.footer-note { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid var(--line); }

@keyframes bounce { to { transform: translateY(-8px); opacity: .45; } }
@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .plan-grid, .steps, .spec-grid { grid-template-columns: 1fr 1fr; }
  .spec-grid article, .spec-grid article:nth-child(3n), .spec-grid article:nth-last-child(-n+3) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .spec-grid article:nth-child(2n) { border-right: 0; }
  .spec-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .delivery-flow { grid-template-columns: 1fr 1fr; }
  .form-shell, .order-layout, .split-panel { grid-template-columns: 1fr; }
  .sticky-card { position: static; }
  .split-visual { min-height: 350px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .site-header { min-height: 66px; padding-inline: 16px; }
  .site-header .button-small { width: 40px; padding: 0; overflow: hidden; font-size: 0; }
  .site-header .button-small::before { content: "◎"; font-size: 18px; }
  .hero { padding-inline: 20px; }
  .hero-search { display: grid; border-radius: 22px; }
  .hero-search input { min-height: 46px; }
  .section { width: min(calc(100% - 32px), var(--max)); }
  .section-head { align-items: start; flex-direction: column; }
  .plan-grid, .steps, .field-grid, .faq-grid, .spec-grid, .delivery-flow { grid-template-columns: 1fr; }
  .connection-heading { display: block; }
  .verification-badge { display: inline-block; margin-top: 14px; }
  .spec-grid article, .spec-grid article:nth-child(2n), .spec-grid article:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .spec-grid article:last-child { border-bottom: 0; }
  .plan-card { min-height: 290px; }
  .page-hero { padding-top: 48px; }
  .card { padding: 22px; }
  .order-row { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-note { grid-column: 1; }
}

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