:root {
  --ink: #12233f;
  --ink-soft: #526078;
  --blue: #1956d1;
  --blue-dark: #103d9d;
  --blue-pale: #edf4ff;
  --mint: #36c8a6;
  --mint-pale: #eafaf6;
  --cream: #fbfaf7;
  --line: #dce3ee;
  --white: #fff;
  --shadow: 0 24px 65px rgba(27, 54, 103, .13);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "DM Sans", system-ui, sans-serif; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 12px 18px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.92); border-bottom: 1px solid rgba(220,227,238,.85); backdrop-filter: blur(18px); }
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font: 700 19px/1 "Manrope", sans-serif; letter-spacing: -.4px; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; color: #fff; font-size: 13px; letter-spacing: -.5px; background: linear-gradient(140deg, var(--blue) 0 58%, var(--mint) 58%); box-shadow: 0 7px 18px rgba(25,86,209,.2); }
.desktop-nav { display: flex; align-items: center; gap: 30px; color: #34445e; font-size: 14px; font-weight: 600; }
.desktop-nav a:hover { color: var(--blue); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 0 22px; border: 1px solid var(--blue); border-radius: 12px; background: var(--blue); color: #fff; font-weight: 700; cursor: pointer; transition: .2s ease; box-shadow: 0 10px 24px rgba(25,86,209,.18); }
.button:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }
.button-small { min-height: 42px; padding-inline: 17px; font-size: 14px; }
.button-large { min-height: 56px; padding-inline: 26px; }
.button-secondary { background: #fff; color: var(--blue); box-shadow: none; }
.button-secondary:hover { color: #fff; }
.button-ghost { color: var(--ink); border-color: var(--line); background: #fff; box-shadow: none; }
.text-link { color: var(--blue); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }

.hero { overflow: hidden; position: relative; padding: 92px 0 82px; background: radial-gradient(circle at 82% 25%, rgba(54,200,166,.14), transparent 25%), linear-gradient(140deg, #f9fbff, #fff 50%, #f5fbf9); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .42; pointer-events: none; background-image: linear-gradient(rgba(25,86,209,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(25,86,209,.04) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to right, transparent, black); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 86px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); text-transform: uppercase; letter-spacing: 1.2px; font-size: 12px; font-weight: 800; }
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(54,200,166,.14); }
h1, h2, h3 { margin: 0; font-family: "Manrope", sans-serif; line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 700px; margin-top: 18px; font-size: clamp(44px, 5.3vw, 74px); }
h1 em { color: var(--blue); font-style: normal; }
h2 { font-size: clamp(32px, 3.6vw, 48px); }
h3 { font-size: 23px; }
.lead { max-width: 650px; color: var(--ink-soft); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 31px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 22px; list-style: none; padding: 0; margin: 28px 0 0; color: #43526a; font-size: 14px; font-weight: 600; }
.trust-list span { color: #168c72; }

.journey-card { position: relative; padding: 26px; background: rgba(255,255,255,.94); border: 1px solid rgba(210,221,238,.9); border-radius: 26px; box-shadow: var(--shadow); }
.journey-card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -68px; top: -55px; z-index: -1; border-radius: 50%; border: 28px solid rgba(54,200,166,.13); }
.journey-top, .destination-row, .step-row { display: flex; align-items: center; }
.journey-top { justify-content: space-between; padding-bottom: 20px; color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.status-pill { padding: 6px 10px; border-radius: 999px; color: #14715e; background: var(--mint-pale); }
.destination-row { gap: 14px; padding: 18px 0; border-block: 1px solid var(--line); }
.destination-row .flag { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: var(--blue-pale); font-size: 26px; }
.destination-row div, .step-row div { display: flex; flex-direction: column; }
.destination-row small, .step-row small { color: var(--ink-soft); }
.progress-track { height: 5px; margin: 24px 0 16px; overflow: hidden; border-radius: 999px; background: #e8edf5; }
.progress-track i { display: block; width: 54%; height: 100%; background: linear-gradient(90deg, var(--blue), var(--mint)); }
.step-row { min-height: 68px; gap: 13px; border-bottom: 1px solid #edf0f5; }
.step-row > b { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #eff3f8; color: #6b7890; font-size: 12px; }
.step-row > span { margin-left: auto; color: #7b8798; font-size: 12px; font-weight: 700; }
.step-row.is-done > b { color: #fff; background: var(--mint); }
.step-row.is-current { margin-inline: -10px; padding-inline: 10px; border: 0; border-radius: 12px; background: var(--blue-pale); }
.step-row.is-current > b { color: #fff; background: var(--blue); }
.journey-note { display: flex; gap: 12px; margin-top: 20px; padding: 13px; border-radius: 12px; background: #f7f9fc; font-size: 12px; }
.journey-note p { margin: 0; }

.confidence-strip { border-block: 1px solid var(--line); background: #fff; }
.confidence-grid { min-height: 76px; display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); align-items: center; gap: 28px; color: #617087; font-size: 13px; text-align: center; }
.confidence-grid span:first-child { color: var(--ink); font-weight: 700; text-align: left; }
.section { padding: 104px 0; }
.section-tint { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; margin-bottom: 42px; }
.section-heading h2, .center-heading h2 { margin-top: 12px; }
.section-heading p, .center-heading p { color: var(--ink-soft); font-size: 17px; }
.center-heading { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.product-card { overflow: hidden; display: grid; grid-template-columns: .78fr 1.22fr; min-height: 470px; border: 1px solid var(--line); border-radius: 28px; box-shadow: 0 18px 55px rgba(35,61,104,.09); }
.product-visual { overflow: hidden; position: relative; min-height: 360px; color: #fff; background: linear-gradient(155deg, #0f337c 0%, #1769c6 55%, #37bca4 100%); }
.product-visual::after { content: ""; position: absolute; inset: auto -15% -24% -15%; height: 50%; border-radius: 50% 50% 0 0; background: #f0d6a7; transform: rotate(-6deg); }
.country-code { position: absolute; left: 30px; bottom: 23px; z-index: 2; font: 700 72px/1 "Manrope", sans-serif; opacity: .18; }
.sun-disc { position: absolute; right: 60px; top: 60px; width: 116px; height: 116px; border-radius: 50%; background: rgba(255,228,167,.9); box-shadow: 0 0 80px rgba(255,228,167,.35); }
.palm { position: absolute; left: 35%; top: 38%; font-size: 110px; opacity: .38; transform: rotate(18deg); }
.product-badge { position: absolute; left: 24px; top: 24px; padding: 8px 12px; border-radius: 999px; background: rgba(10,31,72,.58); backdrop-filter: blur(8px); font-size: 12px; font-weight: 700; }
.product-copy { display: flex; flex-direction: column; justify-content: center; padding: 54px; }
.product-meta { display: flex; gap: 12px; color: var(--blue); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; }
.product-meta span + span::before { content: "·"; margin-right: 12px; color: #a4afbf; }
.product-copy h3 { margin-top: 15px; font-size: 38px; }
.product-copy > p { max-width: 650px; color: var(--ink-soft); font-size: 17px; }
.facts { display: grid; grid-template-columns: repeat(3,1fr); margin: 28px 0; padding-block: 22px; border-block: 1px solid var(--line); }
.facts div { display: flex; flex-direction: column; gap: 4px; }
.facts dt { color: var(--ink-soft); font-size: 12px; }
.facts dd { margin: 0; font-weight: 800; }
.product-actions { display: flex; align-items: center; gap: 18px; }
.product-actions small { max-width: 280px; color: var(--ink-soft); }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.process-grid article { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.process-grid article > span { position: absolute; right: 24px; top: 21px; color: #d2d9e5; font: 700 23px "Manrope"; }
.process-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 28px; border-radius: 16px; color: var(--blue); background: var(--blue-pale); font-size: 22px; }
.process-grid p { color: var(--ink-soft); }
.support-panel { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 80px; padding: 58px; border-radius: 28px; color: #fff; background: linear-gradient(125deg, #10274d, #163f79); }
.support-panel .eyebrow { color: #75e5ca; }
.support-panel p { color: #c6d4e8; }
.support-card { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.08); }
.support-card .text-link { grid-column: 2; color: #75e5ca; }
.support-card p { margin: 3px 0 0; font-size: 13px; }
.avatar-stack { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--mint); color: #092f28; font-weight: 800; }

.product-hero { padding: 86px 0 92px; text-align: center; background: linear-gradient(180deg, #f6f9ff, #fff); }
.product-hero h1 { margin-inline: auto; font-size: clamp(40px, 5vw, 64px); }
.product-hero .lead { margin-inline: auto; }
.breadcrumbs { display: flex; justify-content: center; gap: 9px; margin-bottom: 28px; color: var(--ink-soft); font-size: 13px; }
.notice-card { margin: 30px 0; padding: 20px 24px; border-left: 4px solid var(--mint); border-radius: 12px; background: var(--mint-pale); text-align: left; }
.notice-card p { margin: 5px 0 0; color: #3d665e; }
.details-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.included-list { display: grid; gap: 17px; margin: 0; padding: 0; list-style: none; }
.included-list li { display: flex; gap: 13px; padding: 17px 20px; border: 1px solid var(--line); border-radius: 14px; }
.included-list span { color: #178f76; font-weight: 800; }

.application-shell { min-height: calc(100vh - 72px); padding: 48px 0 80px; background: #f6f8fc; }
.application-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 28px; }
.application-header h1 { margin: 4px 0 0; font-size: 38px; }
.secure-label { color: #467064; font-size: 13px; font-weight: 700; }
.application-grid { display: grid; grid-template-columns: 270px 1fr; gap: 28px; align-items: start; }
.application-steps, .application-card { border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 12px 35px rgba(33,58,99,.06); }
.application-steps { padding: 24px; }
.application-steps ol { display: grid; gap: 22px; margin: 0; padding: 0; list-style: none; }
.application-steps li { display: flex; align-items: center; gap: 12px; color: #8a95a5; }
.application-steps li > span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: #edf0f5; font-size: 12px; font-weight: 800; }
.application-steps li div { display: flex; flex-direction: column; }
.application-steps li small { font-size: 11px; }
.application-steps li.active { color: var(--ink); }
.application-steps li.active > span { color: #fff; background: var(--blue); }
.help-box { margin-top: 28px; padding: 16px; border-radius: 14px; background: var(--blue-pale); }
.help-box p { margin: 5px 0 0; color: var(--ink-soft); font-size: 12px; }
.application-card { padding: 38px; }
.form-heading { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.form-heading > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.form-heading h2 { margin-top: 8px; font-size: 32px; }
.form-heading p { margin-bottom: 0; color: var(--ink-soft); }
fieldset { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; padding: 0; border: 0; }
legend { grid-column: 1 / -1; margin-bottom: 10px; font-weight: 800; }
.choice-card { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; }
.choice-card:has(input:checked) { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(25,86,209,.09); }
.choice-card input { accent-color: var(--blue); }
.choice-card > span:not(.choice-icon) { display: flex; flex-direction: column; }
.choice-card small { color: var(--ink-soft); }
.choice-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--blue-pale); color: var(--blue); font-weight: 800; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row label { display: grid; gap: 8px; font-weight: 700; }
input[type="date"], select { width: 100%; height: 50px; padding: 0 14px; border: 1px solid #cbd4e2; border-radius: 11px; background: #fff; color: var(--ink); }
.consent-row { display: flex; gap: 11px; margin-top: 24px; padding: 15px; border-radius: 11px; background: #f6f8fb; color: var(--ink-soft); font-size: 13px; }
.consent-row input { accent-color: var(--blue); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.form-footer > span { max-width: 360px; color: var(--ink-soft); font-size: 12px; }

.site-footer { padding: 66px 0 24px; color: #d9e2f0; background: #0b1d38; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .7fr 1.25fr; gap: 48px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; }
.footer-grid p { margin: 6px 0 0; color: #92a4be; font-size: 13px; }
.footer-grid a:not(.brand) { color: #aebcd0; font-size: 13px; }
.brand-footer { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #8193ac; font-size: 12px; }
.cookie-banner { position: fixed; inset: auto 18px 18px; z-index: 50; display: flex; justify-content: space-between; align-items: center; gap: 30px; max-width: 960px; margin: auto; padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 3px 0 0; color: var(--ink-soft); font-size: 13px; }
.cookie-actions { display: flex; gap: 9px; flex-shrink: 0; }
.cookie-actions .button { min-height: 42px; font-size: 12px; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hero { padding-top: 64px; }
  .hero-grid, .section-heading, .product-card, .support-panel, .details-grid { grid-template-columns: 1fr; gap: 42px; }
  .process-grid { grid-template-columns: 1fr; }
  .confidence-grid { grid-template-columns: 1fr 1fr; padding-block: 18px; }
  .confidence-grid span:first-child { grid-column: 1/-1; text-align: center; }
  .product-visual { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .application-grid { grid-template-columns: 1fr; }
  .application-steps ol { grid-template-columns: repeat(4,1fr); }
  .application-steps li { justify-content: center; }
  .application-steps li div, .help-box { display: none; }
}

@media (max-width: 620px) {
  .shell, .narrow { width: min(100% - 26px, 1180px); }
  .header-inner { min-height: 64px; }
  .header-inner .button { display: none; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .hero { padding: 52px 0 60px; }
  .hero-actions, .product-actions, .form-footer, .cookie-banner { align-items: stretch; flex-direction: column; }
  .trust-list { display: grid; gap: 10px; }
  .section { padding: 72px 0; }
  .product-copy, .application-card { padding: 26px 20px; }
  .facts, .field-row, fieldset { grid-template-columns: 1fr; }
  .facts { gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cookie-banner { inset: auto 10px 10px; }
}
