:root {
  --ink: #0b1c2c;
  --muted: #5f6f7e;
  --navy: #071a2f;
  --blue: #1266f1;
  --cyan: #37d5d3;
  --lime: #c9f36a;
  --paper: #f5f7f8;
  --white: #fff;
  --line: #dfe6ea;
  --danger: #a5283f;
  --success: #126b49;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(7, 26, 47, 0.12);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

button, input, select, textarea { font: inherit; }
a { color: inherit; }
.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;
}
.honeypot { position: absolute !important; inset-inline-start: -10000px !important; }

.site-header {
  position: sticky;
  top: 10px;
  z-index: 40;
  width: min(1180px, calc(100% - 40px));
  margin: 10px auto 0;
  min-height: 72px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(214,224,229,.8);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(7,26,47,.08);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 13px 13px 13px 3px;
  font-size: .88rem;
  letter-spacing: -0.04em;
}
.main-nav { display: flex; align-items: center; gap: 25px; margin-inline: auto; }
.main-nav a { color: #405462; text-decoration: none; font-size: .88rem; font-weight: 750; transition: color .18s; }
.main-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-control select {
  min-width: 145px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  padding: 0 13px;
}
.privacy-link { color: var(--muted); text-decoration: none; font-weight: 700; }
.privacy-link:hover { color: var(--blue); }
.header-cta { display: inline-grid; place-items: center; height: 42px; padding: 0 16px; color: var(--white); background: var(--navy); border-radius: 11px; text-decoration: none; font-size: .82rem; font-weight: 850; }

.hero {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 520px;
  margin: 18px auto 70px;
  padding: 72px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 60px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(55, 213, 211, .22), transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(201, 243, 106, .14), transparent 30%),
    var(--navy);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero-copy { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 850;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--lime); }
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.7rem, 5.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.hero-lead { max-width: 660px; margin: 25px 0 0; color: #c9d5df; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; }
.primary-cta, .secondary-cta { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 20px; border-radius: 13px; text-decoration: none; font-size: .9rem; font-weight: 850; transition: transform .18s, filter .18s, background .18s; }
.primary-cta { color: var(--navy); background: var(--lime); box-shadow: 0 14px 30px rgba(201,243,106,.15); }
.secondary-cta { color: var(--white); background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); }
.primary-cta:hover, .secondary-cta:hover { transform: translateY(-2px); filter: brightness(1.05); }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 32px; color: #e7eff4; font-size: .92rem; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row b { display: grid; place-items: center; width: 22px; height: 22px; color: var(--navy); background: var(--lime); border-radius: 50%; font-size: .75rem; }

.hero-orbit { position: relative; z-index: 1; min-height: 320px; display: grid; place-items: center; }
.hero-orbit::before, .hero-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 50%;
}
.hero-orbit::before { width: 300px; height: 300px; }
.hero-orbit::after { width: 220px; height: 220px; }
.orbit-card {
  width: 168px;
  height: 196px;
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--navy);
  background: var(--lime);
  border-radius: 28px 28px 28px 8px;
  box-shadow: 0 28px 55px rgba(0,0,0,.35);
  transform: rotate(-5deg);
}
.orbit-card span { font-size: 4.3rem; font-weight: 900; line-height: .9; letter-spacing: -.09em; }
.orbit-card strong { margin-top: 12px; font-size: .88rem; letter-spacing: .25em; }
.orbit-dot { position: absolute; display: grid; place-items: center; width: 48px; height: 48px; color: var(--navy); background: var(--white); border-radius: 50%; font-size: .78rem; font-weight: 900; box-shadow: 0 10px 25px rgba(0,0,0,.25); }
.dot-one { top: 5px; inset-inline-start: 52px; }
.dot-two { top: 65px; inset-inline-end: 3px; background: var(--cyan); }
.dot-three { bottom: 18px; inset-inline-end: 62px; background: var(--lime); }
.dot-four { bottom: 55px; inset-inline-start: 5px; }

.how-section, .faq-section { width: min(1180px, calc(100% - 40px)); margin: 0 auto 90px; }
.compact-heading { max-width: 760px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-card { position: relative; min-height: 255px; padding: 28px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.process-card:hover { transform: translateY(-5px); border-color: #bfd0db; box-shadow: 0 20px 45px rgba(7,26,47,.09); }
.process-card.featured-card { color: var(--white); background: var(--navy); border-color: var(--navy); }
.process-number { position: absolute; top: 18px; inset-inline-end: 22px; color: #c9d3d9; font-size: 2.6rem; font-weight: 900; letter-spacing: -.08em; }
.featured-card .process-number { color: rgba(255,255,255,.15); }
.process-icon { width: 49px; height: 49px; display: grid; place-items: center; color: var(--navy); background: var(--lime); border-radius: 15px 15px 15px 4px; font-weight: 900; }
.process-card h3 { margin: 35px 0 8px; font-size: 1.18rem; }
.process-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.featured-card p { color: #bfccd5; }
.application-section { width: min(960px, calc(100% - 40px)); margin: 0 auto 90px; scroll-margin-top: 110px; }
.section-heading { margin-bottom: 30px; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.1; letter-spacing: -.045em; }
.section-heading p:last-child { max-width: 650px; margin: 14px 0 0; color: var(--muted); }
.application-form { padding: 42px; background: var(--white); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
fieldset { margin: 0; padding: 0 0 42px; border: 0; }
fieldset + fieldset { padding-top: 40px; border-top: 1px solid var(--line); }
legend { width: 100%; margin-bottom: 26px; padding: 0; display: flex; align-items: center; gap: 12px; font-size: 1.25rem; font-weight: 850; }
.step-number { display: grid; place-items: center; width: 34px; height: 34px; color: var(--white); background: var(--blue); border-radius: 11px 11px 11px 3px; font-size: .88rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.span-2 { grid-column: span 2; }
.field { display: grid; gap: 8px; color: #2f4353; font-size: .88rem; font-weight: 750; }
.field input, .field select, .field textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfcfc;
  border: 1px solid #d6e0e5;
  border-radius: 13px;
  outline: none;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.field input, .field select { height: 50px; padding: 0 14px; }
.field textarea { min-height: 105px; padding: 13px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--white); border-color: var(--blue); box-shadow: 0 0 0 4px rgba(18,102,241,.1); }

.upload-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.upload-card {
  min-height: 190px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px dashed #afbec7;
  border-radius: 18px;
  background: #fbfcfc;
  cursor: pointer;
  transition: transform .18s, border-color .18s, background .18s;
}
.upload-card:hover, .upload-card:focus-within { transform: translateY(-2px); border-color: var(--blue); background: #f5f9ff; }
.upload-card input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload-card strong { margin-top: 12px; }
.upload-card small { margin-top: 4px; color: var(--muted); }
.upload-icon { display: grid; place-items: center; width: 55px; height: 55px; color: #c2464f; background: #fff0f1; border-radius: 15px 15px 15px 4px; font-size: .74rem; font-weight: 900; }
.photo-icon { color: #126b49; background: #e8f8f1; }
.id-icon { color: #7a5511; background: #fff4da; }
.file-name { max-width: 100%; margin-top: 14px; padding: 5px 10px; color: var(--blue); background: #ebf2ff; border-radius: 8px; font-size: .75rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-name.has-file { color: var(--success); background: #e8f7ef; }
.identity-type { align-self: center; padding: 22px; background: #f7f9fa; border-radius: 18px; }
.privacy-note { margin-top: 22px; padding: 18px; display: flex; align-items: flex-start; gap: 14px; color: #29424e; background: #effafa; border: 1px solid #cce9e8; border-radius: 15px; }
.privacy-note p { margin: 3px 0 0; color: #547078; font-size: .88rem; }
.lock-icon { display: grid; place-items: center; flex: 0 0 auto; width: 32px; height: 32px; color: var(--white); background: #15928f; border-radius: 10px; font-size: .7rem; }

.consents { padding: 24px 0 12px; border-top: 1px solid var(--line); }
.check-row { display: flex; align-items: flex-start; gap: 12px; color: #425563; font-size: .9rem; cursor: pointer; }
.check-row input { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 3px; accent-color: var(--blue); }
.check-row a { color: var(--blue); font-weight: 750; }
.submit-button { width: 100%; min-height: 58px; margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--white); background: var(--blue); border: 0; border-radius: 15px; font-weight: 850; cursor: pointer; box-shadow: 0 14px 30px rgba(18,102,241,.25); transition: transform .18s, filter .18s; }
.submit-button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.submit-button:disabled { cursor: wait; opacity: .76; transform: none; }
.button-loader { display: none; width: 19px; height: 19px; border: 2px solid rgba(255,255,255,.45); border-top-color: var(--white); border-radius: 50%; animation: spin .75s linear infinite; }
.is-sending .button-loader { display: block; }
.submit-footnote { margin: 11px 0 0; color: var(--muted); text-align: center; font-size: .78rem; }
.form-status { margin-top: 18px; padding: 15px 17px; border-radius: 13px; font-weight: 750; }
.form-status.is-progress { color: #285675; background: #edf7ff; border: 1px solid #c9e5f7; }
.form-status.is-success { color: var(--success); background: #eaf8f0; border: 1px solid #bfe7d1; }
.form-status.is-error { color: var(--danger); background: #fff0f2; border: 1px solid #f3c4cc; }
.form-status.is-warning { color: #76520d; background: #fff7df; border: 1px solid #ead38d; }

.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.faq-grid details { padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.faq-grid summary { position: relative; padding-inline-end: 25px; cursor: pointer; list-style: none; font-weight: 850; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after { content: "+"; position: absolute; inset-inline-end: 0; top: 0; color: var(--blue); font-size: 1.3rem; line-height: 1; }
.faq-grid details[open] summary::after { content: "−"; }
.faq-grid p { margin: 14px 0 0; color: var(--muted); font-size: .9rem; }

.success-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; background: rgba(4,17,31,.76); backdrop-filter: blur(10px); overflow: auto; }
.success-modal[hidden] { display: none; }
.modal-open { overflow: hidden; }
.success-card { position: relative; width: min(540px, 100%); padding: 48px 42px 40px; text-align: center; background: var(--white); border: 1px solid rgba(255,255,255,.75); border-radius: 28px; box-shadow: 0 35px 100px rgba(0,0,0,.36); animation: success-in .45s cubic-bezier(.2,.8,.2,1); }
.success-check { width: 78px; height: 78px; margin: 0 auto 24px; display: grid; place-items: center; color: var(--navy); background: var(--lime); border: 8px solid #effbd5; border-radius: 50%; font-size: 2rem; font-weight: 950; }
.success-card .eyebrow { margin-bottom: 9px; }
.success-card h2 { margin: 0; font-size: clamp(2rem, 7vw, 3rem); line-height: 1.05; letter-spacing: -.05em; }
.success-card > p:not(.eyebrow) { max-width: 420px; margin: 16px auto 0; color: var(--muted); }
.reference-box { margin: 26px 0 20px; padding: 15px 18px; display: grid; gap: 4px; background: #f3f7f9; border: 1px solid var(--line); border-radius: 14px; }
.reference-box span { color: var(--muted); font-size: .76rem; font-weight: 750; }
.reference-box strong { color: var(--blue); font-size: 1.08rem; letter-spacing: .04em; }
.modal-button { width: 100%; min-height: 52px; color: var(--white); background: var(--navy); border: 0; border-radius: 13px; font-weight: 850; cursor: pointer; }
.success-confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.success-confetti i { position: absolute; top: -25px; width: 10px; height: 22px; background: var(--lime); border-radius: 4px; animation: confetti 2.8s ease-in infinite; }
.success-confetti i:nth-child(1) { left: 12%; animation-delay: .1s; }
.success-confetti i:nth-child(2) { left: 28%; background: var(--cyan); animation-delay: .45s; }
.success-confetti i:nth-child(3) { left: 44%; background: #fff; animation-delay: .8s; }
.success-confetti i:nth-child(4) { left: 62%; background: var(--blue); animation-delay: .25s; }
.success-confetti i:nth-child(5) { left: 77%; background: var(--lime); animation-delay: .65s; }
.success-confetti i:nth-child(6) { left: 91%; background: #fff; animation-delay: 1s; }

footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 30px 0 38px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--muted); border-top: 1px solid var(--line); font-size: .86rem; }
footer > div { display: flex; align-items: center; gap: 14px; }
footer strong { color: var(--ink); font-size: 1rem; }
.footer-links { flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { text-decoration: none; font-weight: 750; }
.noscript-message { margin: 0; padding: 14px; color: #fff; background: var(--danger); text-align: center; }
.privacy-page { width: min(860px, calc(100% - 40px)); margin: 35px auto 80px; padding: 42px; background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.privacy-page h1 { margin-top: 0; font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -.05em; }
.privacy-page h2 { margin-top: 32px; }
.privacy-page p, .privacy-page li { color: #445866; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes success-in { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes confetti { 0% { transform: translateY(-20px) rotate(0); opacity: 0; } 12% { opacity: 1; } 100% { transform: translateY(105vh) rotate(620deg); opacity: .25; } }
@media (max-width: 860px) {
  .main-nav { display: none; }
  .hero { min-height: auto; padding: 52px 34px; grid-template-columns: 1fr; }
  .hero-orbit { min-height: 290px; }
  .hero h1 { font-size: clamp(2.6rem, 10vw, 4.6rem); }
  .process-grid, .faq-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 220px; }
}
@media (max-width: 640px) {
  .site-header { top: 6px; width: min(100% - 16px, 1180px); min-height: 64px; margin-top: 6px; padding: 0 10px; border-radius: 15px; }
  .brand > span:last-child { display: none; }
  .header-actions { gap: 10px; }
  .language-control select { min-width: 112px; max-width: 135px; height: 40px; }
  .header-cta { display: none; }
  .hero, .application-section, .how-section, .faq-section { width: calc(100% - 24px); }
  .hero { margin-top: 8px; margin-bottom: 52px; padding: 40px 24px; border-radius: 24px; }
  .hero-orbit { transform: scale(.85); margin: -15px; }
  .trust-row { display: grid; }
  .hero-actions { align-items: stretch; }
  .primary-cta, .secondary-cta { width: 100%; }
  .application-form { padding: 24px 18px; border-radius: 20px; }
  .form-grid, .upload-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
  fieldset { padding-bottom: 32px; }
  fieldset + fieldset { padding-top: 32px; }
  .success-card { padding: 38px 22px 28px; border-radius: 22px; }
  footer { width: calc(100% - 24px); align-items: flex-start; flex-direction: column; gap: 12px; }
  footer > div { flex-wrap: wrap; }
  .footer-links { justify-content: flex-start; }
  .privacy-page { width: calc(100% - 24px); padding: 26px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
