:root {
  --ink: #10233f;
  --muted: #617187;
  --blue: #0969da;
  --blue-dark: #0757b7;
  --cyan: #18b8b0;
  --paper: #f7f9fc;
  --card: #fff;
  --line: #dce4ee;
  --danger: #c62f47;
  --success: #087f6d;
  --navy: #0d2748;
  --shadow: 0 20px 60px rgba(20,52,89,.10);
  --radius: 20px;
  --max: 1160px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.6; font-weight: 400; }
button, input, textarea, select { font: inherit; font-weight: 500; }
button, a { touch-action: manipulation; }
button { cursor: pointer; }
a { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Global constraint: max font-weight 500 everywhere */
h1, h2, h3, h4, h5, h6, strong, b, th, .button, .brand, .transfer-tab, summary, .eyebrow, dt, .mini-file span, .mini-code {
  font-weight: 500 !important;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .8rem 1rem;
  background: #fff; border-radius: 10px; box-shadow: var(--shadow);
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid rgba(9,105,218,.35); outline-offset: 3px; }

/* ─── HEADER & NAV ─────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,249,252,.92); border-bottom: 1px solid rgba(220,228,238,.8);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  max-width: var(--max); height: 68px; margin: auto; padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px; font-size: 1.22rem;
  text-decoration: none; letter-spacing: -.02em;
}
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 9px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(9,105,218,.18);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 9px; }
.brand-mark svg { width: 20px; }
.main-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.main-nav > a { font-size: .92rem; text-decoration: none; color: #43536a; transition: color .15s; }
.main-nav > a:hover { color: var(--blue); }
.language-switcher {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
}
.language-button {
  display: inline-flex; align-items: center; gap: 4px; padding: 4px 7px;
  color: #4a5d78; background: transparent; border: 1px solid transparent;
  border-radius: 6px; cursor: pointer; font-family: inherit;
  font-size: .72rem; font-weight: 700; letter-spacing: .03em;
  line-height: 1; transition: all .15s ease;
}
.language-button:hover {
  color: var(--ink); background: rgba(9,105,218,.06); border-color: rgba(9,105,218,.15);
}
.language-button.active {
  color: var(--blue); background: #ffffff; border-color: #c8d9eb;
  box-shadow: 0 2px 6px rgba(9,105,218,.1);
}
.language-flag { display: inline-flex; align-items: center; justify-content: center; }
.flag-icon {
  width: 19px; height: 12px; border-radius: 2px;
  box-shadow: 0 0 2px rgba(0,0,0,.25); display: block; object-fit: cover; flex-shrink: 0;
}
.language-code { font-size: .72rem; font-weight: 700; line-height: 1; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle > span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 4px; background: var(--ink); }

/* ─── HERO SECTION (COMPACT) ───────────────────────────── */
main { overflow: hidden; }
.hero {
  max-width: var(--max); margin: auto; padding: 28px 24px 16px;
  display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 32px;
}
.eyebrow {
  margin: 0 0 8px; color: var(--blue); font-size: .72rem; line-height: 1.3;
  text-transform: uppercase; letter-spacing: .14em;
}
.status-dot {
  display: inline-block; width: 8px; height: 8px; margin-right: 8px;
  border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(24,184,176,.12);
}
h1, h2, h3, p { overflow-wrap: anywhere; }
.hero h1 {
  max-width: 640px; margin: 0; font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  line-height: 1.18; letter-spacing: -.03em;
}
.hero-lead {
  max-width: 620px; margin: 8px 0 12px; color: var(--muted);
  font-size: 1rem; line-height: 1.5;
}
.store-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 6px; }
.store-badge { display: block; height: 38px; overflow: hidden; border-radius: 7px; transition: transform .15s, opacity .15s; }
.store-badge:hover { transform: translateY(-1px); opacity: .92; }
.store-badge img { display: block; width: auto; height: 100%; }

.hero-visual {
  position: relative; min-height: 240px; display: flex; align-items: center; justify-content: center;
  transform: scale(0.88);
}
.hero-visual:before {
  content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, #d8f4f2 0, #e7f2ff 55%, transparent 70%); filter: blur(4px);
}
.device-card { position: relative; z-index: 2; background: #fff; box-shadow: 0 24px 50px rgba(21,54,92,.16); }
.phone-card {
  width: 140px; height: 260px; border: 7px solid #10233f; border-radius: 26px;
  padding: 28px 10px 12px; transform: rotate(-6deg);
}
.device-top {
  position: absolute; top: 6px; left: 50%; width: 44px; height: 5px;
  transform: translateX(-50%); border-radius: 6px; background: #10233f;
}
.mini-file { height: 110px; padding: 18px 12px; background: #f1f6fd; border-radius: 12px; }
.mini-file span {
  display: grid; place-items: center; width: 36px; height: 42px; margin: auto;
  color: #fff; font-size: .62rem; background: var(--blue); border-radius: 5px;
}
.mini-file i {
  display: block; width: 60%; height: 4px; margin: 9px auto 0;
  border-radius: 8px; background: #cbd9e9;
}
.mini-code {
  margin-top: 16px; padding: 8px 3px; text-align: center; color: var(--blue);
  letter-spacing: .08em; background: #eaf4ff; border-radius: 8px; font-size: .85rem;
}
.desktop-card {
  width: 220px; height: 160px; margin-left: -3px; padding: 9px;
  border-radius: 12px; transform: rotate(4deg);
}
.desktop-screen { display: block; height: 124px; padding: 14px; background: #eef5fd; border-radius: 7px; }
.desktop-screen b { font-size: .75rem; }
.desktop-screen i { display: block; height: 7px; margin-top: 14px; border-radius: 8px; background: #c9daec; }
.desktop-screen i:nth-of-type(2) { width: 66%; margin-top: 6px; }
.desktop-screen em {
  display: block; width: 68px; height: 22px; margin: 18px auto 0;
  border-radius: 6px; background: var(--blue);
}
.desktop-stand { display: block; width: 60px; height: 24px; margin: 7px auto 0; border-bottom: 7px solid #fff; }
.transfer-line {
  position: relative; z-index: 3; width: 60px; height: 3px; margin: 0 -8px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.transfer-line i {
  position: absolute; right: -3px; top: -4px; border-left: 8px solid var(--cyan);
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}
.transfer-line span {
  position: absolute; left: 16px; top: -20px; color: var(--blue); letter-spacing: 3px; font-size: .8rem;
}

/* ─── TRANSFER SECTION ─────────────────────────────────── */
.transfer-section { padding: 32px 24px 64px; background: #edf3f9; }
.section-heading { max-width: 720px; margin: 0 auto 36px; text-align: center; }
.section-heading.compact { margin-bottom: 20px; }
.section-heading h2, .contact-copy h2 {
  margin: 0; font-size: clamp(1.6rem, 3.2vw, 2.3rem); line-height: 1.15; letter-spacing: -.03em;
}
.section-heading > p:last-child { margin: 10px 0 0; color: var(--muted); font-size: .98rem; }
.transfer-shell {
  max-width: var(--max); margin: auto; background: #fff;
  border: 1px solid rgba(205,218,232,.8); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.transfer-tabs { display: grid; grid-template-columns: 1fr 1fr; padding: 8px; background: #f2f6fb; border-bottom: 1px solid var(--line); }
.transfer-tab {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; border: 0; border-radius: 12px; color: #53657c; background: transparent;
}
.transfer-tab svg { width: 18px; }
.transfer-tab.active { color: var(--blue); background: #fff; box-shadow: 0 4px 14px rgba(26,59,97,.08); }
.transfer-panel { min-height: 380px; padding: 36px; }

.drop-zone {
  min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px; text-align: center; border: 2px dashed #c7d6e6; border-radius: 16px;
  background: #fbfdff; transition: .2s;
}
.drop-zone:hover, .drop-zone.dragging { border-color: var(--blue); background: #f3f8ff; }
.action-icon, .feature-icon {
  display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 14px;
  color: var(--blue); background: #e8f3ff; border-radius: 16px;
}
.action-icon svg { width: 26px; }
.drop-zone h3, .receive-start h3 { margin: 0; font-size: 1.25rem; }
.drop-zone p { margin: 4px 0 14px; color: var(--muted); }
.drop-zone small { margin-top: 12px; color: #78879a; font-size: .84rem; }

.button {
  min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: .65rem 1.15rem; border: 0; border-radius: 10px;
  transition: transform .15s, background .15s, box-shadow .15s; font-size: .92rem;
}
.button:hover { transform: translateY(-1px); }
.button svg { width: 18px; }
.button.primary { color: #fff; background: var(--blue); box-shadow: 0 6px 16px rgba(9,105,218,.2); }
.button.primary:hover { background: var(--blue-dark); }
.button.secondary { color: var(--blue); border: 1px solid #c8d9eb; background: #fff; }
.button.ghost { color: #5d6c7f; background: transparent; }
.button.btn-different-code, #differentCode {
  color: var(--blue); background: #f0f6fc; border: 1.5px solid #bdd7f2;
  font-weight: 600; box-shadow: 0 2px 8px rgba(9,105,218,.08);
}
.button.btn-different-code:hover, #differentCode:hover {
  background: #e1effe; border-color: var(--blue); color: var(--blue-dark);
  box-shadow: 0 4px 14px rgba(9,105,218,.16); transform: translateY(-1px);
}
.button.btn-different-code svg, #differentCode svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.button:disabled { cursor: not-allowed; opacity: .55; transform: none; }
.danger-text { color: var(--danger) !important; }

.file-stage {
  display: grid; grid-template-columns: minmax(220px, .9fr) 1.1fr; gap: 30px;
  align-items: center; min-height: 300px;
}
.preview-frame {
  height: 260px; display: grid; place-items: center; overflow: hidden;
  border: 1px solid var(--line); border-radius: 14px; background: #edf3f9;
}
.preview-frame img, .preview-frame iframe { width: 100%; height: 100%; border: 0; object-fit: contain; }
.preview-frame.generic span {
  display: grid; place-items: center; width: 80px; height: 98px; color: #fff;
  font-size: 1rem; background: var(--blue); border-radius: 8px; box-shadow: 0 12px 28px rgba(9,105,218,.2);
}
.file-kind {
  margin: 0 0 6px; color: var(--blue); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
}
.file-details h3 { margin: 0; font-size: 1.35rem; line-height: 1.25; }
.file-details > p:not(.file-kind) { color: var(--muted); }
.stage-actions { display: flex; gap: 10px; margin-top: 20px; }
.stage-actions.wrap { flex-wrap: wrap; }

.progress-stage { max-width: 580px; margin: 60px auto; text-align: center; }
.progress-head { display: flex; justify-content: space-between; margin-bottom: 10px; }
.progress-track { height: 8px; overflow: hidden; border-radius: 99px; background: #e3ebf4; }
.progress-track span {
  display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width .15s;
}
.progress-stage p, .download-progress p { color: var(--muted); font-size: .85rem; }

.result-stage { max-width: 600px; margin: auto; text-align: center; }
.success-icon {
  display: grid; place-items: center; width: 48px; height: 48px; margin: auto auto 12px;
  border-radius: 50%; color: #fff; background: var(--success);
}
.success-icon svg { width: 24px; }
.eyebrow.success { color: var(--success); }
.result-stage h3 { margin: 0 0 20px; font-size: 1.35rem; }
.result-grid { display: grid; grid-template-columns: 1fr 190px; gap: 18px; align-items: center; }
.code-box {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 95px; padding: 16px; border-radius: 14px; color: var(--blue); background: #edf6ff;
}
.code-box > span { font-size: clamp(1.8rem, 4.5vw, 2.6rem); letter-spacing: .1em; }
.code-box button {
  display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid #c3d9ef;
  border-radius: 8px; color: var(--blue); background: #fff;
}
.code-box svg { width: 17px; }
.qr-box { padding: 8px; border: 1px solid var(--line); border-radius: 14px; }
.qr-box canvas { display: block; width: 174px; height: 174px; }
.expiry-copy { font-size: .88rem; color: var(--muted); }
.result-help { max-width: 500px; margin: 12px auto 18px; color: var(--muted); font-size: .9rem; }

.receive-start { text-align: center; padding: 24px; }
.receive-start .action-icon { margin-left: auto; margin-right: auto; }
.receive-start > p { max-width: 520px; margin: 6px auto 20px; color: var(--muted); font-size: .95rem; }
.code-form { max-width: 540px; margin: auto; text-align: left; }
.code-form label { display: block; margin-bottom: 6px; font-size: .92rem; }
.code-form > div { display: flex; gap: 8px; }
.code-form input {
  flex: 1; min-width: 0; height: 48px; padding: 0 16px; border: 1px solid #bccbdb;
  border-radius: 10px; color: var(--ink); font-size: 1.15rem; letter-spacing: .1em; text-transform: uppercase;
}
.code-form small { display: block; margin-top: 6px; color: var(--muted); font-size: .82rem; }
.receive-file { grid-template-columns: 200px 1fr; }
.receive-file .preview-frame { height: 220px; }
.download-progress { margin-top: 14px; }
.receive-preview { margin-top: 16px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.preview-toolbar {
  height: 46px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px; background: #edf3f9;
}
.preview-toolbar button { border: 0; background: none; font-size: 1.4rem; }
.receive-preview-frame { min-height: 380px; }
.receive-preview img, .receive-preview iframe {
  display: block; width: 100%; height: 480px; border: 0; object-fit: contain; background: #e9eff6;
}
.alert {
  max-width: 680px; margin: 16px auto 0; padding: 11px 14px; border-radius: 9px;
  background: #e9f8f5; color: var(--success); font-size: .9rem;
}
.alert.error { background: #fff0f2; color: var(--danger); }

/* ─── CONTENT & FEATURES ───────────────────────────────── */
.ad-slot {
  width: min(728px, calc(100% - 32px)); min-height: 90px; margin: 40px auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 10px; text-align: center; overflow: hidden;
}
.ad-slot ins.adsbygoogle { width: 100%; min-width: 250px; }
.content-section { max-width: var(--max); margin: auto; padding: 60px 24px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article {
  position: relative; min-height: 260px; padding: 24px; border: 1px solid var(--line);
  border-radius: 16px; background: #fff;
}
.steps article > span {
  position: absolute; right: 20px; top: 16px; color: #c3cfdd; font-size: 1.8rem;
}
.feature-icon { width: 46px; height: 46px; margin-bottom: 20px; }
.feature-icon svg { width: 22px; }
.steps h3 { margin: 0 0 8px; font-size: 1.1rem; }
.steps p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }

.security-section { padding: 20px 24px 60px; }
.security-card {
  max-width: var(--max); margin: auto; padding: 48px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 50px; color: #fff; border-radius: 22px;
  background: radial-gradient(circle at 85% 10%, #174b77 0, transparent 36%), linear-gradient(145deg, #0e2b4d, #0a203b);
  box-shadow: 0 24px 60px rgba(8,33,61,.20);
}
.eyebrow.light { color: #70ddd4; }
.security-copy h2 {
  margin: 0; font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.15; letter-spacing: -.03em;
}
.security-copy > p:not(.eyebrow) { color: #c4d2e1; font-size: .98rem; }
.text-link { text-decoration: none; }
.text-link.light { color: #6fe0d6; }
.security-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.security-list li {
  display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 15px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.055);
}
.security-list svg { width: 23px; color: #6fe0d6; }
.security-list strong, .security-list span { display: block; }
.security-list span { margin-top: 2px; color: #b9c9da; font-size: .86rem; }

.faq-section { padding-top: 50px; }
.faq-list { max-width: 780px; margin: auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative; padding: 18px 40px 18px 2px; cursor: pointer; list-style: none; font-size: 1rem;
}
.faq-list summary:after { content: "+"; position: absolute; right: 6px; font-size: 1.3rem; color: var(--blue); }
.faq-list details[open] summary:after { content: "−"; }
.faq-list p { margin: 0; padding: 0 40px 20px 2px; color: var(--muted); font-size: .92rem; }

/* ─── CONTACT FORM ─────────────────────────────────────── */
.contact-section {
  max-width: var(--max); margin: 20px auto 60px; padding: 48px;
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px;
  border: 1px solid var(--line); border-radius: 20px; background: #fff;
  box-shadow: 0 14px 45px rgba(22,54,91,.06);
}
.contact-copy > p:not(.eyebrow) { color: var(--muted); font-size: .95rem; }
.contact-note { display: flex; align-items: center; gap: 10px; margin-top: 20px; color: #53657b; font-size: .88rem; }
.contact-note svg { width: 20px; color: var(--blue); }
.contact-form { display: grid; gap: 14px; }
.contact-form label span { display: block; margin-bottom: 5px; font-size: .88rem; }
.contact-form label small { color: var(--muted); font-size: .8rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 11px 13px; border: 1px solid #bdcbd9; border-radius: 9px; background: #fbfcfe; font-size: .92rem;
}
.contact-form textarea { resize: vertical; }
.contact-form .button { justify-self: start; }
.form-help { margin: -3px 0 0; color: var(--muted); font-size: .8rem; }

/* ─── LEGAL SUBPAGES (DEDICATED) ───────────────────────── */
.inner-page { max-width: 860px; margin: 0 auto; padding: 40px 24px 80px; }
.page-hero { margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: 8px 0 12px; letter-spacing: -.03em; line-height: 1.2; }
.page-hero p.lead { font-size: 1.05rem; color: var(--muted); line-height: 1.6; margin: 0 0 12px; }
.page-hero-meta { font-size: .84rem; color: #7a8a9e; }
.legal-body { font-size: .95rem; line-height: 1.7; color: #2d3e56; }
.legal-body h2 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--ink); border-bottom: 1px solid #edf2f8; padding-bottom: 6px; }
.legal-body h3 { font-size: 1.05rem; margin: 20px 0 8px; color: var(--ink); }
.legal-body p { margin: 0 0 16px; color: #3a4b64; }
.legal-body ul, .legal-body ol { margin: 0 0 18px; padding-left: 22px; }
.legal-body li { margin-bottom: 8px; color: #3a4b64; }
.disclaimer-box {
  background: #fff6f7; border: 1px solid #f9d2d7; border-left: 4px solid var(--danger);
  border-radius: 10px; padding: 18px 20px; margin: 24px 0; color: #491720;
}
.disclaimer-box strong { color: #9f1c32; display: block; margin-bottom: 6px; }
.info-box {
  background: #eef6ff; border: 1px solid #cfe2f7; border-left: 4px solid var(--blue);
  border-radius: 10px; padding: 18px 20px; margin: 24px 0; color: #0d2f59;
}
.info-box strong { color: var(--blue-dark); display: block; margin-bottom: 6px; }

/* ─── FOOTER ───────────────────────────────────────────── */
footer { color: #c4cfdd; background: #0a1c32; }
.footer-top, .footer-links, .footer-bottom {
  max-width: var(--max); margin: auto; padding-left: 24px; padding-right: 24px;
}
.footer-top { padding-top: 40px; display: flex; align-items: center; justify-content: space-between; }
.footer-top .brand { color: #fff; }
.footer-top p { max-width: 440px; text-align: right; font-size: .88rem; }
.footer-links {
  padding-top: 26px; padding-bottom: 26px; display: flex; flex-wrap: wrap; gap: 14px 26px;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.footer-links a, .footer-links button {
  text-decoration: none; font-size: .88rem; color: #c4cfdd; background: none; border: 0; padding: 0;
  transition: color .15s;
}
.footer-links a:hover, .footer-links button:hover { color: #fff; }
.footer-bottom { padding-top: 18px; padding-bottom: 22px; display: flex; justify-content: space-between; font-size: .78rem; }

/* ─── COOKIE CONSENT BANNER & MODAL ────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999;
  background: rgba(13, 27, 46, 0.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(220, 228, 238, 0.15); box-shadow: 0 -8px 30px rgba(0,0,0,0.35);
  color: #f5f7fa; font-size: .88rem; padding: 14px 0;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.cookie-banner-copy { line-height: 1.5; color: #b7c6d8; }
.cookie-banner-copy strong { color: #fff; display: block; margin-bottom: 2px; font-size: .92rem; }
.cookie-banner-copy a { color: #6fe0d6; text-decoration: underline; }
.cookie-banner-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: .55rem 1.1rem; font-size: .85rem; border-radius: 8px; min-height: 38px;
}
.cookie-btn.accept { background: var(--blue); color: #fff; border: 0; }
.cookie-btn.accept:hover { background: var(--blue-dark); }
.cookie-btn.custom { background: rgba(255,255,255,0.1); color: #e1eaf3; border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn.custom:hover { background: rgba(255,255,255,0.18); }

/* Modal */
.cookie-modal-overlay {
  position: fixed; inset: 0; z-index: 100000;
  background: rgba(10, 23, 40, 0.65); backdrop-filter: blur(5px);
  display: grid; place-items: center; padding: 20px;
}
.cookie-modal-overlay[hidden] { display: none !important; }
.cookie-modal-dialog {
  max-width: 540px; width: 100%; background: #fff; border-radius: 18px; padding: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35); color: var(--ink);
}
.cookie-modal-dialog h3 { margin: 0 0 12px; font-size: 1.3rem; }
.cookie-modal-dialog p { font-size: .9rem; color: var(--muted); margin: 0 0 18px; }
.cookie-category {
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; margin-bottom: 12px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.cookie-category-info strong { display: block; font-size: .92rem; color: var(--ink); }
.cookie-category-info span { display: block; font-size: .82rem; color: var(--muted); margin-top: 2px; }
.cookie-badge {
  font-size: .75rem; background: #e8f5f3; color: var(--success); padding: 4px 8px; border-radius: 6px;
  white-space: nowrap;
}
.cookie-modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }

.turnstile-challenge {
  position: fixed; left: 50%; bottom: 20px; z-index: 1000;
  max-width: calc(100vw - 40px); transform: translateX(-50%);
}
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media(max-width:900px){
  .main-nav {
    position: absolute; left: 16px; right: 16px; top: 64px; display: none;
    flex-direction: column; align-items: stretch; gap: 0; padding: 10px;
    border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 12px; }
  .nav-toggle { display: block; margin-left: 8px; }
  .language-switcher { order: 2; margin-left: auto; }
  .hero { grid-template-columns: 1fr; padding-top: 28px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { font-size: 1.85rem; }
  .hero-visual { min-height: 200px; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: auto; }
  .security-card { grid-template-columns: 1fr; gap: 36px; padding: 36px 24px; }
  .contact-section { grid-template-columns: 1fr; gap: 36px; margin: 16px; padding: 32px 20px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: flex-end; }
}

@media(max-width:650px){
  .nav-wrap { height: 60px; padding: 0 14px; gap: 10px; }
  .brand-mark { width: 30px; height: 30px; }
  .language-button { padding: 3px 5px; gap: 3px; }
  .flag-icon { width: 16px; height: 10px; }
  .language-code { font-size: .68rem; }
  .hero { padding: 20px 16px 12px; }
  .hero h1 { font-size: 1.65rem; }
  .hero-lead { font-size: .94rem; }
  .store-badges { justify-content: center; }
  .hero-visual { transform: scale(.78); margin: -20px -30px; min-height: 180px; }
  .transfer-section { padding: 24px 12px 48px; }
  .section-heading { margin-bottom: 20px; }
  .transfer-tabs { grid-template-columns: 1fr; }
  .transfer-panel { padding: 18px 12px; }
  .drop-zone { padding: 20px 12px; min-height: 260px; }
  .file-stage, .receive-file { grid-template-columns: 1fr; gap: 18px; }
  .preview-frame, .receive-file .preview-frame { height: 190px; }
  .stage-actions { flex-direction: column; }
  .stage-actions.wrap { align-items: stretch; }
  .result-grid { grid-template-columns: 1fr; }
  .qr-box { width: 190px; margin: auto; }
  .code-box > span { font-size: 1.7rem; }
  .code-form > div { flex-direction: column; }
  .content-section { padding: 48px 16px; }
  .security-section { padding: 10px 12px 48px; }
  .security-card { padding: 28px 18px; border-radius: 16px; }
  .contact-section { padding: 24px 16px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-top p { text-align: left; }
  .ad-slot { min-height: 50px; margin: 30px auto; }
  .receive-preview img, .receive-preview iframe { height: 360px; }
  .cookie-banner-actions { flex-direction: column; width: 100%; }
  .cookie-btn { width: 100%; text-align: center; }
}

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