:root {
  --ink: #07111f;
  --ink-2: #0b1930;
  --ink-3: #112542;
  --blue: #0b63f6;
  --blue-2: #08a8ff;
  --cyan: #1fe1ff;
  --paper: #f3f6fb;
  --paper-2: #e8eef7;
  --white: #fff;
  --text: #101a2a;
  --muted: #586579;
  --line: #ced8e7;
  --shadow: 0 24px 70px rgba(7, 17, 31, .12);
  --radius: 26px;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #75a9df; outline-offset: 4px; }
p { margin: 0; line-height: 1.7; }
h1, h2, h3 { margin: 0; color: inherit; line-height: 1.03; letter-spacing: -.045em; }
strong { color: var(--blue); font-weight: 800; }
.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; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; transform: translateY(-150%); padding: 12px 16px; background: var(--blue); color: #fff; border-radius: 8px; }
.skip-link:focus { transform: none; }
.section-shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 82px;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(120, 142, 173, .24);
  backdrop-filter: blur(18px);
  transition: box-shadow .3s ease, height .3s ease;
}
.site-header.scrolled { box-shadow: 0 12px 35px rgba(6, 20, 40, .08); height: 72px; }
.header-inner { width: var(--shell); height: 100%; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { align-self: stretch; display: flex; align-items: center; padding: 0 20px; background: var(--ink); clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%); }
.brand img { width: 142px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a { position: relative; padding: 12px 10px; color: #38465a; font-size: 14px; font-weight: 700; }
.main-nav a::after { content: ""; position: absolute; left: 10px; right: 10px; bottom: 4px; height: 2px; transform: scaleX(0); background: var(--blue); transition: transform .25s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span:not(.sr-only) { width: 24px; height: 2px; background: var(--ink); transition: .25s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; width: fit-content; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 4px 18px 4px 18px; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: linear-gradient(135deg, var(--blue), #0847c9); color: #fff; box-shadow: 0 12px 28px rgba(11, 99, 246, .25); }
.button-primary:hover { box-shadow: 0 17px 36px rgba(11, 99, 246, .34); }
.button-light { background: #fff; color: var(--ink); }
.button-ghost { border-color: #91a0b6; background: transparent; color: inherit; }
.button-small { min-height: 44px; padding-inline: 15px; font-size: 13px; border-radius: 4px 12px; }
.button-icon svg, .topic-arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hero-home { position: relative; display: grid; grid-template-columns: 55% 45%; min-height: calc(100vh - 82px); max-height: 820px; background: #fff; overflow: hidden; }
.hero-home::before { content: ""; position: absolute; z-index: 0; left: 0; bottom: 0; width: 44%; height: 1px; background: linear-gradient(90deg, transparent, var(--blue)); }
.hero-copy { z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 80px 7vw 68px max(6vw, calc((100vw - 1180px) / 2)); }
.hero-copy h1 { max-width: 800px; color: var(--ink); font-size: clamp(54px, 6.2vw, 96px); }
.hero-copy p { max-width: 680px; margin-top: 30px; color: var(--muted); font-size: clamp(17px, 1.35vw, 21px); }
.hero-copy .button { margin-top: 34px; }
.hero-signals { display: flex; gap: 30px; margin-top: 52px; color: #36465c; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-signals span { display: flex; align-items: center; gap: 9px; }
.hero-signals span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px var(--blue); }
.hero-visual { position: relative; z-index: 1; min-width: 0; overflow: hidden; background: var(--ink); clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(7,17,31,.1), rgba(7,17,31,.4)); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.orbit { position: absolute; z-index: 2; border: 1px solid rgba(31, 225, 255, .34); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 460px; height: 460px; right: -150px; top: -150px; }
.orbit-two { width: 240px; height: 240px; left: 8%; bottom: -100px; }

.home-intro { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; padding: 110px 0 48px; }
.home-intro h2 { font-size: clamp(38px, 5vw, 72px); }
.home-intro p { color: var(--muted); font-size: 18px; }
.topic-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(280px, auto); gap: 18px; padding-bottom: 110px; }
.topic-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 300px; padding: 38px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.topic-card:hover { transform: translateY(-7px); border-color: rgba(11,99,246,.45); box-shadow: var(--shadow); }
.topic-card > * { position: relative; z-index: 2; }
.topic-card h2 { font-size: clamp(32px, 3.4vw, 52px); }
.topic-card p { max-width: 520px; margin-top: 10px; color: var(--muted); font-size: 17px; }
.topic-number { position: absolute; top: 22px; left: 28px; color: rgba(11, 99, 246, .22); font-size: 68px; font-weight: 900; line-height: 1; }
.topic-arrow { position: absolute; right: 28px; bottom: 30px; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); transition: transform .25s ease, background .25s ease; }
.topic-card:hover .topic-arrow { transform: translateX(5px); background: var(--blue); color: #fff; border-color: var(--blue); }
.topic-symbol { position: absolute; right: 32px; top: 28px; width: 100px; height: 100px; opacity: .13; }
.topic-symbol svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; }
.topic-company { grid-column: span 5; }
.topic-challenges { grid-column: span 7; }
.topic-solution { grid-column: span 7; min-height: 390px; }
.topic-integration { grid-column: span 5; }
.topic-benefits { grid-column: span 12; min-height: 260px; }
.topic-dark { color: #fff; border-color: #162b4a; background: var(--ink); }
.topic-dark::after { content: ""; position: absolute; width: 300px; height: 300px; right: -130px; top: -120px; border: 1px solid rgba(24,151,255,.35); transform: rotate(24deg); }
.topic-dark p { color: #b6c4d8; }
.topic-dark .topic-number { color: rgba(20, 128, 255, .28); }
.topic-dark .topic-arrow { border-color: rgba(255,255,255,.2); color: #fff; }
.topic-image { color: #fff; border: 0; }
.topic-image > img { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; transition: transform .5s ease; }
.topic-image:hover > img { transform: scale(1.035); }
.topic-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(7,17,31,.08), rgba(7,17,31,.92)); }
.topic-image p { color: #e5edf8; }
.topic-image .topic-number { color: rgba(255,255,255,.28); }
.topic-image .topic-arrow { color: #fff; border-color: rgba(255,255,255,.45); }
.topic-integration { background: linear-gradient(135deg, #fff, #e9f1ff); }
.home-cta { width: var(--shell); margin: 0 auto 110px; }
.dark-panel { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 64px; overflow: hidden; background: var(--ink); color: #fff; border-radius: 8px 38px; }
.dark-panel::after { content: ""; position: absolute; width: 430px; height: 430px; right: 12%; top: -340px; border: 1px solid rgba(31,225,255,.28); border-radius: 50%; }
.dark-panel h2 { font-size: clamp(36px, 4vw, 58px); }
.dark-panel p { max-width: 620px; margin-top: 14px; color: #b7c4d8; }

.page-hero { width: var(--shell); margin-inline: auto; }
.page-hero-copy h1, .solution-copy h1, .integration-copy h1, .benefits-hero h1, .contact-copy h1 { font-size: clamp(54px, 6.2vw, 88px); }
.page-hero-copy > p, .solution-copy > p, .integration-copy > p, .contact-copy > p { margin-top: 26px; color: var(--muted); font-size: 19px; }
.hero-company { display: grid; grid-template-columns: 1fr .9fr; min-height: 680px; align-items: center; gap: 54px; padding-block: 70px; }
.page-hero-art { position: relative; height: 540px; overflow: hidden; background: var(--ink); border-radius: 6px 52px 6px 52px; box-shadow: var(--shadow); }
.page-hero-art::before { content: ""; position: absolute; z-index: 2; inset: 16px; border: 1px solid rgba(31,225,255,.3); border-radius: 4px 40px; pointer-events: none; }
.page-hero-art img { width: 100%; height: 100%; object-fit: cover; }
.mission-block { display: grid; grid-template-columns: 240px 1fr; gap: 60px; align-items: center; padding: 74px; margin-bottom: 110px; background: #fff; border-left: 5px solid var(--blue); box-shadow: var(--shadow); }
.mission-index { color: transparent; font-size: 94px; font-weight: 900; -webkit-text-stroke: 1px #a9b9d0; }
.mission-block h2 { font-size: 22px; color: var(--blue); letter-spacing: .03em; text-transform: uppercase; }
.mission-block p { margin-top: 15px; font-size: clamp(24px, 3vw, 42px); line-height: 1.25; letter-spacing: -.03em; }
.pillars-dark { position: relative; padding: 110px 0; overflow: hidden; background: var(--ink); color: #fff; }
.pillars-dark::after { content: ""; position: absolute; right: -140px; bottom: -140px; width: 520px; height: 520px; border: 1px solid rgba(11,99,246,.3); transform: rotate(45deg); }
.pillars-title h2 { font-size: clamp(40px, 5vw, 70px); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.pillar { min-height: 300px; padding: 34px; background: rgba(255,255,255,.04); border: 1px solid rgba(113,163,227,.25); border-radius: 5px 24px; }
.pillar .icon, .challenge-card .icon, .benefit-panel-head .icon, .contact-cards .icon { display: block; width: 58px; height: 58px; color: var(--blue-2); }
.pillar svg, .challenge-card svg, .benefit-panel-head svg, .contact-cards svg, .payment-flow svg, .process-item svg, .challenge-result svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { margin-top: 50px; font-size: 28px; }
.pillar p { margin-top: 15px; color: #b8c5d8; }
.next-page { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 62px; }
.next-page > span { color: var(--muted); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.next-page a { display: inline-flex; gap: 14px; align-items: center; color: var(--blue); font-size: clamp(22px, 2.8vw, 36px); font-weight: 800; }

.hero-clean { display: grid; grid-template-columns: 1.12fr .88fr; align-items: end; gap: 60px; padding-block: 100px 80px; }
.challenge-result { display: flex; gap: 25px; padding: 35px; background: #fff; border: 1px solid var(--line); border-radius: 5px 28px; box-shadow: var(--shadow); }
.challenge-result .icon { flex: 0 0 64px; height: 64px; color: var(--blue); }
.challenge-result h2 { color: var(--blue); font-size: 21px; }
.challenge-result p { margin-top: 10px; color: var(--muted); font-size: 18px; }
.challenges-dark { position: relative; padding: 84px 0 110px; overflow: hidden; background: var(--ink); }
.digital-wave { position: absolute; inset: auto 0 0; width: 100%; height: 240px; object-fit: cover; opacity: .55; }
.challenge-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.challenge-card { position: relative; min-height: 330px; padding: 32px; overflow: hidden; background: rgba(255,255,255,.045); color: #fff; border: 1px solid rgba(146,171,205,.27); border-radius: 5px 24px; }
.challenge-card .icon { width: 56px; height: 56px; }
.challenge-card h2 { margin-top: 30px; font-size: 26px; letter-spacing: -.025em; }
.challenge-card p { margin-top: 14px; color: #b7c4d7; }
.card-index { position: absolute; top: 19px; right: 23px; color: rgba(255,255,255,.18); font-size: 36px; font-weight: 800; }

.solution-intro { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 690px; background: var(--ink); color: #fff; }
.solution-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px 5vw 80px max(6vw, calc((100vw - 1180px)/2)); }
.solution-copy > p { color: #c4cede; }
.solution-product { min-width: 0; min-height: 560px; overflow: hidden; clip-path: polygon(10% 0,100% 0,100% 100%,0 100%); }
.solution-product img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.payment-statement { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 80px; padding-block: 110px 80px; }
.payment-statement > p { max-width: 720px; font-size: clamp(42px, 5vw, 72px); font-weight: 800; line-height: 1.08; letter-spacing: -.045em; }
.payment-statement > span { padding-left: 34px; color: var(--muted); border-left: 3px solid var(--blue); font-size: 22px; line-height: 1.5; }
.payment-statement b { color: var(--blue); }
.payment-photo { display: grid; grid-template-columns: 1.12fr .88fr; gap: 18px; align-items: stretch; margin-bottom: 50px; }
.payment-photo figure { min-height: 580px; margin: 0; overflow: hidden; border-radius: 5px 30px; }
.payment-photo figure img { width: 100%; height: 100%; object-fit: cover; }
.payment-flow { padding: 46px; background: #fff; border: 1px solid var(--line); border-radius: 5px 30px; }
.payment-flow h2 { font-size: clamp(30px, 3.2vw, 45px); }
.payment-flow ol { display: grid; gap: 0; margin: 34px 0; padding: 0; list-style: none; }
.payment-flow li { display: flex; align-items: center; gap: 18px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.payment-flow li .icon { flex: 0 0 44px; width: 44px; height: 44px; color: var(--blue); }
.payment-flow li span { color: var(--muted); }
.payment-flow li b { display: block; color: var(--ink); }

.integration-hero { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 700px; background: var(--ink); color: #fff; }
.integration-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px 5vw 80px max(6vw, calc((100vw - 1180px)/2)); }
.integration-copy .integration-lead { color: #dce6f6; font-size: 26px; }
.integration-copy .integration-lead b { color: var(--blue-2); }
.integration-copy > p:last-child { margin-top: 36px; color: #b7c4d7; }
.integration-visual { min-width: 0; overflow: hidden; background: #020917; }
.integration-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.integration-process { padding-block: 110px; }
.integration-process > h2 { max-width: 800px; font-size: clamp(42px, 5vw, 72px); }
.process-list { display: grid; gap: 10px; margin-top: 55px; }
.process-item { display: grid; grid-template-columns: 68px 48px 1fr 34px; align-items: center; gap: 22px; padding: 23px 28px; background: #fff; border: 1px solid var(--line); border-radius: 4px 18px; transition: transform .25s ease, border-color .25s ease; }
.process-item:hover { transform: translateX(8px); border-color: var(--blue); }
.process-number { color: #a3b0c3; font-size: 16px; font-weight: 800; }
.process-item > .icon { width: 42px; height: 42px; color: var(--blue); }
.process-item h3 { font-size: 22px; letter-spacing: -.015em; }
.process-check { width: 30px; height: 30px; padding: 6px; color: #fff; background: var(--blue); border-radius: 50%; }
.integration-band { width: var(--shell); margin: 0 auto 50px; padding: 48px 56px; background: var(--ink); color: #fff; border: 1px solid #1d4b81; border-radius: 5px 24px; text-align: center; }
.integration-band p { font-size: clamp(25px, 3vw, 40px); font-weight: 700; line-height: 1.25; }

.benefits-hero { padding: 105px 0 70px; }
.benefit-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding-bottom: 110px; }
.benefit-panel { position: relative; padding: 42px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 5px 28px; box-shadow: 0 18px 50px rgba(9,31,64,.07); }
.benefit-panel::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.benefit-panel-head { display: flex; align-items: center; gap: 22px; margin-bottom: 30px; }
.benefit-panel-head .icon { width: 64px; height: 64px; }
.benefit-panel h2 { font-size: clamp(30px, 3vw, 44px); }
.benefit-panel ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.benefit-panel li { display: flex; align-items: center; gap: 14px; min-height: 62px; padding: 13px 15px; background: var(--paper); border-radius: 4px 13px; }
.check-dot { display: grid; flex: 0 0 30px; width: 30px; height: 30px; padding: 6px; place-items: center; background: #e3efff; color: var(--blue); border: 1px solid #a8c9fb; border-radius: 50%; }
.check-dot svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; }
.benefit-panel li span { font-size: 18px; }
.benefit-panel li strong { color: var(--blue); }
.benefit-closing { display: flex; align-items: center; justify-content: center; gap: 70px; padding: 80px max(6vw, calc((100vw - 1180px)/2)); background: var(--ink); color: #fff; }
.benefit-closing p { font-size: clamp(32px, 4vw, 58px); font-weight: 800; line-height: 1.18; letter-spacing: -.04em; }

.contact-page { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: start; padding-block: 100px 120px; }
.contact-copy { position: sticky; top: 120px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 42px; }
.contact-cards a { display: flex; gap: 12px; align-items: center; min-width: 0; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 4px 16px; }
.contact-cards .icon { flex: 0 0 36px; width: 36px; height: 36px; }
.contact-cards span { min-width: 0; overflow-wrap: anywhere; color: var(--muted); font-size: 13px; }
.contact-cards b { display: block; margin-bottom: 3px; color: var(--ink); font-size: 14px; }
.contact-form { display: grid; gap: 20px; padding: 42px; background: #fff; border: 1px solid var(--line); border-radius: 6px 30px; box-shadow: var(--shadow); }
.required-note { color: var(--muted); font-size: 12px; }
.required-marker { color: #8b2131; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: #324057; font-size: 13px; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px 16px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 7px; outline: none; transition: border .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11,99,246,.1); }
.contact-form textarea { resize: vertical; }
.consent { grid-template-columns: 20px 1fr !important; align-items: start; font-weight: 400 !important; line-height: 1.5; }
.consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--blue); }
.form-status { min-height: 24px; color: var(--blue); font-size: 14px; }
.form-status.is-success { color: #17683b; }
.form-status.is-error { color: #9a2538; }
.contact-form[aria-busy="true"] button[type="submit"] { cursor: wait; opacity: .7; }

.site-footer { padding: 72px max(24px, calc((100vw - 1180px)/2)) 24px; background: #040b15; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 70px; }
.footer-brand img { width: 165px; }
.footer-brand p { max-width: 360px; margin-top: 20px; color: #9babc1; }
.site-footer h2 { margin-bottom: 20px; color: #fff; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.footer-links a, .footer-contact, .text-button { color: #9babc1; font-size: 14px; transition: color .2s; }
.footer-links a:hover, .footer-contact:hover, .text-button:hover { color: #fff; }
.footer-contact { display: inline-flex; align-items: center; min-height: 44px; margin-bottom: 12px; overflow-wrap: anywhere; }
.text-button { min-height: 44px; padding: 0; border: 0; background: transparent; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 22px; color: #75859b; border-top: 1px solid #172338; font-size: 12px; }
.footer-bottom strong { color: #fff; }

.cookie-banner { position: fixed; z-index: 300; left: 24px; right: 24px; bottom: 22px; display: flex; align-items: center; justify-content: space-between; gap: 25px; max-width: 1060px; margin-inline: auto; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: 5px 20px; box-shadow: 0 18px 60px rgba(4,14,30,.22); }
.cookie-banner[hidden], .modal[hidden] { display: none; }
.cookie-banner p { color: var(--muted); font-size: 13px; }
.cookie-banner p button { padding: 0; color: var(--blue); border: 0; background: transparent; text-decoration: underline; }
.cookie-banner > div { display: flex; flex: 0 0 auto; gap: 8px; }
.modal { position: fixed; z-index: 500; inset: 0; display: grid; place-items: center; padding: 24px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3,10,20,.75); backdrop-filter: blur(6px); }
.modal-card { position: relative; z-index: 2; width: min(700px, 100%); max-height: min(760px, calc(100vh - 48px)); overflow: auto; padding: 44px; background: #fff; border-radius: 6px 26px; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.modal-card h2 { padding-right: 40px; font-size: 36px; }
.modal-card h3 { margin-top: 28px; color: var(--ink); font-size: 18px; letter-spacing: -.01em; }
.modal-card p { margin-top: 10px; color: var(--muted); }
.modal-card a { color: var(--blue); }
.modal-card .button { margin-top: 30px; }
.modal-close { position: absolute; right: 18px; top: 15px; width: 42px; height: 42px; color: var(--ink); border: 0; background: var(--paper); border-radius: 50%; font-size: 30px; line-height: 1; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; } .js .reveal { opacity: 1; transform: none; } }
@media (prefers-contrast: more) {
  :focus-visible { outline-color: #fff; box-shadow: 0 0 0 6px #05070a; }
  .button, .topic-card, .challenge-card, .benefit-panel, .process-item { border-width: 2px; }
}

@media (max-width: 1050px) {
  :root { --shell: min(100% - 36px, 900px); }
  .main-nav a { padding-inline: 7px; font-size: 12px; }
  .hero-home { min-height: 700px; }
  .hero-copy { padding-left: 5vw; }
  .hero-copy h1 { font-size: clamp(50px, 7vw, 72px); }
  .home-intro { gap: 40px; }
  .topic-company, .topic-integration { grid-column: span 5; }
  .topic-challenges, .topic-solution { grid-column: span 7; }
  .page-hero-copy h1, .solution-copy h1, .integration-copy h1, .benefits-hero h1, .contact-copy h1 { font-size: clamp(48px, 7vw, 68px); }
  .challenge-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page { gap: 34px; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 32px); }
  .site-header, .site-header.scrolled { height: 70px; }
  .brand { margin-left: -16px; padding-left: 26px; }
  .brand img { width: 128px; }
  .menu-toggle { position: relative; z-index: 102; display: flex; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; z-index: 101; inset: 0; display: flex; visibility: hidden; flex-direction: column; align-items: stretch; justify-content: center; gap: 3px; padding: 90px 26px 32px; opacity: 0; background: var(--paper); transform: translateY(-12px); transition: .25s ease; }
  .menu-open .main-nav { visibility: visible; opacity: 1; transform: none; }
  .main-nav a { padding: 9px 0; color: var(--ink); font-size: clamp(24px, 6vw, 38px); }
  .main-nav a::after { left: 0; right: auto; bottom: 4px; width: 52px; }
  .hero-home { grid-template-columns: 1fr; min-height: 0; max-height: none; }
  .hero-copy { min-height: 590px; padding: 70px 24px 48px; }
  .hero-copy h1 { font-size: clamp(48px, 12.2vw, 74px); }
  .hero-visual { height: 430px; clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%); margin-top: -50px; }
  .hero-signals { flex-wrap: wrap; gap: 16px; }
  .home-intro { grid-template-columns: 1fr; gap: 20px; padding-top: 78px; }
  .topic-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; padding-bottom: 80px; }
  .topic-card, .topic-company, .topic-challenges, .topic-solution, .topic-integration, .topic-benefits { grid-column: auto; min-height: 310px; }
  .topic-solution, .topic-benefits { grid-column: span 2; }
  .dark-panel { align-items: flex-start; flex-direction: column; padding: 42px 30px; }
  .hero-company, .hero-clean { grid-template-columns: 1fr; gap: 34px; min-height: 0; padding-block: 70px; }
  .page-hero-art { height: 460px; }
  .mission-block { grid-template-columns: 1fr; gap: 18px; padding: 42px 34px; margin-bottom: 80px; }
  .mission-index { font-size: 72px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { min-height: 250px; }
  .challenge-result { margin-top: 10px; }
  .solution-intro, .integration-hero { grid-template-columns: 1fr; }
  .solution-copy, .integration-copy { min-height: 520px; padding: 80px 24px 60px; }
  .solution-product, .integration-visual { min-height: 500px; clip-path: none; }
  .payment-statement { grid-template-columns: 1fr; gap: 35px; padding-block: 80px 60px; }
  .payment-photo { grid-template-columns: 1fr; }
  .payment-photo figure { min-height: 500px; }
  .benefit-panels { grid-template-columns: 1fr; }
  .benefit-closing { align-items: flex-start; flex-direction: column; gap: 35px; padding: 60px 24px; }
  .contact-page { grid-template-columns: 1fr; padding-block: 70px 90px; }
  .contact-copy { position: static; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); --radius: 20px; }
  .hero-copy { min-height: 545px; }
  .hero-copy h1, .page-hero-copy h1, .solution-copy h1, .integration-copy h1, .benefits-hero h1, .contact-copy h1 { font-size: clamp(43px, 12.5vw, 62px); }
  .hero-copy p { margin-top: 22px; font-size: 16px; }
  .hero-copy .button { margin-top: 26px; }
  .hero-signals { margin-top: 35px; font-size: 10px; }
  .hero-visual { height: 330px; }
  .home-intro h2 { font-size: 40px; }
  .topic-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .topic-card, .topic-company, .topic-challenges, .topic-integration { min-height: 265px; padding: 22px; }
  .topic-card h2 { font-size: clamp(25px, 7.5vw, 34px); }
  .topic-card p { font-size: 14px; line-height: 1.5; }
  .topic-number { top: 15px; left: 18px; font-size: 46px; }
  .topic-arrow { right: 17px; bottom: 18px; width: 40px; height: 40px; }
  .topic-symbol { width: 70px; height: 70px; right: 18px; top: 18px; }
  .topic-solution, .topic-benefits { grid-column: span 2; min-height: 300px; }
  .dark-panel { padding: 34px 24px; }
  .page-hero-art { height: 360px; }
  .mission-block { padding: 32px 24px; }
  .mission-index { font-size: 58px; }
  .pillars-dark, .challenges-dark { padding-block: 75px; }
  .challenge-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .challenge-card { min-height: 275px; padding: 20px; }
  .challenge-card .icon { width: 44px; height: 44px; }
  .challenge-card h2 { margin-top: 24px; font-size: 20px; }
  .challenge-card p { font-size: 13px; line-height: 1.5; }
  .card-index { font-size: 26px; }
  .next-page { align-items: flex-start; flex-direction: column; }
  .solution-copy, .integration-copy { min-height: 450px; }
  .solution-product, .integration-visual { min-height: 390px; }
  .payment-statement > span { padding-left: 20px; font-size: 18px; }
  .payment-photo figure { min-height: 360px; }
  .payment-flow { padding: 28px 22px; }
  .process-item { grid-template-columns: 38px 36px 1fr 26px; gap: 11px; padding: 18px 15px; }
  .process-item > .icon { width: 34px; height: 34px; }
  .process-item h3 { font-size: 16px; }
  .integration-band { padding: 34px 22px; }
  .benefits-hero { padding-block: 75px 50px; }
  .benefit-panel { padding: 28px 20px; }
  .benefit-panel-head .icon { width: 50px; height: 50px; }
  .benefit-panel li { min-height: 55px; padding: 10px; }
  .benefit-panel li span { font-size: 15px; }
  .contact-cards, .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 45px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; align-items: stretch; flex-direction: column; }
  .cookie-banner > div { display: grid; grid-template-columns: 1fr 1fr; }
  .modal { padding: 12px; }
  .modal-card { max-height: calc(100vh - 24px); padding: 32px 22px; }
  .modal-card h2 { font-size: 30px; }
}

/* Premium layout refresh */
:root {
  --ink: #05070a;
  --ink-2: #0a0e14;
  --ink-3: #121923;
  --blue: #285890;
  --blue-2: #376da9;
  --cyan: #4f83bb;
  --paper: #f5f6f8;
  --paper-2: #e9edf2;
  --text: #12171f;
  --muted: #616b78;
  --line: #d9dee5;
  --shadow: 0 18px 50px rgba(8, 14, 22, .09);
  --radius: 14px;
}

strong { color: var(--blue); }
.site-header, .site-header.scrolled {
  height: 76px;
  background: #030405;
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: none;
  backdrop-filter: none;
}
.brand { padding: 0; background: transparent; clip-path: none; }
.brand img { width: 156px; }
.main-nav { gap: 8px; }
.main-nav a { padding: 13px 7px; color: #aeb4bd; font-size: 13px; font-weight: 600; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a::after { left: 7px; right: 7px; bottom: 5px; background: #4c75a6; }
.menu-toggle span:not(.sr-only) { background: #fff; }

.button {
  min-height: 44px;
  padding: 0 18px;
  gap: 9px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: #285890; box-shadow: 0 10px 24px rgba(40,88,144,.22); }
.button-primary:hover { background: #214b7d; box-shadow: 0 13px 28px rgba(40,88,144,.28); }
.button-light { color: #10151c; }
.button-icon svg { width: 18px; height: 18px; }

.hero-home {
  grid-template-columns: 51% 49%;
  min-height: 625px;
  max-height: 720px;
  background: #030405;
  color: #fff;
}
.hero-home::before { width: 100%; background: linear-gradient(90deg, transparent, #355b86, transparent); }
.hero-copy { padding: 76px 5vw 70px max(24px, calc((100vw - 1180px) / 2)); }
.hero-copy h1 { max-width: 660px; color: #fff; font-size: clamp(42px, 4.5vw, 62px); line-height: 1.05; }
.hero-copy h1 strong { color: #527ba9; }
.hero-copy p { max-width: 610px; margin-top: 24px; color: #aab3bf; font-size: 17px; line-height: 1.65; }
.hero-copy .button { margin-top: 28px; }
.hero-signals { gap: 24px; margin-top: 42px; color: #8c96a4; font-size: 10px; letter-spacing: .12em; }
.hero-signals span::before { width: 5px; height: 5px; background: #527ba9; box-shadow: none; }
.hero-visual { clip-path: none; background: #05070a; border-left: 1px solid rgba(255,255,255,.08); }
.hero-visual::after { background: linear-gradient(90deg, #030405 0%, rgba(3,4,5,.18) 30%, rgba(3,4,5,.08)); }
.hero-visual img { object-position: 48% center; }
.hero-glow { position: absolute; z-index: 2; right: 18%; bottom: 5%; width: 280px; height: 120px; background: rgba(39,83,136,.22); border-radius: 50%; filter: blur(55px); }

.home-intro { grid-template-columns: 1fr .65fr; gap: 70px; padding: 84px 0 34px; }
.home-intro h2 { max-width: 700px; font-size: clamp(32px, 3.5vw, 46px); line-height: 1.12; }
.home-intro p { font-size: 16px; }
.topic-grid { grid-auto-rows: minmax(230px, auto); gap: 14px; padding-bottom: 86px; }
.topic-card {
  min-height: 238px;
  padding: 26px;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(12,22,36,.035);
}
.topic-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.topic-card h2 { padding-right: 38px; font-size: clamp(25px, 2.25vw, 34px); }
.topic-card p { max-width: 390px; margin-top: 8px; font-size: 15px; line-height: 1.55; }
.topic-number { top: 20px; left: 25px; color: #9aa7b8; font-size: 16px; font-weight: 700; }
.topic-arrow { right: 23px; bottom: 24px; width: 38px; height: 38px; }
.topic-symbol { right: 24px; top: 24px; width: 64px; height: 64px; }
.topic-company, .topic-challenges, .topic-solution { grid-column: span 4; min-height: 270px; }
.topic-integration, .topic-benefits { grid-column: span 6; min-height: 235px; }
.topic-dark { background: #0b0f14; border-color: #1a222d; }
.topic-dark::after { width: 220px; height: 220px; border-color: rgba(67,108,155,.25); }
.topic-dark .topic-number { color: #607086; }
.topic-image > img { object-position: center 42%; }
.topic-image .topic-number { color: rgba(255,255,255,.7); }
.home-cta { margin-bottom: 86px; }
.dark-panel { padding: 44px 48px; border-radius: 8px; }
.dark-panel h2 { font-size: clamp(30px, 3.2vw, 44px); }
.dark-panel p { font-size: 15px; }

.page-hero,
.solution-intro,
.integration-hero,
.benefits-hero,
.contact-hero {
  display: grid;
  grid-template-columns: 52% 48%;
  width: 100%;
  min-height: 530px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #030405;
  color: #fff;
}
.hero-company, .hero-clean { gap: 0; align-items: stretch; }
.page-hero-copy,
.solution-copy,
.integration-copy,
.benefits-hero-copy,
.contact-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 5vw 70px max(24px, calc((100vw - 1180px) / 2));
}
.page-hero-copy h1,
.solution-copy h1,
.integration-copy h1,
.benefits-hero h1,
.contact-hero h1 {
  max-width: 690px;
  color: #fff;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
}
.page-hero-copy h1 strong,
.solution-copy h1 strong,
.integration-copy h1 strong,
.benefits-hero h1 strong,
.contact-hero h1 strong { color: #527ba9; }
.page-hero-copy > p,
.solution-copy > p,
.integration-copy > p,
.benefits-hero-copy > p,
.contact-hero-copy > p {
  max-width: 610px;
  margin-top: 22px;
  color: #aeb7c3;
  font-size: 17px;
  line-height: 1.65;
}
.page-hero-art,
.solution-product,
.integration-visual,
.benefits-hero-art,
.contact-hero-art {
  position: relative;
  min-width: 0;
  height: auto;
  min-height: 530px;
  overflow: hidden;
  background: #05070a;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  box-shadow: none;
  clip-path: none;
}
.page-hero-art::before { display: none; }
.page-hero-art::after,
.solution-product::after,
.integration-visual::after,
.benefits-hero-art::after,
.contact-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,4,5,.7), transparent 38%);
  pointer-events: none;
}
.page-hero-art img,
.solution-product img,
.integration-visual img,
.benefits-hero-art img,
.contact-hero-art img { width: 100%; height: 100%; object-fit: cover; }
.challenge-hero-art img { object-position: center; }
.benefits-hero-art img { object-position: center 52%; }
.contact-hero-art img { object-position: center 22%; }

.mission-block { grid-template-columns: 150px 1fr; gap: 38px; padding: 52px 58px; margin-top: 70px; margin-bottom: 80px; border-left-width: 3px; box-shadow: 0 12px 40px rgba(9,20,35,.06); }
.mission-index { font-size: 56px; -webkit-text-stroke-color: #b6c1cf; }
.mission-block h2 { font-size: 16px; }
.mission-block p { font-size: clamp(23px, 2.4vw, 33px); }
.pillars-dark { padding: 84px 0; }
.pillars-title h2 { font-size: clamp(32px, 3.6vw, 48px); }
.pillars-grid { gap: 14px; margin-top: 38px; }
.pillar { min-height: 245px; padding: 28px; border-radius: 8px; }
.pillar .icon { width: 46px; height: 46px; color: #527ba9; }
.pillar h3 { margin-top: 38px; font-size: 23px; }
.pillar p { font-size: 15px; }

.challenge-result { max-width: 860px; margin: 54px auto; padding: 28px 34px; border-radius: 8px; box-shadow: 0 10px 34px rgba(8,18,30,.06); }
.challenge-result .icon { flex-basis: 52px; height: 52px; color: var(--blue); }
.challenge-result h2 { font-size: 18px; }
.challenge-result p { font-size: 16px; }
.challenges-dark { padding: 76px 0 86px; background: #eef1f5; }
.digital-wave { opacity: .06; filter: grayscale(1); }
.challenge-grid { gap: 14px; }
.challenge-card { min-height: 270px; padding: 27px; background: #fff; color: var(--text); border-color: var(--line); border-radius: 8px; box-shadow: 0 8px 28px rgba(10,20,34,.035); }
.challenge-card .icon { width: 44px; height: 44px; color: var(--blue); }
.challenge-card h2 { margin-top: 25px; font-size: 22px; }
.challenge-card p { color: var(--muted); font-size: 15px; }
.card-index { color: #adb7c4; font-size: 23px; }

.payment-statement { gap: 70px; padding-block: 84px 64px; }
.payment-statement > p { font-size: clamp(34px, 4vw, 52px); }
.payment-statement > span { font-size: 19px; }
.payment-photo { margin-bottom: 80px; }
.payment-photo figure { min-height: 520px; border-radius: 8px; }
.payment-flow { padding: 38px; border-radius: 8px; }
.payment-flow h2 { font-size: clamp(27px, 2.8vw, 38px); }
.payment-flow li { padding: 16px 0; }

.integration-copy .integration-lead { font-size: 21px; }
.integration-process { padding-block: 84px; }
.integration-process > h2 { font-size: clamp(32px, 3.8vw, 50px); }
.process-list { margin-top: 38px; }
.process-item { padding: 18px 24px; border-radius: 7px; }
.process-item:hover { transform: translateX(4px); }
.process-item h3 { font-size: 18px; }
.integration-band { margin-bottom: 80px; padding: 36px 44px; border-radius: 8px; }
.integration-band p { font-size: clamp(22px, 2.6vw, 34px); }

.benefit-panels { gap: 14px; padding-top: 76px; padding-bottom: 86px; }
.benefit-panel { padding: 34px; border-radius: 8px; box-shadow: 0 10px 35px rgba(9,20,35,.055); }
.benefit-panel h2 { font-size: clamp(26px, 2.5vw, 36px); }
.benefit-panel-head .icon { width: 52px; height: 52px; color: var(--blue); }
.benefit-panel li { min-height: 54px; }
.benefit-panel li span { font-size: 16px; }
.benefit-closing { gap: 60px; padding-block: 60px; }
.benefit-closing p { font-size: clamp(29px, 3.2vw, 44px); }

.contact-page { grid-template-columns: .72fr 1.28fr; padding-block: 76px 90px; }
.contact-copy h2 { font-size: clamp(29px, 3vw, 40px); }
.contact-copy > p { margin-top: 14px; color: var(--muted); }
.contact-cards { grid-template-columns: 1fr; margin-top: 30px; }
.contact-form { padding: 36px; border-radius: 8px; box-shadow: 0 12px 40px rgba(9,20,35,.07); }

.next-page { display: none; }
.site-footer { padding-top: 42px; }
.footer-simple { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.footer-brand { display: flex; align-items: center; gap: 24px; }
.footer-brand img { width: 140px; }
.footer-brand p { max-width: 320px; margin-top: 0; font-size: 13px; }
.footer-contact-line { display: grid; grid-template-columns: repeat(4, max-content); align-items: center; justify-content: end; gap: 10px 22px; }
.footer-address { grid-column: 1 / -1; display: grid; gap: 2px; margin: 0; color: #9babc1; font-size: 13px; font-style: normal; line-height: 1.45; text-align: right; }
.footer-address strong { color: #fff; font-size: 13px; font-weight: 600; }
.footer-contact { margin: 0; }
.footer-bottom { margin-top: 34px; }

@media (max-width: 900px) {
  .hero-home,
  .page-hero,
  .solution-intro,
  .integration-hero,
  .benefits-hero,
  .contact-hero { grid-template-columns: 1fr; max-height: none; }
  .hero-copy,
  .page-hero-copy,
  .solution-copy,
  .integration-copy,
  .benefits-hero-copy,
  .contact-hero-copy { min-height: 440px; padding: 64px 24px 58px; }
  .hero-visual,
  .page-hero-art,
  .solution-product,
  .integration-visual,
  .benefits-hero-art,
  .contact-hero-art { min-height: 400px; height: 400px; margin: 0; clip-path: none; }
  .hero-visual { margin-top: 0; }
  .topic-company, .topic-challenges, .topic-solution { grid-column: span 2; }
  .topic-integration, .topic-benefits { grid-column: span 1; }
  .footer-simple { align-items: flex-start; flex-direction: column; gap: 28px; }
  .footer-contact-line { justify-content: start; }
  .footer-address { text-align: left; }
}

@media (max-width: 820px) {
  .site-header, .site-header.scrolled { height: 70px; }
  .brand { margin-left: 0; padding-left: 0; }
  .main-nav { background: #030405; }
  .main-nav a { color: #d2d7de; }
  .main-nav a.active { color: #fff; }
  .home-intro { grid-template-columns: 1fr; gap: 16px; padding-top: 68px; }
  .topic-grid { grid-template-columns: 1fr 1fr; }
  .topic-card, .topic-company, .topic-challenges, .topic-solution, .topic-integration, .topic-benefits { grid-column: auto; min-height: 240px; }
  .topic-solution { grid-column: span 2; }
  .mission-block { grid-template-columns: 1fr; }
  .challenge-result { width: var(--shell); }
  .contact-page { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-copy,
  .page-hero-copy,
  .solution-copy,
  .integration-copy,
  .benefits-hero-copy,
  .contact-hero-copy { min-height: 410px; }
  .hero-copy h1,
  .page-hero-copy h1,
  .solution-copy h1,
  .integration-copy h1,
  .benefits-hero h1,
  .contact-hero h1 { font-size: clamp(36px, 10.5vw, 47px); }
  .hero-visual,
  .page-hero-art,
  .solution-product,
  .integration-visual,
  .benefits-hero-art,
  .contact-hero-art { min-height: 310px; height: 310px; }
  .topic-grid { gap: 10px; }
  .topic-card, .topic-company, .topic-challenges, .topic-integration, .topic-benefits { min-height: 220px; padding: 19px; }
  .topic-card h2 { font-size: 23px; }
  .topic-card p { font-size: 13px; }
  .topic-number { top: 16px; left: 18px; }
  .topic-arrow { right: 16px; bottom: 17px; width: 34px; height: 34px; }
  .topic-solution { min-height: 280px; }
  .dark-panel { padding: 30px 22px; }
  .mission-block { padding: 32px 24px; }
  .challenge-grid { grid-template-columns: 1fr 1fr; }
  .challenge-card { min-height: 255px; padding: 18px; }
  .challenge-card h2 { font-size: 18px; }
  .challenge-card p { font-size: 12px; }
  .payment-photo figure { min-height: 340px; }
  .footer-brand { align-items: flex-start; flex-direction: column; }
  .footer-contact-line { grid-template-columns: 1fr; align-items: flex-start; gap: 12px; }
}

/* Refinamentos solicitados — versão final clara com módulos premium escuros */
:root {
  --blue: #2d6db2;
  --blue-2: #5590d0;
  --cyan: #75a9df;
}

body,
button,
input,
textarea {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

body { font-weight: 400; }
h1, h2, h3 { font-weight: 600; }
strong { color: #2d6db2; font-weight: 600; }
main { padding-bottom: 88px; }

.hero-copy h1,
.page-hero-copy h1,
.solution-copy h1,
.integration-copy h1,
.benefits-hero h1,
.contact-hero h1 { font-weight: 500; }

.hero-copy h1 strong,
.page-hero-copy h1 strong,
.solution-copy h1 strong,
.integration-copy h1 strong,
.benefits-hero h1 strong,
.contact-hero h1 strong,
.dark-panel strong,
.pillars-title strong,
.integration-band strong,
.benefit-closing strong { color: #6598d1; }

.hero-copy h1 strong { color: #6198d5; }
.main-nav a::after { background: #4f83bd; }
.button-primary { background: #2d6db2; box-shadow: 0 10px 24px rgba(45,109,178,.24); }
.button-primary:hover { background: #255d99; }

/* Home: cinco áreas visuais escuras */
.topic-card.topic-image {
  color: #fff;
  border: 1px solid rgba(124,159,202,.22);
  background: #070a0e;
}

.topic-card.topic-image .topic-shade {
  background:
    linear-gradient(180deg, rgba(3,5,8,.12) 0%, rgba(3,5,8,.82) 64%, rgba(3,5,8,.97) 100%),
    linear-gradient(90deg, rgba(3,5,8,.72), transparent 70%);
}

.topic-card.topic-image > img { filter: saturate(.8) contrast(1.08); }
.topic-card.topic-image p { color: #c6ced9; }
.topic-card.topic-image .topic-number { color: rgba(126,163,207,.82); }
.topic-card.topic-image .topic-symbol { color: #8aafd6; opacity: .22; }
.topic-card.topic-image .topic-arrow { color: #fff; border-color: rgba(255,255,255,.32); }
.topic-integration { background: #070a0e; }
.home-cta,
.payment-photo,
.integration-band { margin-bottom: 0; }

/* Nossa missão */
.mission-block {
  position: relative;
  grid-template-columns: 118px 1fr;
  gap: 42px;
  overflow: hidden;
  padding: 52px 58px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(61,119,181,.2), transparent 34%),
    linear-gradient(135deg, #05070a, #0b1017);
  border: 1px solid rgba(102,148,201,.28);
  border-left: 0;
  box-shadow: 0 18px 52px rgba(5,10,17,.15);
}

.mission-block::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -145px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(100,153,211,.2);
  border-radius: 50%;
}

.mission-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  color: #6a9ed6;
  background: linear-gradient(145deg, rgba(96,148,204,.18), rgba(255,255,255,.02));
  border: 1px solid rgba(107,157,211,.38);
  border-radius: 8px 28px 8px 28px;
}

.mission-mark .icon { width: 52px; height: 52px; }
.mission-mark svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; }
.mission-content { position: relative; z-index: 1; }
.mission-block h2 { color: #6c9ed5; font-size: 15px; letter-spacing: .1em; }
.mission-block p { color: #f1f4f8; font-weight: 400; }

/* Desafios: cartões pretos trabalhados e ícones maiores */
.challenges-dark {
  background: #eef1f5;
}

.challenge-card {
  min-height: 286px;
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(61,119,181,.19), transparent 30%),
    linear-gradient(145deg, #05070a 0%, #0d1219 100%);
  border: 1px solid rgba(108,148,194,.27);
  border-radius: 8px 24px 8px 24px;
  box-shadow: 0 16px 36px rgba(4,9,15,.12);
}

.challenge-card::after,
.process-item::after,
.benefit-panel::after,
.contact-cards a::after,
.payment-flow::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -72px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(90,142,199,.14);
  border-radius: 50%;
  pointer-events: none;
}

.challenge-card .icon { width: 66px; height: 66px; color: #6598d1; }
.challenge-card h2 { margin-top: 31px; color: #fff; }
.challenge-card p { color: #aeb9c7; }
.challenge-result { margin-top: 64px; margin-bottom: 0; }

/* Solução */
.payment-flow {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 94% 6%, rgba(63,122,184,.22), transparent 32%),
    linear-gradient(145deg, #05070a, #0c1118);
  border-color: rgba(103,148,198,.28);
  box-shadow: 0 18px 46px rgba(4,9,15,.14);
}

.payment-flow h2,
.payment-flow li b { color: #fff; }
.payment-flow li { border-bottom-color: rgba(255,255,255,.11); }
.payment-flow li span { color: #b2bdca; }
.payment-flow li .icon { color: #6598d1; }

/* Integração */
.process-item {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(59,112,170,.12), transparent 38%),
    linear-gradient(145deg, #05070a, #0c1118);
  border-color: rgba(104,148,198,.26);
  box-shadow: 0 10px 28px rgba(4,9,15,.09);
}

.process-item:hover { border-color: #497fb8; }
.process-number { color: #71839a; }
.process-item > .icon { color: #6598d1; }
.process-check { background: #2d6db2; }

/* Benefícios */
.benefit-panel {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(62,120,181,.2), transparent 30%),
    linear-gradient(145deg, #05070a, #0c1118);
  border-color: rgba(103,148,198,.27);
  box-shadow: 0 18px 44px rgba(4,9,15,.13);
}

.benefit-panel::before { background: linear-gradient(90deg, #2e6eb3, #6c9fd4); }
.benefit-panel-head .icon { color: #6598d1; }
.benefit-panel h2 { color: #fff; }
.benefit-panel h2 strong { color: #6c9ed5; }
.benefit-panel li {
  color: #dce3eb;
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.08);
}
.check-dot { color: #77a8da; background: rgba(72,127,187,.14); border-color: rgba(112,164,218,.35); }

/* Contato */
.contact-cards a {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(60,117,179,.2), transparent 42%),
    linear-gradient(145deg, #05070a, #0c1118);
  border-color: rgba(104,148,198,.27);
  box-shadow: 0 12px 32px rgba(4,9,15,.1);
}
.contact-cards .icon { position: relative; z-index: 1; color: #6598d1; }
.contact-cards span { position: relative; z-index: 1; color: #b8c2cf; }
.contact-cards b { color: #fff; }

/* Padronização dos boxes escuros: cantos alternados, como em Desafios */
.topic-card.topic-image,
.dark-panel,
.mission-block,
.mission-mark,
.pillar,
.challenge-card,
.payment-flow,
.process-item,
.integration-band,
.benefit-panel,
.benefit-panel li,
.contact-cards a {
  border-radius: 8px 24px 8px 24px;
}

@media (max-width: 820px) {
  main { padding-bottom: 72px; }
  .mission-block { grid-template-columns: 90px 1fr; gap: 28px; }
  .mission-mark { width: 78px; height: 78px; }
  .topic-benefits { grid-column: span 2; }
}

@media (max-width: 560px) {
  main { padding-bottom: 58px; }
  .mission-block { grid-template-columns: 1fr; }
  .mission-mark { width: 72px; height: 72px; }
  .challenge-card .icon { width: 54px; height: 54px; }
}
