:root {
  --navy: #062552;
  --ink: #123348;
  --blue: #2187c9;
  --teal: #36d6c2;
  --sky: #eaf8fb;
  --soft: #f7fbfd;
  --white: #fff;
  --slate: #363244;
  --shadow: 0 20px 60px rgba(6,37,82,.12);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.nav { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(14px); background: rgba(255,255,255,.9); border-bottom: 1px solid rgba(6,37,82,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
.brand-logo { width: 190px; height: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 700; font-size: 14px; color: #315268; }
.nav-links a[aria-current="page"] { color: var(--blue); }
.language-switch { display: inline-flex; align-items: center; gap: 4px; padding: 4px; border: 1px solid rgba(6,37,82,.12); border-radius: 999px; background: rgba(255,255,255,.76); }
.lang-button { display: inline-block; border: 0; border-radius: 999px; background: transparent; color: #315268; cursor: pointer; font: inherit; font-size: 13px; font-weight: 800; line-height: normal; padding: 7px 10px; text-align: center; }
.nav-links .language-switch .lang-button.active { background: var(--navy); color: white; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 13px 20px; border-radius: 999px; background: linear-gradient(135deg,var(--blue),var(--teal)); color: white; font-weight: 800; box-shadow: 0 14px 30px rgba(33,135,201,.24); }
.page-hero { padding: 82px 0 72px; color: white; background: radial-gradient(circle at 85% 10%, rgba(54,214,194,.25), transparent 28%), linear-gradient(145deg,#0a315d,#238fc7); }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: 13px; font-weight: 800; opacity: .82; }
h1 { max-width: 850px; margin: 16px 0 20px; font-size: clamp(42px,6vw,72px); line-height: 1; letter-spacing: -.045em; }
.page-hero p { max-width: 760px; margin: 0; font-size: 21px; color: rgba(255,255,255,.88); }
main section { padding: 86px 0; }
.section-head { max-width: 780px; margin-bottom: 40px; }
.section-head h2 { margin: 0 0 16px; color: var(--blue); font-size: clamp(34px,4vw,50px); line-height: 1.08; letter-spacing: -.035em; }
.section-head p { margin: 0; color: #466477; font-size: 19px; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card, .step, .future-card { background: white; border: 1px solid #dcebf2; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.card h2, .step h2 { margin: 0 0 10px; color: var(--blue); font-size: 26px; line-height: 1.1; }
.card h3, .step h3 { margin: 0 0 16px; color: var(--navy); font-size: 18px; }
.card p, .step p, .future-card p { color: #466477; }
.card h4, .step h4 { margin: 22px 0 8px; color: var(--navy); font-size: 13px; text-transform: uppercase; letter-spacing: .09em; }
.card ul, .step ul { margin: 0; padding-left: 20px; color: #466477; }
.soft { background: linear-gradient(180deg,#fff,var(--sky)); }
.steps { display: grid; gap: 24px; }
.step { position: relative; background: linear-gradient(90deg,rgba(234,248,251,.92),#fff); }
.step > h2 { min-height: 66px; padding-right: 100px; display: flex; align-items: center; }
.step-icon { position: absolute; top: 24px; right: 28px; width: 72px; height: 72px; }
.step-icon svg { display: block; width: 100%; height: 100%; overflow: visible; }
.step-icon .icon-base { fill: none; stroke: var(--navy); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.step-icon .icon-accent { fill: none; stroke: var(--teal); stroke-width: 3.2; }
.step-icon .icon-action { fill: none; stroke: var(--blue); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.step-icon .icon-dot { fill: white; stroke: var(--teal); stroke-width: 3; }
.future { background: var(--soft); }
.future-card { border-style: solid; }
.future-card h2 { margin: 0 0 10px; color: var(--navy); font-size: 30px; }
.trial-intro { max-width: 900px; font-size: 18px; }
.trial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0 22px; }
.trial-part { padding: 24px; border: 1px solid #dcebf2; border-radius: 18px; background: linear-gradient(145deg,rgba(234,248,251,.85),#fff); }
.trial-part .trial-number { color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.trial-part h3 { margin: 8px 0 10px; color: var(--navy); font-size: 20px; }
.trial-part p { margin: 0 0 10px; }
.trial-part ul { margin: 0; padding-left: 20px; color: #466477; }
.trial-result { padding-top: 20px; border-top: 1px solid #dcebf2; }
.trial-result h3 { margin: 0 0 8px; color: var(--navy); font-size: 20px; }
.trial-footer { display: flex; justify-content: space-between; align-items: center; gap: 28px; margin-top: 22px; }
.trial-footer p { max-width: 760px; margin: 0; font-size: 15px; }
.cta { padding: 72px 0; color: white; background: var(--slate); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.cta h2 { margin: 0 0 12px; font-size: clamp(32px,4vw,48px); line-height: 1.06; }
.cta p { margin: 0; color: rgba(255,255,255,.78); }
footer { padding: 26px 0; background: #282638; color: rgba(255,255,255,.72); font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
footer .brand-logo { filter: brightness(0) invert(1); opacity: .86; }
@media (max-width: 900px) {
  .cards, .cta-inner, .future-card, .trial-grid { grid-template-columns: 1fr; }
  .trial-footer { align-items: flex-start; flex-direction: column; }
  .nav-links > a:not([aria-current="page"]):not(.button) { display: none; }
  main section { padding: 64px 0; }
  .page-hero { padding: 60px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
