:root {
  --ink: #192341;
  --ink-2: #293d69;
  --brand: #2f5fa5;
  --brand-hover: #254b88;
  --brand-gradient: linear-gradient(115deg, #3269ad 0%, #303781 55%, #291856 100%);
  --brand-deep: #241854;
  --accent: #b8d8ff;
  --accent-soft: #e5edfc;
  --surface-blue: #eaf0fb;
  --surface-neutral: #f7f8fc;
  --white: #ffffff;
  --gray: #606b80;
  --line: #dce2ef;
  --danger: #a53f2b;
  --shadow: 0 24px 70px rgba(36, 24, 84, 0.12);
  --radius: 28px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface-neutral);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--brand-deep); background: var(--accent); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.surface { background: var(--white); }
.dark { color: var(--white); background: var(--brand-deep); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #426298;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 2px; content: ""; background: var(--accent); }
.hero .eyebrow, .page-hero--dark .eyebrow, .dark .eyebrow { color: #c3d2ef; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 {
  line-height: 1.05;
  letter-spacing: -.045em;
  text-wrap: balance;
}
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.35rem, 4.5vw, 4.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
.lead { max-width: 680px; color: var(--gray); font-size: clamp(1.06rem, 1.8vw, 1.28rem); }
.page-hero--dark .lead, .dark .lead { color: #cdd8ee; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}
.section-head > * { margin-bottom: 0; }
.section-head .lead { max-width: 500px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand);
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s, background .25s, border-color .25s;
}
.button:hover { transform: translateY(-2px); background: var(--brand-hover); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.35); background: transparent; }
.button--ghost:hover { background: rgba(255,255,255,.08); }
.button--dark { color: var(--white); background: var(--brand); }
.button--dark:hover { background: var(--ink); }
.button svg, .text-link svg { width: 18px; height: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; }
.text-link:hover { gap: 12px; }

.announcement {
  position: relative;
  z-index: 50;
  padding: 8px 20px;
  color: var(--white);
  background: var(--brand-deep);
  text-align: center;
  font-size: .84rem;
}
.announcement a { color: var(--accent); font-weight: 800; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(27,24,70,.94);
  backdrop-filter: blur(18px);
}
.nav { display: flex; min-height: 80px; align-items: center; justify-content: space-between; gap: 32px; }
.brand { flex: 0 0 auto; }
.brand img { width: 174px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: #c7d3ee; font-size: .94rem; font-weight: 700; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links .button { min-height: 44px; padding-inline: 18px; color: var(--white); }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: #292653;
  cursor: pointer;
}
.menu-button svg { width: 22px; height: 22px; }

.hero { position: relative; min-height: 710px; overflow: hidden; color: var(--white); background: var(--brand-deep); }
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(27,24,70,.98) 0%, rgba(27,24,70,.86) 35%, rgba(27,24,70,.2) 70%, rgba(27,24,70,.04) 100%);
}
.hero__content { position: relative; z-index: 2; display: flex; min-height: 710px; max-width: 760px; flex-direction: column; justify-content: center; padding: 90px 0; }
.hero h1 { max-width: 760px; margin-bottom: 24px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero .lead { max-width: 570px; color: #dce5f6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 48px; color: #cedaf0; font-size: .9rem; }
.hero__proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof span::before { width: 8px; height: 8px; border-radius: 50%; content: ""; background: var(--accent); box-shadow: 0 0 0 5px rgba(137,183,245,.12); }

.stats { position: relative; z-index: 4; margin-top: -42px; }
.stats__grid { display: grid; overflow: hidden; grid-template-columns: repeat(4,1fr); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.stat { padding: 30px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; margin-bottom: 4px; color: var(--brand); font-size: 1.1rem; }
.stat span { color: var(--gray); font-size: .88rem; }

.solutions-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 22px; }
.solution-card {
  position: relative;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .3s, box-shadow .3s;
}
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.solution-card:nth-child(1) { grid-column: span 7; color: var(--white); background: var(--brand-gradient); }
.solution-card:nth-child(2) { grid-column: span 5; background: var(--accent-soft); }
.solution-card:nth-child(3) { grid-column: span 5; background: #e9eefb; }
.solution-card:nth-child(4) { grid-column: span 7; background: #eeebf8; }
.solution-card__top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.solution-card__logo { width: 184px; height: 64px; object-fit: cover; object-position: center 40%; }
.solution-card--epgr:nth-child(1) { gap: 28px; color: var(--ink); border-color: #cbd9ef; background: linear-gradient(145deg, #ffffff 45%, #edf3ff 100%); }
.solution-card--epgr::before { position: absolute; inset: 0 0 auto; height: 4px; content: ""; background: var(--brand-gradient); }
.solution-card--epgr .solution-card__top { gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.solution-card--epgr .pill { gap: 7px; color: var(--brand); background: var(--accent-soft); }
.solution-card--epgr .pill::before { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; content: ""; background: currentColor; }
.solution-card--epgr h3 { max-width: 490px; }
.solution-card--epgr p { color: var(--gray); opacity: 1; }
.solution-card--epgr .text-link { min-height: 46px; padding: 10px 18px; border-radius: 12px; color: var(--white); background: #14796e; transition: background .2s; }
.solution-card--epgr .text-link:hover { gap: 8px; background: #105f57; }
.solution-card--epgr .text-link:focus-visible { outline: 3px solid #14796e; outline-offset: 4px; }
.solution-card__index { color: currentColor; font-size: .8rem; font-weight: 800; letter-spacing: .14em; opacity: .65; }
.pill { display: inline-flex; padding: 7px 11px; border-radius: 999px; color: var(--brand); background: rgba(255,255,255,.72); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.solution-card__body { position: relative; z-index: 2; max-width: 520px; }
.solution-card h3 { margin-bottom: 13px; font-size: clamp(2rem, 3.2vw, 3.3rem); }
.solution-card p { margin-bottom: 20px; opacity: .78; }
.solution-card__visual { position: absolute; right: -35px; top: 50px; width: 48%; height: 58%; opacity: .9; }
.visual-dashboard { padding: 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; background: rgba(255,255,255,.09); transform: rotate(-5deg); }
.visual-dashboard span { display: block; height: 10px; margin-bottom: 13px; border-radius: 8px; background: rgba(255,255,255,.2); }
.visual-dashboard span:nth-child(1) { width: 45%; background: var(--accent); }
.visual-dashboard span:nth-child(3) { width: 76%; }
.visual-dashboard span:nth-child(4) { width: 60%; }
.visual-rings { display: grid; place-items: center; }
.visual-rings::before, .visual-rings::after { position: absolute; border: 2px solid rgba(47,95,165,.16); border-radius: 50%; content: ""; }
.visual-rings::before { width: 190px; height: 190px; }
.visual-rings::after { width: 110px; height: 110px; background: rgba(137,183,245,.55); box-shadow: 0 0 0 25px rgba(137,183,245,.18); }

.split { display: grid; align-items: center; grid-template-columns: 1.05fr .95fr; gap: clamp(48px, 8vw, 110px); }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.floating-note {
  position: absolute;
  right: -24px;
  bottom: 28px;
  max-width: 230px;
  padding: 20px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--brand);
  box-shadow: var(--shadow);
}
.floating-note strong { display: block; margin-bottom: 4px; color: var(--accent); font-size: 1.5rem; }
.floating-note span { font-size: .85rem; }
.check-list { display: grid; gap: 14px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { position: absolute; left: 0; top: .2em; display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; content: "✓"; color: var(--brand); background: var(--accent); font-size: .75rem; font-weight: 900; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value-card { min-height: 310px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.045); }
.value-card__number { display: block; margin-bottom: 70px; color: var(--accent); font-size: .85rem; font-weight: 900; }
.value-card p { color: #c5d0eb; }

.cta-band { padding: 74px 0; color: var(--white); background: var(--brand-gradient); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { max-width: 780px; margin: 0; }
.cta-band .button { flex: 0 0 auto; color: var(--white); background: var(--brand-deep); }

.page-hero { padding: 110px 0 72px; background: var(--surface-blue); }
.page-hero--dark { color: var(--white); background: var(--brand-gradient); }
.page-hero h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(3rem, 6vw, 6rem); }
.page-hero .lead { max-width: 700px; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.page-hero__grid { display: grid; align-items: center; grid-template-columns: 1fr .85fr; gap: 60px; }
.page-hero__media img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.feature-card__icon { display: grid; width: 52px; height: 52px; margin-bottom: 44px; place-items: center; border-radius: 16px; color: var(--brand); background: var(--accent-soft); }
.feature-card__icon svg { width: 25px; height: 25px; }
.feature-card p { color: var(--gray); }
.impact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.impact-card { padding: 32px; border-radius: var(--radius); background: var(--white); }
.impact-card:nth-child(2) { color: var(--white); background: var(--brand); }
.impact-card:nth-child(2) p, .impact-card:nth-child(2) li { color: #cdd8ee; }
.impact-card ul { display: grid; gap: 12px; margin: 22px 0 0; padding-left: 18px; color: var(--gray); }
.market-number { display: flex; align-items: end; gap: 20px; margin-top: 26px; }
.market-number strong { color: var(--accent); font-size: clamp(3.3rem, 7vw, 7.2rem); line-height: .8; letter-spacing: -.06em; }
.market-number span { max-width: 340px; color: #c9d5ef; }

.aim-visual { position: relative; min-height: 420px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: radial-gradient(circle at 50% 50%, rgba(137,183,245,.13), transparent 50%), #2a245c; }
.aim-visual__ring { position: absolute; inset: 50% auto auto 50%; width: 260px; height: 260px; border: 1px solid rgba(137,183,245,.35); border-radius: 50%; transform: translate(-50%,-50%); }
.aim-visual__ring::before, .aim-visual__ring::after { position: absolute; inset: 30px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; content: ""; }
.aim-visual__ring::after { inset: 78px; background: var(--accent); box-shadow: 0 0 60px rgba(137,183,245,.22); }
.aim-node { position: absolute; width: 14px; height: 14px; border: 3px solid #2a245c; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 1px rgba(137,183,245,.45); }
.aim-node:nth-child(2) { left: 20%; top: 27%; }
.aim-node:nth-child(3) { right: 17%; top: 34%; }
.aim-node:nth-child(4) { left: 30%; bottom: 18%; }
.aim-node:nth-child(5) { right: 24%; bottom: 16%; }
.timeline { display: grid; gap: 0; margin-top: 42px; }
.timeline__item { display: grid; grid-template-columns: 68px 1fr; gap: 20px; padding-bottom: 36px; }
.timeline__marker { position: relative; display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); font-weight: 900; }
.timeline__item:not(:last-child) .timeline__marker::after { position: absolute; left: 22px; top: 46px; width: 1px; height: 52px; content: ""; background: var(--line); }
.timeline__item p { margin: 0; color: var(--gray); }

.contact-grid { display: grid; align-items: start; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.contact-card { display: grid; gap: 22px; margin-top: 36px; }
.contact-item { display: grid; grid-template-columns: 42px 1fr; gap: 14px; }
.contact-item__icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; color: var(--brand); background: var(--accent-soft); }
.contact-item__icon svg { width: 20px; height: 20px; }
.contact-item strong, .contact-item span { display: block; }
.contact-item span, .contact-item a { color: var(--gray); }
.form { display: grid; gap: 18px; padding: 36px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; margin-bottom: 7px; font-size: .86rem; font-weight: 800; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #fbfcff;
}
.field input { height: 52px; padding: 0 14px; }
.field textarea { min-height: 150px; padding: 14px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(47,95,165,.1); }
.form-note { margin: 0; color: var(--gray); font-size: .82rem; }
.form-status { display: none; margin: 0; padding: 12px 14px; border-radius: 10px; color: var(--brand); background: var(--surface-blue); font-size: .9rem; }
.form-status.is-visible { display: block; }

.prose { max-width: 850px; }
.prose h2 { margin-top: 52px; font-size: 2rem; }
.prose h3 { margin-top: 32px; font-size: 1.35rem; }
.prose p, .prose li { color: #4f5e79; }
.prose a { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; }

.site-footer { padding: 78px 0 28px; color: var(--white); background: #1b1846; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .7fr 1.1fr; gap: 44px; }
.footer-brand img { width: 168px; height: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 300px; color: #b6c4e0; }
.footer-title { margin-bottom: 18px; color: var(--white); font-size: .8rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; color: #bdc9e4; }
.footer-links a:hover { color: var(--accent); }
.newsletter { display: flex; gap: 8px; }
.newsletter input { min-width: 0; width: 100%; height: 48px; padding: 0 14px; border: 1px solid #484879; border-radius: 12px; outline: none; color: var(--white); background: #292653; }
.newsletter button { width: 48px; height: 48px; flex: 0 0 auto; border: 0; border-radius: 12px; color: var(--brand); background: var(--accent); cursor: pointer; }
.newsletter button svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 22px; border-top: 1px solid #3e3c69; color: #aab9d7; font-size: .82rem; }

[data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 30px, 720px); }
  .section { padding: 78px 0; }
  .nav-links { position: fixed; inset: 80px 0 auto 0; display: none; padding: 28px 24px 34px; flex-direction: column; align-items: stretch; gap: 20px; border-bottom: 1px solid #484879; background: var(--brand-deep); box-shadow: 0 20px 30px rgba(47,95,165,.18); }
  .nav-links.is-open { display: flex; }
  .menu-button { display: grid; place-items: center; }
  .hero, .hero__content { min-height: 680px; }
  .hero::after { background: linear-gradient(90deg, rgba(27,24,70,.96), rgba(27,24,70,.64)); }
  .hero__content { max-width: 650px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card:nth-child(n) { grid-column: auto; }
  .split, .page-hero__grid, .contact-grid { grid-template-columns: 1fr; }
  .split__media { max-width: 600px; }
  .values-grid, .feature-grid, .impact-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 0; }
  .value-card__number { margin-bottom: 42px; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 82px 0 66px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 24px); --radius: 22px; }
  .announcement { font-size: .74rem; }
  .nav { min-height: 70px; }
  .brand img { width: 145px; }
  .nav-links { inset-block-start: 70px; }
  .hero, .hero__content { min-height: 640px; }
  .hero__image { object-position: 64% center; }
  .hero::after { background: linear-gradient(90deg, rgba(27,24,70,.97), rgba(27,24,70,.72)); }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .hero__proof { gap: 12px; flex-direction: column; }
  .stats { margin-top: 0; }
  .stats .container { width: 100%; }
  .stats__grid { border-radius: 0; box-shadow: none; }
  .stat { padding: 22px 20px; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .solution-card { min-height: 390px; padding: 24px; }
  .solution-card--epgr .solution-card__logo { width: 140px; height: 52px; }
  .solution-card--epgr .solution-card__top { gap: 8px; }
  .solution-card__visual { width: 54%; opacity: .55; }
  .floating-note { right: 10px; bottom: 10px; }
  .page-hero__grid { gap: 38px; }
  .market-number { align-items: flex-start; flex-direction: column; }
  .form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
