:root {
  --red: #d91d1d;
  --red-dark: #b61318;
  --ink: #121316;
  --ink-2: #25272c;
  --muted: #62666f;
  --soft: #f4f5f6;
  --soft-2: #ebecef;
  --line: #dfe1e5;
  --white: #fff;
  --dark: #101114;
  --container: min(1180px, calc(100vw - 40px));
  --shadow: 0 30px 80px rgba(16, 17, 20, .12);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(217, 29, 29, .35); outline-offset: 4px; }
::selection { color: var(--white); background: var(--red); }

.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; color: #fff; background: #111; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.eyebrow { margin: 0 0 20px; color: var(--red-dark); font-size: .72rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { display: inline-block; width: 30px; height: 2px; margin: 0 12px 3px 0; background: var(--red); content: ""; }
.section { padding: clamp(72px, 9vw, 132px) 0; }
.section--soft { background: var(--soft); }
.section--dark { color: var(--white); background: var(--dark); }
.section--compact { padding: clamp(54px, 7vw, 90px) 0; }
.section-heading { display: grid; grid-template-columns: .85fr 1.45fr; gap: clamp(30px, 7vw, 110px); align-items: end; margin-bottom: clamp(42px, 6vw, 78px); }
.section-heading h2, .split-copy h2, .cta-band h2 { margin: 0; font-size: clamp(2.25rem, 4.5vw, 4.8rem); font-weight: 560; letter-spacing: -.052em; line-height: 1.02; }
.section-heading p, .split-copy > p { max-width: 640px; margin: 0; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.7; }
.section--dark .section-heading p, .section--dark .split-copy > p { color: #aeb1b9; }
.label { color: var(--red); font-size: .68rem; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }

.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 12px; padding: 0 22px; border: 1px solid transparent; text-decoration: none; font-size: .78rem; font-weight: 720; letter-spacing: .04em; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn::after { font-size: 1.05rem; content: "↗"; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #fff; background: var(--red); }
.btn--primary:hover { background: var(--red-dark); }
.btn--secondary { color: var(--ink); border-color: #bfc2c8; background: rgba(255,255,255,.72); }
.btn--secondary:hover { border-color: var(--ink); }
.btn--light { color: var(--ink); background: var(--white); }
.text-link { display: inline-flex; gap: 9px; align-items: center; color: var(--ink); font-size: .78rem; font-weight: 750; letter-spacing: .03em; text-decoration: none; }
.text-link::after { color: var(--red); content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.topbar { color: #d2d4d9; background: #0d0e10; font-size: .66rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.topbar .container { display: flex; min-height: 34px; align-items: center; justify-content: space-between; }
.topbar a { color: #fff; text-decoration: none; }
.topbar span { color: #6f737c; }
.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(18, 19, 22, .1); background: rgba(255,255,255,.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.header-inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; width: 128px; padding: 8px 0; background: #fff; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: clamp(17px, 2vw, 31px); }
.primary-nav a { position: relative; padding: 31px 0 28px; color: #383a40; font-size: .72rem; font-weight: 700; letter-spacing: .035em; text-decoration: none; }
.primary-nav a::after { position: absolute; right: 0; bottom: 21px; left: 0; height: 2px; background: var(--red); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.language-switch { display: inline-flex; align-items: center; gap: 5px; color: #555861; font-size: .67rem; font-weight: 750; letter-spacing: .08em; }
.language-switch a { padding: 7px; text-decoration: none; }
.language-switch a[aria-current="true"] { color: var(--red); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); background: #fff; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); content: ""; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; color: #fff; background: #111317; }
.hero::after { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, transparent, #000); -webkit-mask-image: linear-gradient(90deg, transparent, #000); content: ""; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.08); }
.hero-media::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,10,12,.96) 5%, rgba(9,10,12,.82) 48%, rgba(9,10,12,.38) 100%), linear-gradient(0deg, rgba(9,10,12,.5), transparent 60%); content: ""; }
.hero-inner { position: relative; z-index: 2; display: grid; min-height: min(790px, calc(100svh - 116px)); grid-template-columns: 1.45fr .55fr; align-items: end; gap: 60px; padding: clamp(90px, 12vw, 170px) 0 clamp(74px, 9vw, 120px); }
.hero-copy { max-width: 900px; }
.hero h1 { max-width: 14ch; margin: 0; font-size: clamp(3.3rem, 6.7vw, 7.4rem); font-weight: 540; letter-spacing: -.067em; line-height: .94; }
.hero h1 span { color: #b7bac1; }
.hero-lead { max-width: 730px; margin: 34px 0 0; color: #c9cbd1; font-size: clamp(1.05rem, 1.45vw, 1.32rem); line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero-side { align-self: end; padding: 28px 0 4px 28px; border-left: 2px solid var(--red); }
.hero-side strong { display: block; max-width: 18ch; font-size: 1.1rem; font-weight: 560; line-height: 1.45; }
.hero-side span { display: block; margin-top: 12px; color: #9da0a8; font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.page-hero .hero-inner { min-height: 580px; }
.page-hero h1 { max-width: 12ch; }

.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.proof-item { min-height: 160px; padding: 34px 28px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font-size: clamp(1.55rem, 2.5vw, 2.6rem); font-weight: 570; letter-spacing: -.045em; }
.proof-item span { display: block; margin-top: 10px; color: var(--muted); font-size: .78rem; line-height: 1.5; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card { position: relative; min-height: 330px; padding: clamp(30px, 4vw, 52px); background: #fff; transition: background .25s ease, transform .25s ease; }
.card:hover { z-index: 2; background: #fafafa; transform: translateY(-5px); box-shadow: var(--shadow); }
.card-index { display: block; margin-bottom: 72px; color: var(--red); font-size: .68rem; font-weight: 750; letter-spacing: .15em; }
.card h3 { max-width: 18ch; margin: 0; font-size: clamp(1.45rem, 2.4vw, 2.3rem); font-weight: 580; letter-spacing: -.04em; line-height: 1.1; }
.card p { max-width: 48ch; margin: 18px 0 25px; color: var(--muted); font-size: .94rem; line-height: 1.65; }
.card ul { display: flex; flex-wrap: wrap; gap: 7px 16px; margin: 0 0 28px; padding: 0; color: #4d5058; list-style: none; font-size: .76rem; }
.card li::before { margin-right: 6px; color: var(--red); content: "+"; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 120px); align-items: center; }
.split-media { position: relative; min-height: 560px; overflow: hidden; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-media::after { position: absolute; inset: auto 0 0 auto; width: 34%; height: 34%; border-top: 3px solid var(--red); border-left: 3px solid var(--red); content: ""; }
.split-copy h2 { margin-bottom: 28px; }
.feature-list { display: grid; gap: 0; margin: 34px 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; padding: 15px 0; border-top: 1px solid var(--line); color: #3e4148; font-size: .88rem; line-height: 1.5; }
.feature-list li::before { color: var(--red); font-weight: 750; content: "→"; }
.section--dark .feature-list li { color: #d1d3d8; border-color: #303238; }

.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #34363b; border: 1px solid #34363b; }
.sector { min-height: 190px; padding: 30px; background: #181a1f; }
.sector span { color: var(--red); font-size: .65rem; font-weight: 750; letter-spacing: .15em; }
.sector h3 { margin: 50px 0 0; font-size: 1.15rem; font-weight: 560; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: process; }
.step { position: relative; padding: 30px 0 0; border-top: 2px solid var(--ink); counter-increment: process; }
.step::before { display: block; margin-bottom: 52px; color: var(--red); font-size: .7rem; font-weight: 750; content: "0" counter(process); }
.step h3 { margin: 0; font-size: 1.25rem; font-weight: 580; }
.step p { margin: 14px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.6; }

.quote-panel { padding: clamp(45px, 7vw, 88px); color: #fff; background: var(--red); }
.quote-panel blockquote { max-width: 22ch; margin: 0; font-size: clamp(2.2rem, 4.8vw, 5rem); font-weight: 540; letter-spacing: -.055em; line-height: 1.02; }
.quote-panel p { margin: 30px 0 0; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.faq-list { max-width: 900px; margin-left: auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 27px 0; font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 620; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { flex: 0 0 auto; color: var(--red); font-size: 1.4rem; content: "+"; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 700px; margin: -4px 0 28px; color: var(--muted); line-height: 1.7; }

.cta-band { position: relative; overflow: hidden; padding: clamp(65px, 9vw, 120px) 0; color: #fff; background: #141518; }
.cta-band::after { position: absolute; right: -10vw; bottom: -22vw; width: 45vw; height: 45vw; border: 1px solid rgba(217,29,29,.35); border-radius: 50%; box-shadow: 0 0 0 7vw rgba(217,29,29,.05), 0 0 0 14vw rgba(217,29,29,.025); content: ""; }
.cta-band .container { position: relative; z-index: 2; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.cta-band h2 { max-width: 16ch; }

.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.content-box { min-height: 280px; padding: 36px; background: #fff; }
.content-box h3 { margin: 26px 0 14px; font-size: 1.4rem; font-weight: 580; letter-spacing: -.025em; }
.content-box p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.content-box .label { display: block; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #303238; border: 1px solid #303238; }
.value { min-height: 280px; padding: 40px; background: #17191d; }
.value h3 { margin: 60px 0 14px; font-size: 1.6rem; font-weight: 570; }
.value p { margin: 0; color: #aeb1b8; line-height: 1.65; }

.mps-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mps-flow article { padding: 32px; border: 1px solid var(--line); background: #fff; }
.mps-flow h3 { margin: 40px 0 12px; font-size: 1.35rem; }
.mps-flow p { color: var(--muted); line-height: 1.65; }

.partner-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.partner-category { min-height: 220px; padding: 30px; border: 1px solid var(--line); }
.partner-category h3 { margin: 55px 0 12px; font-size: 1.25rem; }
.partner-category p { margin: 0; color: var(--muted); line-height: 1.6; }
.logo-ready { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 50px; background: var(--line); border: 1px solid var(--line); }
.logo-slot { display: grid; min-height: 130px; place-items: center; color: #979aa2; background: #fff; font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(48px, 8vw, 120px); }
.contact-details { display: grid; gap: 0; margin-top: 38px; }
.contact-details div { padding: 22px 0; border-top: 1px solid var(--line); }
.contact-details dt { color: var(--muted); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-details dd { margin: 7px 0 0; font-size: 1.05rem; line-height: 1.55; }
.contact-details a { text-decoration-color: rgba(217,29,29,.4); text-underline-offset: 4px; }
.contact-form { padding: clamp(30px, 5vw, 56px); border: 1px solid var(--line); background: var(--soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { color: #464950; font-size: .71rem; font-weight: 720; letter-spacing: .06em; }
.field input, .field textarea { width: 100%; border: 0; border-bottom: 1px solid #bfc2c8; border-radius: 0; padding: 13px 0; color: var(--ink); background: transparent; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--red); outline: 0; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.turnstile-wrap { min-height: 70px; margin-top: 24px; }
.form-note, .form-status { color: var(--muted); font-size: .75rem; line-height: 1.55; }
.form-status { min-height: 22px; margin: 15px 0; font-weight: 650; }
.form-status[data-state="success"] { color: #167342; }
.form-status[data-state="error"] { color: var(--red-dark); }

.breadcrumbs { margin: 0 0 24px; color: #a6a9b0; font-size: .67rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs span { margin: 0 8px; color: var(--red); }

.site-footer { color: #bbbfc7; background: #0c0d0f; }
.footer-main { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 60px; padding: 72px 0 58px; }
.footer-brand img { width: 140px; padding: 8px 0; background: #fff; }
.footer-brand strong { display: block; max-width: 32ch; margin-top: 24px; color: #fff; font-size: 1rem; font-weight: 560; line-height: 1.55; }
.footer-col h2 { margin: 0 0 22px; color: #767a83; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a, .footer-col address, .footer-col p { display: block; margin: 0 0 10px; color: #c7cad0; font-size: .82rem; font-style: normal; line-height: 1.6; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 20px 0; border-top: 1px solid #24262b; color: #737780; font-size: .65rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .header-inner { min-height: 72px; }
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; inset: 106px 0 auto; display: grid; max-height: 0; gap: 0; overflow: hidden; background: #fff; transition: max-height .35s var(--ease); }
  .primary-nav.is-open { max-height: calc(100vh - 106px); border-bottom: 1px solid var(--line); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
  .primary-nav a { width: var(--container); margin: auto; padding: 20px 0; border-bottom: 1px solid var(--line); font-size: .86rem; }
  .primary-nav a::after { display: none; }
  .header-actions .btn { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-side { max-width: 430px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .content-grid, .partner-categories { grid-template-columns: repeat(2, 1fr); }
  .logo-ready { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 32px, 1180px); }
  .topbar .container > span:last-child { display: none; }
  .brand { width: 112px; }
  .header-actions { gap: 7px; }
  .hero-inner { min-height: 700px; padding: 88px 0 70px; }
  .page-hero .hero-inner { min-height: 500px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 5.3rem); }
  .section-heading, .split, .contact-layout { grid-template-columns: 1fr; }
  .section-heading { align-items: start; gap: 22px; }
  .cards, .content-grid, .values-grid, .mps-flow, .partner-categories { grid-template-columns: 1fr; }
  .card { min-height: 300px; }
  .card-index { margin-bottom: 46px; }
  .split-media { min-height: 420px; order: -1; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::before { margin-bottom: 28px; }
  .cta-band .container { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 500px) {
  .topbar { font-size: .58rem; }
  .topbar .container { min-height: 30px; }
  .primary-nav { inset-block-start: 102px; }
  .language-switch { font-size: .61rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .proof-grid, .sector-grid, .form-grid, .logo-ready { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .sector { min-height: 150px; }
  .sector h3 { margin-top: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
