:root {
  --navy-950: #071f38;
  --navy-900: #0a2a4a;
  --navy-800: #0b3157;
  --navy-700: #104a7a;
  --blue-600: #2f6ea8;
  --blue-100: #e9f2fb;
  --gold-500: #d9b153;
  --gold-300: #efd58f;
  --ink: #152334;
  --muted: #647286;
  --line: #dce4ed;
  --surface: #ffffff;
  --surface-soft: #f5f8fb;
  --shadow: 0 28px 70px rgba(7, 31, 56, 0.13);
  --shadow-soft: 0 14px 35px rgba(7, 31, 56, 0.08);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed; left: 12px; top: 10px; z-index: 999; transform: translateY(-160%);
  padding: 10px 14px; border-radius: 10px; background: #fff; color: var(--navy-900);
  box-shadow: var(--shadow-soft); font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(220, 228, 237, .85);
  background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img, .footer-brand img { border-radius: 11px; box-shadow: 0 8px 20px rgba(7,31,56,.13); }
.brand span, .footer-brand span { display: grid; line-height: 1.15; }
.brand strong { font-size: 16px; letter-spacing: -.015em; }
.brand small { color: var(--muted); font-size: 12px; margin-top: 4px; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-link { color: var(--navy-800); text-decoration: none; font-weight: 750; font-size: 14px; }
.language-switch { display: flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface-soft); }
.lang-button { appearance: none; border: 0; background: transparent; color: var(--muted); border-radius: 8px; padding: 6px 9px; font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; }
.lang-button.is-active { background: #fff; color: var(--navy-900); box-shadow: 0 3px 10px rgba(7,31,56,.08); }
.lang-button:focus-visible, .button:focus-visible, .nav-link:focus-visible, .brand:focus-visible { outline: 3px solid rgba(217,177,83,.48); outline-offset: 3px; }

.hero {
  position: relative; overflow: hidden; padding: 94px 0 104px;
  background: radial-gradient(circle at 83% 16%, rgba(217,177,83,.20), transparent 25%), linear-gradient(180deg, #f9fbfd 0%, #fff 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(11,49,87,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11,49,87,.035) 1px, transparent 1px);
  background-size: 42px 42px; mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
}
.hero-orb { position: absolute; border-radius: 999px; filter: blur(4px); opacity: .65; pointer-events: none; }
.hero-orb-one { width: 320px; height: 320px; right: -140px; top: 210px; background: rgba(47,110,168,.12); }
.hero-orb-two { width: 230px; height: 230px; left: -120px; top: 80px; background: rgba(217,177,83,.12); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr); align-items: center; gap: 70px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--navy-700); font-size: 12px; line-height: 1; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow { padding: 10px 13px; border: 1px solid #dbe7f2; border-radius: 999px; background: rgba(255,255,255,.82); }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 5px rgba(217,177,83,.16); }
.hero h1 { margin: 24px 0 10px; max-width: 700px; color: var(--navy-950); font-size: clamp(54px, 7vw, 84px); line-height: .98; letter-spacing: -.055em; }
.hero-lead { margin: 0 0 16px; max-width: 650px; color: var(--navy-800); font-size: clamp(24px, 3vw, 34px); line-height: 1.18; font-weight: 760; letter-spacing: -.025em; }
.hero-text { max-width: 680px; margin: 0; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 13px; padding: 12px 18px; border: 1px solid transparent; text-decoration: none; font-weight: 800; font-size: 14px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-1px); }
.button svg { width: 18px; height: 18px; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--navy-800), var(--blue-600)); box-shadow: 0 12px 26px rgba(11,49,87,.2); }
.button-primary:hover { box-shadow: 0 16px 30px rgba(11,49,87,.25); }
.button-secondary { color: var(--navy-800); background: #fff; border-color: var(--line); box-shadow: 0 8px 20px rgba(7,31,56,.05); }
.external-note { display: flex; align-items: flex-start; gap: 9px; max-width: 630px; margin: 16px 0 0; color: #7a8797; font-size: 12.5px; }
.external-note svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; }

.hero-visual { position: relative; min-height: 545px; display: grid; place-items: center; }
.phone-shell { position: relative; width: min(316px, 75vw); padding: 13px; border-radius: 44px; background: linear-gradient(155deg, #102c48, #061524); box-shadow: 0 38px 85px rgba(7,31,56,.28), inset 0 0 0 1px rgba(255,255,255,.15); transform: rotate(1.6deg); }
.phone-top { height: 29px; display: flex; justify-content: center; align-items: center; gap: 7px; color: #fff; }
.phone-top span:first-child { width: 66px; height: 7px; border-radius: 99px; background: rgba(255,255,255,.18); }
.phone-top span:last-child { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); }
.phone-screen { min-height: 448px; padding: 28px 22px 22px; border-radius: 32px; background: linear-gradient(180deg, #f9fbfd 0%, #edf3f8 100%); overflow: hidden; }
.app-title-row { display: flex; align-items: center; gap: 13px; margin-bottom: 26px; }
.app-title-row img { border-radius: 15px; box-shadow: 0 10px 22px rgba(7,31,56,.13); }
.app-title-row div { display: grid; }
.app-title-row small, .mini-card small, .floating-card small { color: #7a8797; font-size: 11px; }
.app-title-row strong { color: var(--navy-900); font-size: 17px; }
.mini-card { display: flex; align-items: center; gap: 13px; padding: 17px; border-radius: 18px; background: #fff; box-shadow: 0 12px 28px rgba(7,31,56,.09); }
.mini-card-feature { margin-bottom: 14px; }
.mini-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: var(--navy-700); background: var(--blue-100); }
.mini-icon svg { width: 23px; height: 23px; }
.mini-card > span:last-child { display: grid; }
.mini-card strong { color: var(--navy-900); font-size: 13px; }
.mini-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-tile { min-height: 112px; display: flex; flex-direction: column; justify-content: space-between; padding: 16px; border-radius: 18px; background: #fff; color: var(--navy-800); box-shadow: 0 10px 24px rgba(7,31,56,.07); font-size: 12px; font-weight: 750; line-height: 1.25; }
.mini-tile svg { width: 27px; height: 27px; }
.mini-status { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding: 14px 15px; color: #5a6a7e; border: 1px solid #dde7ef; border-radius: 15px; background: rgba(255,255,255,.72); font-size: 11.5px; font-weight: 700; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #61a778; box-shadow: 0 0 0 5px rgba(97,167,120,.12); }
.floating-card { position: absolute; display: flex; align-items: center; gap: 11px; min-width: 186px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.9); border-radius: 16px; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); box-shadow: var(--shadow-soft); }
.floating-card span:last-child { display: grid; line-height: 1.25; }
.floating-card strong { color: var(--navy-900); font-size: 12.5px; }
.floating-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 12px; color: var(--navy-700); background: var(--blue-100); }
.floating-icon.gold { color: #7c5c12; background: #fbf1d2; }
.floating-icon svg { width: 20px; height: 20px; }
.floating-card-top { right: -6px; top: 90px; }
.floating-card-bottom { left: -7px; bottom: 74px; }

.section { padding: 92px 0; }
.section-help { background: var(--surface-soft); border-top: 1px solid #edf1f5; border-bottom: 1px solid #edf1f5; }
.section-heading { max-width: 730px; margin-bottom: 40px; }
.section-heading h2, .support-panel h2, .process-copy h2 { margin: 12px 0 12px; color: var(--navy-950); font-size: clamp(32px, 4vw, 46px); line-height: 1.1; letter-spacing: -.035em; }
.section-heading p, .process-copy > p { margin: 0; color: var(--muted); font-size: 16px; }
.help-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.help-card { min-height: 235px; padding: 26px; border: 1px solid #e0e8ef; border-radius: 20px; background: #fff; box-shadow: 0 8px 24px rgba(7,31,56,.035); transition: transform .18s ease, box-shadow .18s ease; }
.help-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(7,31,56,.07); }
.help-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 34px; border-radius: 15px; color: var(--navy-700); background: linear-gradient(145deg, var(--blue-100), #f4f8fb); }
.help-icon svg { width: 25px; height: 25px; }
.help-card h3 { margin: 0 0 8px; color: var(--navy-900); font-size: 17px; letter-spacing: -.015em; }
.help-card p { margin: 0; color: var(--muted); font-size: 14px; }

.support-panel-section { padding-top: 78px; padding-bottom: 78px; }
.support-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: center; padding: 46px 48px; border-radius: 28px; color: #fff; background: linear-gradient(135deg, var(--navy-950), #0f4d7d 70%, #1e6090); box-shadow: var(--shadow); }
.support-panel::after { content: ""; position: absolute; width: 320px; height: 320px; right: -145px; top: -155px; border-radius: 50%; border: 1px solid rgba(255,255,255,.13); box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.02); }
.section-kicker.light { color: var(--gold-300); }
.support-panel h2 { color: #fff; }
.support-panel-copy p { margin: 0; max-width: 760px; color: rgba(255,255,255,.76); }
.portal-url { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; color: rgba(255,255,255,.86); background: rgba(255,255,255,.07); font-size: 13px; font-weight: 700; }
.portal-url svg { width: 17px; height: 17px; }
.support-panel-action { position: relative; z-index: 2; display: grid; justify-items: start; gap: 11px; }
.button-light { color: var(--navy-900); background: #fff; box-shadow: 0 12px 25px rgba(0,0,0,.12); }
.support-panel-action small { max-width: 270px; color: rgba(255,255,255,.62); line-height: 1.4; }

.process-section { padding-top: 72px; }
.process-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; }
.process-list { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 7px; }
.process-list li { display: grid; grid-template-columns: 56px 1fr; gap: 17px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 0; }
.step-number { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: var(--navy-800); background: var(--blue-100); font-size: 12px; font-weight: 900; letter-spacing: .07em; }
.process-list strong { display: block; color: var(--navy-900); font-size: 16px; }
.process-list p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.illustration-card { position: relative; overflow: hidden; min-height: 480px; display: grid; place-items: center; padding: 32px; border: 1px solid #e1e8ef; border-radius: 28px; background: radial-gradient(circle at 55% 42%, #fff 0%, #f3f7fa 68%); box-shadow: var(--shadow-soft); }
.illustration-card::before { content: ""; position: absolute; width: 280px; height: 280px; border: 1px solid #dfebf4; border-radius: 50%; box-shadow: 0 0 0 45px rgba(47,110,168,.025), 0 0 0 90px rgba(47,110,168,.018); }
.illustration-card img { position: relative; z-index: 2; width: min(390px, 92%); filter: drop-shadow(0 18px 26px rgba(7,31,56,.07)); }
.illustration-caption { position: absolute; z-index: 3; left: 26px; right: 26px; bottom: 24px; display: grid; gap: 2px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.92); border-radius: 15px; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); box-shadow: 0 10px 24px rgba(7,31,56,.08); }
.illustration-caption strong { color: var(--navy-900); font-size: 14px; }
.illustration-caption span { color: var(--muted); font-size: 12px; }

.trust-section { padding-top: 40px; padding-bottom: 78px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-card { display: flex; gap: 15px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.trust-icon { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--navy-700); background: var(--blue-100); }
.trust-icon svg { width: 22px; height: 22px; }
.trust-card strong { color: var(--navy-900); font-size: 14px; }
.trust-card p { margin: 4px 0 0; color: var(--muted); font-size: 12.5px; }

.notice-section { padding: 0 0 72px; }
.notice { display: flex; gap: 14px; align-items: flex-start; padding: 19px 21px; border: 1px solid #e2e9ef; border-radius: 16px; color: #5d6d7f; background: #f8fafc; }
.notice svg { width: 21px; height: 21px; flex: 0 0 auto; margin-top: 2px; color: var(--navy-700); }
.notice p { margin: 0; font-size: 13px; }

.site-footer { padding: 25px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand strong { color: var(--navy-900); font-size: 14px; }
.footer-brand small { color: var(--muted); font-size: 11px; margin-top: 3px; }
.footer-grid > p { margin: 0; color: #8290a0; font-size: 11.5px; text-align: right; }

@media (max-width: 980px) {
  .hero { padding-top: 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 520px; }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .support-panel { grid-template-columns: 1fr; gap: 28px; }
  .process-grid { grid-template-columns: 1fr; gap: 52px; }
  .illustration-card { min-height: 440px; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav { min-height: 68px; }
  .nav-link { display: none; }
  .brand img { width: 39px; height: 39px; }
  .brand strong { font-size: 15px; }
  .hero { padding: 58px 0 72px; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-lead { font-size: 25px; }
  .hero-text { font-size: 15.5px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 485px; }
  .phone-shell { width: min(284px, 78vw); }
  .phone-screen { min-height: 415px; padding: 24px 18px 18px; }
  .floating-card { min-width: 160px; padding: 11px 12px; }
  .floating-card-top { right: -3px; top: 72px; }
  .floating-card-bottom { left: -2px; bottom: 55px; }
  .section { padding: 72px 0; }
  .help-grid, .trust-grid { grid-template-columns: 1fr; }
  .help-card { min-height: auto; }
  .help-icon { margin-bottom: 25px; }
  .support-panel { padding: 34px 25px; border-radius: 22px; }
  .support-panel h2, .section-heading h2, .process-copy h2 { font-size: 34px; }
  .support-panel-action { width: 100%; }
  .illustration-card { min-height: 390px; padding: 24px; }
  .process-list li { grid-template-columns: 48px 1fr; gap: 13px; }
  .step-number { width: 42px; height: 42px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-grid > p { text-align: left; }
}

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

.simple-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: radial-gradient(circle at 50% 20%, rgba(217,177,83,.16), transparent 30%), #f6f9fb; }
.simple-card { width: min(100%, 560px); display: grid; justify-items: start; padding: 44px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow); }
.simple-card img { margin-bottom: 24px; border-radius: 17px; box-shadow: var(--shadow-soft); }
.simple-card h1 { margin: 12px 0 8px; color: var(--navy-950); font-size: 38px; letter-spacing: -.03em; }
.simple-card p { margin: 0 0 24px; color: var(--muted); }
