:root {
  color-scheme: light;
  --page: #f4f5f7;
  --paper: #ffffff;
  --paper-soft: #eef2f6;
  --ink: #0b121b;
  --muted: #68727f;
  --line: rgba(9, 39, 68, 0.12);
  --blue: #075b93;
  --blue-deep: #032f58;
  --cyan: #1fc5df;
  --cyan-soft: #dff8fb;
  --orange: #ff9d2e;
  --green: #1ab866;
  --shadow: 0 22px 70px rgba(1, 29, 55, 0.12);
  --max: 1220px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.consent-open { overflow: hidden; }

a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--page) 84%, transparent);
  backdrop-filter: blur(22px) saturate(150%);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 10px 24px rgba(2, 38, 77, 0.18);
}

.brand span { display: grid; line-height: 1.05; }
.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: #35404d;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.nav a:hover, .nav a:focus-visible { color: var(--blue); }
.nav .lang-link {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.58);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.74);
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

main { overflow: clip; }

.hero {
  width: min(calc(100% - 40px), var(--max));
  min-height: min(590px, calc(100vh - 98px));
  margin: 28px auto 0;
  padding: clamp(28px, 3.5vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(26px, 4vw, 52px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 91, 147, .14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 16%, rgba(31,197,223,.12), transparent 30%),
    linear-gradient(135deg, #fdfefe 0%, #eef6fb 58%, #e1edf5 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(rgba(7,91,147,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,91,147,.09) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 70%);
}

.hero-copy, .hero-device { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--cyan);
}

h1, h2, h3 { margin-top: 0; letter-spacing: -.045em; line-height: 1.02; }
h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(34px, 3.7vw, 52px);
  font-weight: 850;
}
h2 { font-size: clamp(25px, 2.8vw, 36px); }
h3 { font-size: 18px; }

.gradient-text {
  color: transparent;
  background: linear-gradient(105deg, var(--blue) 10%, #0e89c8 55%, #10bdd3 95%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 560px;
  margin: 0 0 22px;
  color: #4e5b68;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.5;
}

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--ink); color: #fff; box-shadow: 0 14px 30px rgba(8,18,29,.16); }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,.72); }

.availability {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-device {
  min-height: 450px;
  display: grid;
  place-items: center;
}
.device-glow {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,197,223,.28), rgba(7,91,147,.11) 42%, transparent 70%);
  filter: blur(10px);
}
.tablet-shell {
  width: min(100%, 535px);
  padding: 10px;
  transform: rotate(1.8deg);
  border-radius: 30px;
  background: #101721;
  box-shadow: 0 38px 80px rgba(3,32,61,.28);
}
.tablet-shell img { border-radius: 21px; }
.floating-chip {
  position: absolute;
  display: grid;
  gap: 3px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 40px rgba(3,39,70,.15);
  backdrop-filter: blur(16px);
}
.floating-chip strong { font-size: 14px; }
.floating-chip small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.chip-bottom { left: -3%; bottom: 10%; }
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(26,184,102,.12);
}

.trust-bar {
  width: min(calc(100% - 40px), var(--max));
  margin: 18px auto 0;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
}
.trust-item { padding: 5px 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; font-size: 16px; }
.trust-item span { color: var(--muted); font-size: 13px; }

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(52px, 5vw, 82px) 0 0;
}
.section-heading { max-width: 640px; margin-bottom: 28px; }
.section-heading p { max-width: 600px; color: var(--muted); font-size: 16px; }
.kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(7,91,147,.28); box-shadow: 0 18px 44px rgba(3,40,71,.08); }
.feature-card p { color: var(--muted); }
.feature-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.feature-number { color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.line-icon {
  position: relative;
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--cyan-soft);
}
.line-icon::before,
.line-icon::after { content: ""; position: absolute; box-sizing: border-box; }
.icon-structure::before { width: 7px; height: 7px; left: 8px; top: 17px; border: 2px solid var(--blue); border-radius: 50%; box-shadow: 18px -9px 0 -2px var(--cyan-soft), 18px -9px 0 0 var(--blue), 18px 9px 0 -2px var(--cyan-soft), 18px 9px 0 0 var(--blue); }
.icon-structure::after { left: 15px; top: 20px; width: 17px; height: 12px; border-top: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: skewY(-28deg); }
.icon-wave::before { left: 8px; top: 20px; width: 26px; height: 2px; background: var(--blue); }
.icon-wave::after { left: 10px; top: 11px; width: 22px; height: 20px; background: repeating-linear-gradient(90deg, transparent 0 3px, var(--blue) 3px 5px); clip-path: polygon(0 40%, 15% 40%, 28% 0, 43% 100%, 58% 18%, 73% 70%, 86% 40%, 100% 40%, 100% 60%, 82% 60%, 73% 90%, 59% 45%, 44% 100%, 28% 32%, 17% 60%, 0 60%); }
.icon-message::before { inset: 9px; border: 2px solid var(--blue); border-radius: 4px; }
.icon-message::after { left: 14px; top: 15px; width: 13px; height: 2px; border: 0; background: var(--blue); box-shadow: 0 6px 0 var(--blue), 0 12px 0 var(--blue); }
.icon-offline::before { left: 9px; top: 13px; width: 24px; height: 17px; border: 2px solid var(--blue); border-radius: 5px; }
.icon-offline::after { left: 19px; top: 7px; width: 2px; height: 16px; border: 0; background: var(--blue); box-shadow: -4px 7px 0 -1px var(--blue), 4px 7px 0 -1px var(--blue); }
.icon-sliders::before { left: 8px; top: 12px; width: 26px; height: 2px; border: 0; background: var(--blue); box-shadow: 0 9px 0 var(--blue), 0 18px 0 var(--blue); }
.icon-sliders::after { left: 14px; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan-soft); box-shadow: 12px 9px 0 -2px var(--cyan-soft), 12px 9px 0 0 var(--blue), 3px 18px 0 -2px var(--cyan-soft), 3px 18px 0 0 var(--blue); }
.icon-rack::before { inset: 7px 11px; border: 2px solid var(--blue); border-radius: 4px; }
.icon-rack::after { left: 15px; top: 14px; width: 12px; height: 2px; border: 0; background: var(--blue); box-shadow: 0 7px 0 var(--blue), 0 14px 0 var(--blue); }
.icon-device::before { left: 13px; top: 8px; width: 16px; height: 26px; border: 2px solid var(--blue); border-radius: 5px; }
.icon-device::after { left: 18px; bottom: 10px; width: 6px; height: 2px; border-radius: 2px; background: var(--blue); }
.icon-ethernet::before { left: 10px; top: 11px; width: 22px; height: 21px; border: 2px solid var(--blue); border-radius: 4px 4px 7px 7px; }
.icon-ethernet::after { left: 14px; top: 13px; width: 14px; height: 7px; background: repeating-linear-gradient(90deg, var(--blue) 0 1px, transparent 1px 3px); }
.icon-network::before { left: 9px; top: 17px; width: 8px; height: 8px; border: 2px solid var(--blue); border-radius: 50%; box-shadow: 16px -9px 0 -2px var(--cyan-soft), 16px -9px 0 0 var(--blue), 16px 9px 0 -2px var(--cyan-soft), 16px 9px 0 0 var(--blue); }
.icon-network::after { left: 16px; top: 15px; width: 13px; height: 14px; border-top: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: skewY(-29deg); }
.icon-key::before { left: 9px; top: 11px; width: 14px; height: 14px; border: 2px solid var(--blue); border-radius: 50%; }
.icon-key::after { left: 21px; top: 22px; width: 15px; height: 2px; background: var(--blue); transform: rotate(45deg); transform-origin: left center; box-shadow: 7px -3px 0 -0.25px var(--blue); }
.icon-demo::before { left: 9px; top: 9px; width: 24px; height: 24px; border: 2px solid var(--blue); border-radius: 50%; }
.icon-demo::after { left: 19px; top: 16px; width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid var(--blue); }
.icon-file::before { left: 11px; top: 8px; width: 20px; height: 26px; border: 2px solid var(--blue); border-radius: 4px; }
.icon-file::after { left: 16px; top: 16px; width: 10px; height: 2px; background: var(--blue); box-shadow: 0 5px 0 var(--blue), 0 10px 0 var(--blue); }

.showcase {
  padding: clamp(26px, 4vw, 48px);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #062e55, #075f96 65%, #0bb9cb);
  color: #fff;
  box-shadow: var(--shadow);
}
.showcase-copy p { color: rgba(255,255,255,.76); font-size: 15.5px; }
.showcase-copy .kicker { color: #80eef7; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.tag { padding: 8px 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; background: rgba(255,255,255,.08); font-size: 12px; font-weight: 750; }
.showcase-image {
  padding: 9px;
  transform: translateY(10%);
  border-radius: 28px;
  background: #0a1521;
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
}
.showcase-image img { border-radius: 20px; }

.phone-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 14px; }
.phone-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.phone-card-copy { min-height: 142px; padding: 24px 24px 16px; }
.phone-card-copy h3 { margin-bottom: 8px; font-size: 19px; }
.phone-card-copy p { margin: 0; color: var(--muted); font-size: 14px; }
.phone-crop { max-height: 480px; overflow: hidden; padding: 0 18px; }
.phone-crop img { width: 100%; border-radius: 24px 24px 0 0; box-shadow: 0 12px 40px rgba(3,37,66,.13); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.process-card { padding: 30px; border-top: 3px solid var(--cyan); background: var(--paper); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.process-card span { color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.process-card h3 { margin: 32px 0 12px; }
.process-card p { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.split-panel { min-height: 300px; padding: clamp(26px, 4vw, 40px); border-radius: var(--radius-xl); }
.split-panel h2 { font-size: clamp(24px, 2.6vw, 34px); }
.split-panel p { max-width: 520px; font-size: 15.5px; }
.split-panel.local { background: #dff5fa; color: #073757; }
.split-panel.safety { background: #172431; color: #fff; }
.split-panel.safety p { color: rgba(255,255,255,.72); }
.split-panel.safety .kicker { color: #7ee9f2; }

.cta {
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(115deg, #f6b036, #ff8b37);
  color: #1b1309;
}
.cta h2 { max-width: 760px; margin-bottom: 15px; }
.cta p { max-width: 660px; margin-bottom: 0; }
.cta .button { background: #1a1815; color: #fff; white-space: nowrap; }

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 90px 0 36px;
}
.footer-main {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 48px; border-radius: 13px; }
.footer-brand strong { display: block; }
.footer-brand span { color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 12px 22px; }
.footer-links a, .cookie-settings { border: 0; padding: 0; background: none; color: #46515d; font-weight: 700; text-decoration: none; cursor: pointer; }
.footer-meta { display: flex; justify-content: space-between; gap: 24px; padding-top: 22px; color: var(--muted); font-size: 12px; }

.legal-hero,
.support-hero {
  width: min(calc(100% - 40px), 980px);
  margin: 72px auto 0;
  padding: clamp(32px, 6vw, 68px);
  border-radius: var(--radius-xl);
  background: var(--paper);
}
.legal-hero h1, .support-hero h1 { font-size: clamp(32px, 4vw, 46px); }
.legal-hero p, .support-hero p { max-width: 680px; color: var(--muted); font-size: 16px; }
.legal-content,
.support-content { width: min(calc(100% - 40px), 980px); margin: 0 auto; padding: 56px 0 40px; }
.legal-content section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { font-size: 25px; letter-spacing: -.02em; }
.legal-content p, .legal-content li { color: #505d69; }
.legal-content address { font-style: normal; }
.legal-content a, .support-content a { color: var(--blue); }
.legal-content code { padding: 2px 5px; border-radius: 5px; background: var(--paper-soft); }

.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.support-card {
  min-height: 176px;
  padding: 28px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: start;
  gap: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.support-card h3 { margin: 4px 0 10px; font-size: 21px; }
.support-card p { margin: 0; color: var(--muted); }
.support-card .line-icon { margin: 0; }
.support-section { padding: 55px 0; border-bottom: 1px solid var(--line); }
.support-section h2 { max-width: 720px; }
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li { counter-increment: step; position: relative; padding: 0 0 32px 64px; }
.steps li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 850; }
.steps li::after { content: ""; position: absolute; left: 24px; top: 30px; bottom: 6px; width: 1px; background: var(--line); }
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--muted); }
.faq details { margin-top: 10px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.faq summary { padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 22px; cursor: pointer; font-weight: 800; list-style: none; }
.faq summary:focus-visible { outline: 2px solid rgba(7,91,147,.34); outline-offset: -2px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--cyan-soft); color: var(--blue); font-size: 19px; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.cookie-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  background: rgba(4,12,20,.38);
  backdrop-filter: blur(7px);
}
.cookie-backdrop.visible { display: block; }
.cookie-panel {
  position: fixed;
  z-index: 301;
  left: 50%;
  bottom: 24px;
  width: min(calc(100% - 32px), 760px);
  transform: translateX(-50%) translateY(30px);
  opacity: 0;
  pointer-events: none;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: #0a1724;
  color: #fff;
  box-shadow: 0 30px 100px rgba(0,0,0,.34);
  transition: opacity .2s ease, transform .2s ease;
}
.cookie-panel.visible { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.cookie-panel h2 { margin-bottom: 12px; font-size: 28px; }
.cookie-panel p { margin: 0; color: rgba(255,255,255,.7); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.cookie-actions button { min-height: 44px; padding: 10px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: transparent; color: #fff; font-weight: 800; cursor: pointer; }
.cookie-actions .accept { background: #6ee2ec; color: #04111d; border-color: transparent; }
.cookie-options { display: none; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.cookie-options.open { display: grid; gap: 10px; }
.cookie-option { padding: 13px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cookie-option span { display: grid; }
.cookie-option small { color: rgba(255,255,255,.58); }
.switch { position: relative; width: 48px; height: 28px; flex: 0 0 auto; }
.switch input { position: absolute; opacity: 0; }
.switch i { position: absolute; inset: 0; border-radius: 20px; background: #4f5963; }
.switch i::after { content: ""; position: absolute; width: 22px; height: 22px; left: 3px; top: 3px; border-radius: 50%; background: #fff; transition: transform .2s ease; }
.switch input:checked + i { background: #31c9d5; }
.switch input:checked + i::after { transform: translateX(20px); }
.switch input:disabled + i { opacity: .7; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-device { min-height: 380px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .phone-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .header-inner { min-height: 68px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 8px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border: 0; }
  .menu-toggle[aria-expanded="true"] span { opacity: 0; }
  .menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
  .hero { width: min(calc(100% - 24px), var(--max)); margin-top: 12px; padding: 28px 20px 26px; border-radius: 24px; }
  h1 { font-size: clamp(30px, 9vw, 42px); }
  .hero-device { min-height: 300px; }
  .chip-bottom { left: 0; bottom: 3%; }
  .floating-chip { padding: 10px 12px; }
  .trust-bar { width: min(calc(100% - 24px), var(--max)); grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:nth-last-child(-n+2) { border-bottom: 0; }
  .section { width: min(calc(100% - 24px), var(--max)); }
  .feature-grid, .process-grid, .split, .support-grid { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .showcase-image { transform: none; }
  .phone-grid { grid-template-columns: 1fr 1fr; }
  .cta { grid-template-columns: 1fr; align-items: start; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-meta { flex-direction: column; }
  .legal-hero, .support-hero { width: min(calc(100% - 24px), 980px); margin-top: 28px; }
  .legal-content, .support-content { width: min(calc(100% - 24px), 980px); }
}

@media (max-width: 500px) {
  .brand small { display: none; }
  .hero-device { min-height: 260px; }
  .floating-chip { display: none; }
  .phone-grid { grid-template-columns: 1fr; }
  .phone-crop { max-height: 520px; }
  .feature-card { min-height: 230px; }
  .cookie-panel { bottom: 10px; padding: 22px; }
  .cookie-actions { display: grid; }
  .cookie-actions button { width: 100%; }
}
