:root {
  --navy-950: #061d33;
  --navy-900: #07335c;
  --navy-800: #0b477d;
  --blue-700: #0d4e8b;
  --teal-700: #087e8b;
  --teal-600: #1591a6;
  --teal-500: #1aaabd;
  --ink: #172635;
  --slate: #526373;
  --muted: #60717f;
  --line: #dbe5eb;
  --ice: #f2f8fa;
  --mist: #f7fafb;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(6, 41, 70, 0.08);
  --shadow-md: 0 22px 60px rgba(6, 41, 70, 0.14);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --header-height: 92px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI Variable", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid rgba(26, 170, 189, 0.65);
  outline-offset: 4px;
}

::selection { background: rgba(21, 145, 166, 0.22); }

[hidden] { display: none !important; }
body[data-lang="en"] [data-lang-content="ro"],
body[data-lang="ro"] [data-lang-content="en"] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.container-narrow { width: min(calc(100% - 48px), 860px); margin-inline: auto; }

.section { padding: 112px 0; position: relative; }
.section-compact { padding: 78px 0; }
.section-ice { background: var(--ice); }
.section-mist { background: var(--mist); }
.section-dark { background: var(--navy-950); color: var(--white); overflow: hidden; }
.section-navy { background: linear-gradient(135deg, var(--navy-900), #074a76); color: var(--white); overflow: hidden; }
.section-line { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--teal-700);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.section-dark .eyebrow, .section-navy .eyebrow, .hero .eyebrow { color: #5bd7e4; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 760;
  letter-spacing: -.035em;
  line-height: 1.1;
}
.section-dark h2, .section-dark h3, .section-navy h2, .section-navy h3 { color: var(--white); }
h1 { font-size: clamp(2.75rem, 5.5vw, 5.55rem); }
h2 { font-size: clamp(2.15rem, 4vw, 3.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1rem; }

.lead { margin: 26px 0 0; color: var(--slate); font-size: clamp(1.08rem, 1.8vw, 1.28rem); line-height: 1.68; }
.section-dark .lead, .section-navy .lead { color: rgba(255,255,255,.8); }
.text-large { font-size: 1.18rem; }
.text-muted { color: var(--muted); }
.text-teal { color: var(--teal-600); }
.max-copy { max-width: 700px; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::after { content: ""; width: 34px; height: 2px; background: currentColor; }
.center .lead, .center .max-copy { margin-inline: auto; }

.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 22px;
  border: 1px solid var(--teal-700);
  border-radius: 9px;
  background: var(--teal-700);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); background: var(--navy-800); border-color: var(--navy-800); box-shadow: 0 12px 28px rgba(5, 72, 113, .2); }
.button-small { min-height: 44px; padding: 10px 18px; font-size: .94rem; }
.button-light { background: var(--white); color: var(--navy-900); border-color: var(--white); }
.button-light:hover { background: var(--ice); color: var(--navy-950); border-color: var(--ice); }
.button-outline { background: transparent; color: var(--navy-900); border-color: #9cb3c3; }
.button-outline:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.section-dark .button-outline, .hero .button-outline { color: var(--white); border-color: rgba(255,255,255,.5); }
.section-dark .button-outline:hover, .hero .button-outline:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--teal-700); font-weight: 720; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); box-shadow: 0 1px 0 rgba(9,49,80,.09); backdrop-filter: blur(15px); }
.utility-bar { background: var(--navy-950); color: rgba(255,255,255,.78); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.utility-inner { min-height: 30px; display: flex; align-items: center; gap: 10px; }
.utility-route { position: relative; width: 48px; height: 1px; background: var(--teal-500); }
.utility-route::before, .utility-route::after { content: ""; position: absolute; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-500); transform: translateY(-50%); }
.utility-route::before { left: 0; } .utility-route::after { right: 0; }
.utility-copy { margin-left: auto; color: rgba(255,255,255,.58); }
.header-main { min-height: var(--header-height); display: flex; align-items: center; }
.header-inner { display: grid; grid-template-columns: 154px 1fr auto; align-items: center; gap: 30px; }
.brand { width: 145px; height: 84px; display: flex; align-items: center; overflow: visible; }
.brand img { width: 132px; height: auto; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 30px); }
.nav-link { position: relative; padding: 31px 0 28px; color: #2b3e4f; font-size: .91rem; font-weight: 620; white-space: nowrap; }
.nav-link::after { content: ""; position: absolute; right: 0; bottom: 21px; left: 0; height: 2px; background: var(--teal-600); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-contact { display: none; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.language-switch { display: flex; gap: 7px; align-items: center; font-size: .82rem; font-weight: 740; color: #71808c; }
.language-switch button { padding: 4px 1px; border: 0; background: transparent; color: inherit; cursor: pointer; }
.language-switch button[aria-current="true"] { color: var(--teal-700); box-shadow: 0 2px 0 var(--teal-600); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: 690px; overflow: hidden; background: var(--navy-900); color: var(--white); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr); min-height: 690px; }
.hero-copy { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center; padding: 90px 76px 90px max(24px, calc((100vw - var(--container)) / 2)); }
.hero-copy::after { content: ""; position: absolute; z-index: -1; top: 0; right: -96px; bottom: 0; width: 190px; background: var(--navy-900); transform: skewX(-15deg); transform-origin: top; }
.hero h1 { max-width: 750px; color: var(--white); font-size: clamp(3rem, 5.2vw, 5.2rem); }
.hero h1 strong { color: #5dd3df; font-weight: inherit; }
.hero .lead { max-width: 680px; color: rgba(255,255,255,.82); }
.hero-media { position: relative; min-height: 690px; overflow: hidden; background: linear-gradient(135deg, #214b6d, #7fa5b5); }
.hero-media > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,51,92,.12), transparent 45%, rgba(6,29,51,.22)); }
.hero-network { position: absolute; z-index: 2; top: 80px; right: 6%; width: 285px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius); background: rgba(4,35,61,.48); box-shadow: 0 18px 50px rgba(0,0,0,.18); backdrop-filter: blur(8px); }
.network-row { position: relative; display: grid; grid-template-columns: 22px 1fr; align-items: center; gap: 11px; min-height: 43px; color: rgba(255,255,255,.84); font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; }
.network-row:not(:last-child)::before { content: ""; position: absolute; left: 7px; top: 29px; width: 1px; height: 30px; background: rgba(85,213,224,.65); }
.network-node { width: 15px; height: 15px; border: 3px solid rgba(255,255,255,.65); border-radius: 50%; background: var(--teal-500); }
.network-row:nth-child(2) .network-node { background: #88a6b3; }
.network-row:nth-child(3) .network-node { background: #1688bd; }
.hero-proof { position: absolute; z-index: 3; right: 6%; bottom: 45px; display: flex; gap: 14px; align-items: center; color: rgba(255,255,255,.78); font-size: .76rem; font-weight: 670; letter-spacing: .13em; text-transform: uppercase; }
.hero-proof::before { content: ""; width: 36px; height: 2px; background: var(--teal-500); }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 15px; min-height: 112px; padding: 22px 30px; border-right: 1px solid var(--line); color: var(--navy-900); font-size: .95rem; font-weight: 700; }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-icon { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 50%; background: var(--ice); color: var(--teal-700); }
.trust-icon svg { width: 22px; height: 22px; }

/* Grids and cards */
.section-heading { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); gap: 60px; align-items: end; margin-bottom: 52px; }
.section-heading .lead { margin: 0; }
.cards { display: grid; gap: 18px; }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card { position: relative; min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 1px 0 rgba(6,50,87,.02); transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(21,145,166,.48); box-shadow: var(--shadow-md); }
.service-card .icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 32px; border-radius: 12px; background: var(--ice); color: var(--teal-700); }
.service-card .icon-box svg { width: 25px; height: 25px; }
.service-card h3 { margin-bottom: 16px; }
.service-card p { margin: 0; color: var(--slate); }
.service-card .text-link { margin-top: 24px; }
.service-card-accent { border-top: 4px solid var(--teal-600); }
.section-dark .service-card h3, .section-navy .service-card h3 { color: var(--navy-950); }
.section-dark .service-card p, .section-navy .service-card p { color: var(--slate); }

.split-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 590px; }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: 84px max(40px, calc((100vw - var(--container)) / 2)); padding-right: clamp(48px, 6vw, 110px); }
.split-media { position: relative; overflow: hidden; min-height: 480px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 50%, rgba(7,51,92,.28)); }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.audience-panel { position: relative; min-height: 430px; padding: 58px; overflow: hidden; background: var(--navy-900); color: var(--white); }
.audience-panel + .audience-panel { background: var(--ice); color: var(--ink); }
.audience-panel h3 { max-width: 520px; margin-bottom: 20px; color: inherit; font-size: clamp(2rem, 3vw, 3.1rem); }
.audience-panel p { max-width: 560px; margin: 0; color: rgba(255,255,255,.78); font-size: 1.1rem; }
.audience-panel + .audience-panel p { color: var(--slate); }
.audience-panel::after { content: ""; position: absolute; right: -38px; bottom: -70px; width: 170px; height: 330px; background: linear-gradient(180deg, rgba(21,145,166,.08), rgba(21,145,166,.34)); transform: rotate(28deg); }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; counter-reset: process; }
.process-grid::before { content: ""; position: absolute; top: 25px; left: 4%; right: 4%; height: 1px; background: rgba(113,194,205,.4); }
.process-step { position: relative; z-index: 1; }
.process-number { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 28px; border: 1px solid rgba(91,215,228,.68); border-radius: 50%; background: var(--navy-950); color: #73dde6; font-weight: 750; }
.process-step h3 { margin-bottom: 13px; font-size: 1.2rem; }
.process-step p { margin: 0; color: rgba(255,255,255,.7); }

.check-list, .plain-list { margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 14px 0; padding-left: 32px; color: var(--slate); }
.check-list li::before { content: "✓"; position: absolute; top: 1px; left: 0; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: rgba(21,145,166,.12); color: var(--teal-700); font-size: .75rem; font-weight: 900; }
.section-dark .check-list li, .section-navy .check-list li { color: rgba(255,255,255,.8); }
.plain-list li { margin: 10px 0; color: var(--slate); }

.quote-card { padding: 34px; border-left: 4px solid var(--teal-600); background: var(--ice); color: var(--navy-900); font-size: 1.15rem; font-weight: 620; }

/* Page heroes */
.page-hero { position: relative; overflow: hidden; padding: 110px 0 104px; background: linear-gradient(135deg, var(--navy-950), var(--navy-900)); color: var(--white); }
.page-hero::before, .section-dark::before { content: ""; position: absolute; top: -160px; right: -60px; width: 420px; height: 720px; background: linear-gradient(180deg, rgba(16,103,156,.5), rgba(21,145,166,.1)); transform: rotate(23deg); }
.page-hero::after { content: ""; position: absolute; right: 14%; bottom: 17%; width: 240px; height: 150px; opacity: .45; background: radial-gradient(circle at 15% 80%, #55d3df 0 5px, transparent 6px), radial-gradient(circle at 48% 48%, #55d3df 0 5px, transparent 6px), radial-gradient(circle at 86% 17%, #55d3df 0 5px, transparent 6px), linear-gradient(32deg, transparent 49.5%, rgba(85,211,223,.8) 50%, transparent 50.5%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 900px; color: var(--white); font-size: clamp(2.85rem, 5.3vw, 5rem); }
.page-hero .lead { max-width: 800px; }
.page-hero-light { background: var(--ice); color: var(--ink); }
.page-hero-light h1 { color: var(--navy-950); }
.page-hero-light .lead { color: var(--slate); }
.page-hero-light .eyebrow { color: var(--teal-700); }

.breadcrumb { display: flex; gap: 10px; align-items: center; margin-bottom: 30px; color: rgba(255,255,255,.68); font-size: .9rem; }
.page-hero-light .breadcrumb { color: var(--muted); }
.breadcrumb a:hover { color: var(--teal-500); }

.content-split { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr); gap: clamp(48px, 7vw, 100px); align-items: center; }
.content-split-reverse .content-media { order: -1; }
.content-media { position: relative; min-height: 470px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.content-media img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.content-media-badge { position: absolute; right: 24px; bottom: 24px; max-width: 270px; padding: 22px; border-radius: 14px; background: rgba(6,29,51,.9); color: var(--white); backdrop-filter: blur(8px); }
.content-media-badge strong { display: block; margin-bottom: 5px; color: #68d9e4; }

.statements { display: grid; gap: 2px; margin-top: 34px; }
.statement { display: grid; grid-template-columns: 38px 1fr; gap: 15px; padding: 20px 0; border-top: 1px solid var(--line); }
.statement span { color: var(--teal-700); font-size: .8rem; font-weight: 800; }
.statement p { margin: 0; color: var(--slate); }

.role-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.role-card { display: flex; align-items: center; gap: 16px; min-height: 94px; padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); transition: border-color .2s, transform .2s, box-shadow .2s; }
.role-card:hover { transform: translateY(-3px); border-color: var(--teal-600); box-shadow: var(--shadow-sm); }
.role-card .icon-box { width: 45px; height: 45px; flex: 0 0 45px; display: grid; place-items: center; border-radius: 10px; background: var(--ice); color: var(--teal-700); }
.role-card strong { display: block; color: var(--navy-900); line-height: 1.3; }
.role-card small { display: block; margin-top: 4px; color: var(--muted); font-size: .82rem; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-button { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--slate); font-weight: 650; cursor: pointer; transition: .2s ease; }
.filter-button:hover, .filter-button.is-active { border-color: var(--teal-700); background: var(--teal-700); color: var(--white); }
.opportunity-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.opportunity-card { display: flex; flex-direction: column; min-height: 280px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.opportunity-card .tag { align-self: flex-start; margin-bottom: 28px; padding: 6px 10px; border-radius: 999px; background: var(--ice); color: var(--teal-700); font-size: .75rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.opportunity-card h3 { margin-bottom: 13px; }
.opportunity-card p { margin: 0; color: var(--slate); }
.opportunity-card .text-link { margin-top: auto; padding-top: 22px; }

/* Timeline */
.journey { position: relative; max-width: 940px; margin: 0 auto; }
.journey::before { content: ""; position: absolute; top: 0; bottom: 0; left: 25px; width: 1px; background: var(--line); }
.journey-step { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 28px; padding-bottom: 42px; }
.journey-step:last-child { padding-bottom: 0; }
.journey-marker { z-index: 1; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--navy-900); color: var(--white); font-weight: 760; box-shadow: 0 0 0 8px var(--white); }
.section-ice .journey-marker { box-shadow: 0 0 0 8px var(--ice); }
.section-dark .journey-marker { box-shadow: 0 0 0 8px var(--navy-950); }
.journey-copy { padding: 9px 0 0; }
.journey-copy h3 { margin-bottom: 10px; }
.journey-copy p { margin: 0; color: var(--slate); }
.section-dark .journey-copy p { color: rgba(255,255,255,.74); }

/* FAQs */
.faq-list { display: grid; gap: 12px; max-width: 900px; margin: 46px auto 0; }
.faq-list details { border: 1px solid var(--line); border-radius: 14px; background: var(--white); transition: border-color .2s, box-shadow .2s; }
.faq-list details[open] { border-color: rgba(21,145,166,.52); box-shadow: var(--shadow-sm); }
.faq-list summary { position: relative; padding: 23px 62px 23px 24px; color: var(--navy-900); font-size: 1.07rem; font-weight: 720; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 24px; width: 30px; height: 30px; display: grid; place-items: center; transform: translateY(-50%); border-radius: 50%; background: var(--ice); color: var(--teal-700); font-size: 1.25rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 24px 24px; color: var(--slate); }
.faq-answer p { margin: 0; }

/* Insights */
.insight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.insight-card { display: flex; flex-direction: column; min-height: 310px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s var(--ease), box-shadow .25s ease; }
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.insight-card .category { margin-bottom: 35px; color: var(--teal-700); font-size: .76rem; font-weight: 780; letter-spacing: .11em; text-transform: uppercase; }
.insight-card h3 { font-size: 1.5rem; }
.insight-card p { color: var(--slate); }
.insight-card .text-link { margin-top: auto; }

/* Forms */
.form-layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: clamp(44px, 7vw, 95px); align-items: start; }
.form-card { padding: clamp(28px, 5vw, 52px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 19px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--navy-900); font-size: .9rem; font-weight: 680; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #bdcbd4;
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-700); box-shadow: 0 0 0 4px rgba(21,145,166,.13); }
.checkbox-field { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; margin: 22px 0; color: var(--slate); font-size: .88rem; }
.checkbox-field input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--teal-700); }
.checkbox-field a { color: var(--teal-700); text-decoration: underline; }
.form-note { margin-top: 18px; color: var(--muted); font-size: .83rem; }
.form-error { min-height: 24px; margin: 8px 0; color: #a12d2d; font-size: .88rem; font-weight: 650; }
.contact-stack { display: grid; gap: 14px; margin-top: 34px; }
.contact-method { padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.contact-method { transition: transform .2s var(--ease), border-color .2s ease, box-shadow .2s ease; }
.contact-method:hover { transform: translateY(-3px); border-color: var(--teal-600); box-shadow: var(--shadow-sm); }
.contact-method small { display: block; color: var(--muted); font-size: .77rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-method strong { display: block; margin-top: 3px; color: var(--navy-900); }

dialog {
  width: min(calc(100% - 32px), 720px);
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 38px 100px rgba(0,0,0,.28);
}
dialog::backdrop { background: rgba(6,29,51,.7); backdrop-filter: blur(5px); }
.dialog-inner { padding: 36px; }
.dialog-inner h2 { font-size: 2rem; }
.dialog-inner p { color: var(--slate); }
.dialog-inner textarea { width: 100%; min-height: 250px; padding: 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--mist); color: var(--ink); font-family: Consolas, monospace; font-size: .85rem; resize: vertical; }
.dialog-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* Legal */
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 70px; align-items: start; }
.legal-nav { position: sticky; top: 150px; padding: 24px; border-radius: 14px; background: var(--ice); }
.legal-nav h2 { margin-bottom: 15px; font-size: 1rem; }
.legal-nav a { display: block; padding: 7px 0; color: var(--slate); font-size: .9rem; }
.legal-nav a:hover { color: var(--teal-700); }
.legal-copy { max-width: 820px; }
.legal-copy h2 { margin: 52px 0 18px; font-size: 2rem; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 { margin: 30px 0 12px; font-size: 1.25rem; }
.legal-copy p, .legal-copy li { color: var(--slate); }
.legal-copy a { color: var(--teal-700); text-decoration: underline; }

/* Call to action */
.cta-band { position: relative; overflow: hidden; padding: 88px 0; background: var(--navy-900); color: var(--white); }
.cta-band::before { content: ""; position: absolute; right: -30px; bottom: -160px; width: 330px; height: 520px; background: linear-gradient(180deg, rgba(26,170,189,.8), rgba(13,78,139,.3)); transform: rotate(27deg); }
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.cta-band h2 { max-width: 820px; color: var(--white); }
.cta-band p { max-width: 720px; margin: 18px 0 0; color: rgba(255,255,255,.76); font-size: 1.1rem; }

/* Footer */
.site-footer { background: #041827; color: rgba(255,255,255,.68); }
.footer-top { padding: 72px 0 58px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(4, 1fr); gap: 45px; }
.footer-brand img { width: 168px; padding: 8px; border-radius: 8px; background: var(--white); }
.footer-brand p { max-width: 350px; margin: 23px 0 0; }
.footer-contact a { color: #6ed9e3; font-weight: 680; }
.footer-brand .footer-registration { margin-top: 14px; color: rgba(255,255,255,.46); font-size: .78rem; line-height: 1.55; }
.footer-grid h2 { margin-bottom: 18px; color: var(--white); font-size: .86rem; font-weight: 730; letter-spacing: .09em; text-transform: uppercase; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin: 9px 0; }
.footer-grid a:hover { color: #6ed9e3; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: grid; grid-template-columns: 1fr 1.25fr; gap: 30px; padding: 24px 0; font-size: .78rem; }
.footer-bottom p { margin: 0; }
.back-to-top { position: fixed; z-index: 90; right: 24px; bottom: 24px; width: 48px; height: 48px; display: grid; place-items: center; transform: translateY(85px); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: var(--navy-900); color: var(--white); box-shadow: var(--shadow-md); opacity: 0; cursor: pointer; transition: transform .25s var(--ease), opacity .25s ease; }
.back-to-top.is-visible { transform: translateY(0); opacity: 1; }

/* Motion */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.stagger > *:nth-child(2) { transition-delay: .08s; }
.stagger > *:nth-child(3) { transition-delay: .16s; }
.stagger > *:nth-child(4) { transition-delay: .24s; }
.stagger > *:nth-child(5) { transition-delay: .32s; }
.stagger > *:nth-child(6) { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; transition-delay: 0ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1240px) {
  :root { --header-height: 78px; }
  .header-inner { grid-template-columns: 1fr auto auto; gap: 18px; }
  .brand { width: 132px; height: 74px; }
  .brand img { width: 116px; }
  .menu-toggle { display: block; grid-column: 3; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .header-actions .button { display: none; }
  .primary-nav { position: fixed; top: 108px; right: 0; bottom: 0; left: 0; display: block; padding: 24px 18px 50px; overflow-y: auto; background: var(--white); transform: translateX(100%); visibility: hidden; transition: transform .3s var(--ease), visibility .3s; }
  .primary-nav.is-open { transform: translateX(0); visibility: visible; }
  .nav-link { display: block; padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
  .nav-link::after { right: auto; bottom: 9px; width: 45px; }
  .nav-contact { display: block; }
  .cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .opportunity-grid, .insight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-grid > div:nth-child(4), .footer-grid > div:nth-child(5) { margin-top: 10px; }
}

@media (max-width: 940px) {
  .container, .container-narrow { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 84px 0; }
  .utility-copy { display: none; }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; grid-column: 3; }
  .header-actions .button { display: none; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .primary-nav { position: fixed; top: 108px; right: 0; bottom: 0; left: 0; display: block; padding: 24px 18px 50px; overflow-y: auto; background: var(--white); transform: translateX(100%); visibility: hidden; transition: transform .3s var(--ease), visibility .3s; }
  .primary-nav.is-open { transform: translateX(0); visibility: visible; }
  .nav-link { display: block; padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
  .nav-contact { display: block; }
  .nav-link::after { right: auto; bottom: 9px; width: 45px; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 600px; padding: 80px 38px; }
  .hero-copy::after { display: none; }
  .hero-media { min-height: 570px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-split, .form-layout, .legal-layout { grid-template-columns: 1fr; }
  .content-split-reverse .content-media { order: initial; }
  .legal-nav { position: static; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .process-grid::before { display: none; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-panel { min-height: 350px; }
  .split-feature { grid-template-columns: 1fr; }
  .split-copy { padding: 72px 36px; }
  .cta-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 700px) {
  .container, .container-narrow { width: min(calc(100% - 28px), var(--container)); }
  .utility-inner { justify-content: center; }
  .header-inner { gap: 10px; }
  .header-actions { gap: 8px; }
  .brand { width: 112px; height: 70px; }
  .brand img { width: 100px; }
  .primary-nav { top: 108px; }
  .section { padding: 70px 0; }
  .section-compact { padding: 56px 0; }
  h1 { font-size: clamp(2.45rem, 13vw, 3.65rem); }
  h2 { font-size: clamp(2rem, 9vw, 2.75rem); }
  .hero-copy { min-height: 570px; padding: 68px 20px; }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .hero-media { min-height: 470px; }
  .hero-network { top: 26px; right: 18px; width: 240px; }
  .hero-proof { right: 18px; bottom: 24px; }
  .trust-grid, .cards-2, .cards-3, .cards-4, .role-grid, .opportunity-grid, .insight-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 88px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 0; }
  .section-heading { margin-bottom: 36px; }
  .service-card { min-height: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { display: grid; grid-template-columns: 52px 1fr; gap: 18px; }
  .process-number { grid-row: 1 / 3; margin: 0; }
  .process-step p { grid-column: 2; }
  .audience-panel { min-height: 390px; padding: 38px 28px; }
  .page-hero { padding: 80px 0 76px; }
  .page-hero::after { opacity: .22; right: -40px; }
  .content-media, .content-media img { min-height: 360px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .form-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-inner { grid-template-columns: 1fr; }
  .dialog-inner { padding: 26px 20px; }
  .dialog-actions .button { width: 100%; }
}

@media (max-width: 420px) {
  .language-switch span { display: none; }
  .language-switch { gap: 5px; }
  .brand { width: 96px; height: 66px; }
  .brand img { width: 90px; }
  .menu-toggle { width: 43px; height: 43px; }
  .button-row .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
