:root {
  --ink: #141618;
  --ink-2: #24282b;
  --paper: #f7f5f1;
  --paper-2: #eeebe5;
  --white: #ffffff;
  --muted: #64696d;
  --red: #c9131b;
  --red-dark: #8e0c12;
  --red-soft: #fae7e8;
  --line: rgba(20, 22, 24, .14);
  --line-dark: rgba(255, 255, 255, .14);
  --shadow: 0 24px 70px rgba(20, 22, 24, .11);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shell: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--site-font), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { color: white; background: var(--red); }
a { color: inherit; }
button, input, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
section { scroll-margin-top: 92px; }
.shell { width: min(var(--shell), calc(100% - 32px)); margin-inline: auto; }
.skip-link {
  position: fixed; z-index: 100; inset-block-start: 8px; inset-inline-start: 8px;
  padding: 10px 14px; color: white; background: var(--ink); border-radius: 10px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid rgba(201, 19, 27, .42); outline-offset: 3px; }

.site-header {
  position: sticky; z-index: 40; top: 0; border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 241, .94); backdrop-filter: blur(18px) saturate(140%);
}
.nav { min-height: 76px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; text-decoration: none; }
.brand-mark {
  width: 48px; height: 48px; overflow: hidden; flex: 0 0 auto;
  border: 1px solid rgba(20,22,24,.08); border-radius: 13px; background: white;
}
.brand-mark img { width: 100%; height: auto; clip-path: inset(0 0 21% 0); transform: scale(1.15); transform-origin: 50% 0; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 17px; letter-spacing: -.02em; }
.brand-copy span { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 26px; margin-inline: auto; }
.nav-link { color: #4e5357; text-decoration: none; font-size: 14px; font-weight: 650; }
.nav-link:hover { color: var(--red); }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-inline-start: auto; }
.language-link {
  min-width: 46px; min-height: 46px; display: inline-flex; align-items: center; justify-content: center;
  padding-inline: 10px; border: 1px solid var(--line); border-radius: 12px; background: white;
  text-decoration: none; font-size: 12px; font-weight: 800;
}
.button {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0 20px; border: 1px solid transparent; border-radius: 13px; cursor: pointer;
  text-decoration: none; font-weight: 750; font-size: 14px; line-height: 1.2;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--red); box-shadow: 0 12px 28px rgba(201,19,27,.2); }
.button-primary:hover { background: var(--red-dark); box-shadow: 0 15px 34px rgba(201,19,27,.28); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.7); }
.button-secondary:hover { background: white; }
.button-small { min-height: 46px; padding-inline: 15px; font-size: 13px; }
.button .full-label { display: inline; }
.button .short-label { display: none; }

.hero {
  position: relative; overflow: hidden; isolation: isolate; padding: clamp(64px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(201,19,27,.13), transparent 30%),
    linear-gradient(rgba(20,22,24,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,22,24,.035) 1px, transparent 1px), var(--paper);
  background-size: auto, 56px 56px, 56px 56px, auto;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); gap: clamp(44px, 7vw, 92px); align-items: center; }
.kicker { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
[dir="rtl"] .kicker { letter-spacing: 0; }
h1, h2, h3 { overflow-wrap: anywhere; }
h1 {
  max-width: 860px; margin: 18px 0 24px; font-size: clamp(48px, 6.5vw, 82px);
  font-weight: 780; line-height: 1.01; letter-spacing: -.03em;
}
[dir="rtl"] h1 { font-size: clamp(44px, 6vw, 76px); letter-spacing: 0; line-height: 1.06; }
.hero-accent { color: var(--red); }
.hero-copy { max-width: 690px; margin: 0; color: var(--muted); font-size: clamp(17px, 1.7vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.proof-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.proof-pill { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.7); font-size: 12px; font-weight: 650; }

.route-board {
  min-height: 440px; position: relative; padding: 28px; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-xl); color: white; background: var(--ink);
  box-shadow: var(--shadow);
}
.route-board::before { content: ""; position: absolute; width: 300px; height: 300px; inset: -120px -120px auto auto; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 48px rgba(255,255,255,.025), 0 0 0 96px rgba(255,255,255,.018); }
.route-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #c6c9cb; }
[dir="rtl"] .route-top { letter-spacing: 0; }
.status-dot { display: inline-flex; align-items: center; gap: 7px; color: #ff777d; }
.status-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.route-flow { display: grid; gap: 16px; margin-top: 64px; }
.route-node { position: relative; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 13px; padding: 15px; border: 1px solid var(--line-dark); border-radius: 14px; background: rgba(255,255,255,.05); }
.route-node + .route-node::before { content: ""; position: absolute; width: 1px; height: 17px; inset-block-start: -17px; inset-inline-start: 35px; background: linear-gradient(#ff777d, rgba(255,255,255,.2)); }
.node-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; color: #ff777d; background: rgba(201,19,27,.14); font-weight: 850; }
.route-node strong { display: block; font-size: 14px; }
.route-node span { color: #aeb2b5; font-size: 11px; }
.route-node em { color: #ff777d; font-style: normal; font-size: 11px; font-weight: 750; }

.section { padding: clamp(78px, 9vw, 118px) 0; }
.section-white { background: white; }
.section-dark { color: white; background: var(--ink); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr); align-items: end; gap: 48px; margin-bottom: 46px; }
.section-heading h2 { max-width: 760px; margin: 12px 0 0; font-size: clamp(38px, 5vw, 66px); font-weight: 760; line-height: 1.04; letter-spacing: -.03em; }
[dir="rtl"] .section-heading h2 { font-size: clamp(36px, 4.7vw, 62px); letter-spacing: 0; line-height: 1.1; }
.section-heading p { max-width: 560px; margin: 0; color: var(--muted); font-size: 17px; }
.section-dark .section-heading p { color: #b5b8ba; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card { min-width: 0; min-height: 290px; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fbfaf8; }
.card-number { color: var(--red); font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.card h3 { margin: auto 0 10px; font-size: clamp(23px, 2.7vw, 31px); line-height: 1.15; letter-spacing: -.02em; }
[dir="rtl"] .card h3 { letter-spacing: 0; }
.card p { margin: 0; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.tags span { padding: 5px 8px; border-radius: 999px; background: var(--paper-2); color: #5c6165; font-size: 10px; font-weight: 700; }

.benefits-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
.benefits-copy h2 { margin: 15px 0 20px; font-size: clamp(38px, 5vw, 64px); line-height: 1.05; letter-spacing: -.03em; }
[dir="rtl"] .benefits-copy h2 { letter-spacing: 0; line-height: 1.1; }
.benefits-copy > p { color: #b5b8ba; font-size: 17px; }
.benefit-list { display: grid; gap: 10px; }
.benefit-item { display: grid; grid-template-columns: 36px 1fr; gap: 13px; padding: 20px; border: 1px solid var(--line-dark); border-radius: var(--radius-md); background: rgba(255,255,255,.035); }
.benefit-check { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: #ff777d; background: rgba(201,19,27,.14); font-weight: 900; }
.benefit-item strong { display: block; margin-bottom: 4px; }
.benefit-item p { margin: 0; color: #adb1b4; font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step { min-height: 270px; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; }
.step small { color: var(--red); font-weight: 850; letter-spacing: .1em; }
.step h3 { margin: auto 0 10px; font-size: 27px; line-height: 1.15; letter-spacing: -.02em; }
[dir="rtl"] .step h3 { letter-spacing: 0; }
.step p { margin: 0; color: var(--muted); }

.coverage-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: clamp(26px, 5vw, 54px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(135deg, white, #f2efea); }
.coverage-panel h2 { margin: 12px 0 16px; font-size: clamp(36px, 5vw, 60px); line-height: 1.07; letter-spacing: -.03em; }
[dir="rtl"] .coverage-panel h2 { letter-spacing: 0; }
.coverage-panel p { color: var(--muted); }
.coverage-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; align-content: center; }
.coverage-list span { min-height: 52px; display: flex; align-items: center; padding: 12px 15px; border: 1px solid var(--line); border-radius: 13px; background: white; font-weight: 700; }

.faq { display: grid; gap: 10px; max-width: 920px; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: 15px; background: white; }
.faq summary { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 18px; cursor: pointer; font-weight: 750; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 23px; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0; padding: 0 18px 18px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(42px, 7vw, 82px); align-items: start; }
.contact-copy h2 { margin: 13px 0 18px; font-size: clamp(40px, 5.5vw, 68px); line-height: 1.04; letter-spacing: -.03em; }
[dir="rtl"] .contact-copy h2 { letter-spacing: 0; line-height: 1.1; }
.contact-copy p { color: var(--muted); font-size: 17px; }
.contact-notes { display: grid; gap: 10px; margin-top: 28px; }
.contact-note { padding: 14px 16px; border-inline-start: 3px solid var(--red); background: white; }
.contact-note strong { display: block; font-size: 14px; }
.contact-note span { color: var(--muted); font-size: 12px; }
.contact-form { padding: clamp(22px, 4vw, 36px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: white; box-shadow: var(--shadow); }
.contact-form h3 { margin: 0 0 5px; font-size: 27px; letter-spacing: -.02em; }
[dir="rtl"] .contact-form h3 { letter-spacing: 0; }
.form-intro { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 15px; }
.field { min-width: 0; display: grid; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 750; }
.field input, .field textarea { width: 100%; min-height: 50px; border: 1px solid #c7c8c9; border-radius: 11px; padding: 11px 12px; color: var(--ink); background: #fcfbfa; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--red); outline: 3px solid rgba(201,19,27,.12); }
.field [aria-invalid="true"] { border-color: var(--red); }
.field-error { min-height: 18px; margin: 0; color: var(--red-dark); font-size: 12px; font-weight: 650; }
.honeypot {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 18px; }
.form-status { min-height: 24px; margin: 0; font-size: 13px; font-weight: 650; }
.form-status.success { color: #17683a; }
.form-status.error { color: var(--red-dark); }
.form-privacy { margin: 14px 0 0; color: var(--muted); font-size: 11px; }

.policy-hero { padding: 72px 0 46px; border-bottom: 1px solid var(--line); }
.policy-hero h1 { max-width: 900px; margin-bottom: 16px; font-size: clamp(44px, 6vw, 72px); }
.policy-hero p { max-width: 780px; margin: 0; color: var(--muted); font-size: 17px; }
.policy-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 54px; padding: 58px 0 100px; }
.policy-nav { position: sticky; top: 98px; align-self: start; display: grid; gap: 7px; }
.policy-nav a { padding: 9px 11px; border-radius: 9px; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 650; }
.policy-nav a:hover { color: var(--red); background: white; }
.policy-content { min-width: 0; }
.policy-section { padding: 0 0 44px; margin-bottom: 44px; border-bottom: 1px solid var(--line); }
.policy-section h2 { margin: 0 0 20px; font-size: clamp(30px, 4vw, 44px); line-height: 1.12; letter-spacing: -.02em; }
[dir="rtl"] .policy-section h2 { letter-spacing: 0; }
.policy-section h3 { margin: 27px 0 8px; font-size: 20px; }
.policy-section p, .policy-section li { color: #4d5357; }
.policy-section ul { padding-inline-start: 22px; }
.policy-callout { padding: 20px; border: 1px solid rgba(201,19,27,.24); border-radius: 14px; background: var(--red-soft); }

.site-footer { padding: 38px 0; color: #bbbfc2; background: #101214; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark { width: 48px; height: 48px; }
.footer-brand strong { display: block; color: white; }
.footer-brand span { font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-note { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid var(--line-dark); font-size: 11px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid, .benefits-grid, .coverage-panel, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
  .route-board { min-height: 390px; }
  .card-grid, .steps { grid-template-columns: 1fr 1fr; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .policy-layout { grid-template-columns: 1fr; gap: 28px; }
  .policy-nav { position: static; display: flex; overflow-x: auto; padding-bottom: 8px; }
  .policy-nav a { flex: 0 0 auto; }
}

@media (max-width: 600px) {
  .shell { width: min(100% - 24px, var(--shell)); }
  .nav { min-height: 68px; gap: 8px; }
  .brand-copy { display: none; }
  .brand-mark { width: 44px; height: 44px; }
  .nav-actions { gap: 6px; min-width: 0; }
  .language-link { min-width: 46px; padding-inline: 7px; }
  .header-cta { min-width: 0; padding-inline: 12px; }
  .button .full-label { display: none; }
  .button .short-label { display: inline; }
  .hero { padding: 52px 0 68px; }
  h1, [dir="rtl"] h1 { font-size: clamp(38px, 11.5vw, 48px); overflow-wrap: normal; word-break: normal; }
  [dir="rtl"] h1 { font-size: clamp(36px, 10.7vw, 44px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .route-board { min-height: 360px; padding: 20px; }
  .route-top { font-size: 9px; }
  .route-flow { margin-top: 44px; }
  .route-node { grid-template-columns: 38px minmax(0,1fr); }
  .route-node em { display: none; }
  .route-node + .route-node::before { inset-inline-start: 31px; }
  .card-grid, .steps, .coverage-list, .form-grid { grid-template-columns: 1fr; }
  .card { min-height: 260px; }
  .field-full { grid-column: auto; }
  .policy-nav { flex-wrap: wrap; overflow: visible; gap: 4px; }
  .policy-nav a { border: 1px solid var(--line); background: white; }
  .section-heading h2, [dir="rtl"] .section-heading h2 { font-size: clamp(34px, 10vw, 44px); }
  .contact-copy h2, [dir="rtl"] .contact-copy h2 { font-size: clamp(36px, 10.5vw, 44px); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-note { grid-column: auto; }
}

@media (min-width: 521px) and (max-width: 600px) {
  .brand-copy { display: grid; }
  .button .full-label { display: inline; }
  .button .short-label { display: none; }
}

@media (max-width: 360px) {
  .header-cta { padding-inline: 10px; font-size: 12px; }
  .language-link { min-width: 46px; }
}

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