
:root {
  --ink: #0b1729;
  --ink-2: #12233d;
  --ink-3: #1b3152;
  --text: #17233a;
  --muted: #607089;
  --muted-2: #7b889b;
  --line: #dfe6ec;
  --line-dark: rgba(255, 255, 255, .13);
  --surface: #ffffff;
  --soft: #f4f7f8;
  --soft-2: #eaf7f4;
  --accent: #24bfa1;
  --accent-strong: #09977d;
  --accent-light: #64e4cf;
  --blue: #5f7df7;
  --success: #087f65;
  --warning: #a05a00;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgba(11, 23, 41, .08);
  --shadow: 0 24px 70px rgba(11, 23, 41, .13);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 82px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body { margin: 0; color: var(--text); background: var(--surface); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p, h1, h2, h3, ul, ol, dl { margin-top: 0; }
h1, h2, h3 { color: var(--ink); font-weight: 760; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.3rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.22rem; }
p { color: var(--muted); }
::selection { background: var(--accent-light); color: var(--ink); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section--dark, .section--ink { color: #fff; background: var(--ink); }
.section--ink { background: linear-gradient(135deg, var(--ink) 0%, #102747 100%); }
.section--soft { background: var(--soft); }
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
.skip-link { position: fixed; z-index: 10000; top: 10px; left: 10px; transform: translateY(-160%); padding: 10px 14px; border-radius: 8px; background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.skip-link:focus { transform: translateY(0); }

.site-header { height: var(--header-height); position: sticky; top: 0; z-index: 1000; background: rgba(255, 255, 255, .93); border-bottom: 1px solid rgba(11, 23, 41, .07); backdrop-filter: blur(16px); transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(11, 23, 41, .08); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: grid; grid-template-columns: 42px auto; grid-template-rows: 22px 18px; column-gap: 10px; align-items: center; flex: none; }
.brand__mark { grid-row: 1 / 3; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--ink); background: linear-gradient(135deg, var(--accent-light), var(--accent)); font-weight: 900; box-shadow: inset 0 0 0 1px rgba(255,255,255,.45); }
.brand__mark span { transform: skewX(-8deg); font-size: 1.28rem; }
.brand__name { align-self: end; color: var(--ink); font-size: 1.05rem; font-weight: 850; letter-spacing: .06em; line-height: 1; }
.brand__descriptor { align-self: start; color: var(--muted); font-size: .69rem; font-weight: 600; letter-spacing: .02em; line-height: 1.2; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link { position: relative; padding: 10px 12px; color: #425169; font-size: .91rem; font-weight: 650; border-radius: 9px; transition: color .2s, background .2s; }
.nav__link:hover { color: var(--ink); background: var(--soft); }
.nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after { content: ""; position: absolute; height: 2px; left: 12px; right: 12px; bottom: 4px; background: var(--accent); border-radius: 2px; }
.nav__cta { margin-left: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--soft); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 13px 22px; border: 1px solid transparent; border-radius: 12px; font-weight: 750; font-size: .96rem; line-height: 1.2; transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s; }
.button svg, .text-link svg, .service-card a svg { width: 20px; height: 20px; transition: transform .2s; }
.button:hover { transform: translateY(-2px); }
.button:hover svg, .text-link:hover svg, .service-card a:hover svg { transform: translateX(4px); }
.button--primary { color: var(--ink); background: var(--accent-light); box-shadow: 0 12px 30px rgba(45, 212, 191, .18); }
.button--primary:hover { background: #8aefdf; box-shadow: 0 16px 36px rgba(45, 212, 191, .25); }
.button--small { min-height: 42px; padding: 10px 15px; font-size: .86rem; border-radius: 9px; }
.button--ghost-light { color: #fff; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.04); }
.button--ghost-light:hover { background: rgba(255,255,255,.1); }
.button--light { color: var(--ink); background: #fff; box-shadow: 0 14px 30px rgba(0,0,0,.12); }
.button--light:hover { background: #f3fffc; }
.text-link, .service-card a { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-strong); font-weight: 750; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--accent-strong); font-size: .76rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { display: block; width: 28px; height: 2px; background: currentColor; }
.eyebrow--light { color: var(--accent-light); }
.section-heading { margin-bottom: 54px; }
.section-heading h2 { max-width: 820px; margin-bottom: 0; }
.section-heading p { max-width: 620px; font-size: 1.08rem; margin-bottom: 0; }
.section-heading--split { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.section-heading--center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-heading--center p { margin-top: 20px; }

.hero { min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; overflow: hidden; padding: 80px 0 90px; background: radial-gradient(circle at 75% 28%, #173962 0%, var(--ink) 40%, #08111f 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .06; background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to right, transparent, #000 55%, #000); }
.hero__glow { position: absolute; width: 500px; height: 500px; top: 8%; right: 8%; border-radius: 50%; background: rgba(36,191,161,.15); filter: blur(120px); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr); gap: 72px; align-items: center; position: relative; z-index: 1; }
.hero h1 { max-width: 760px; color: #fff; margin-bottom: 28px; }
.hero__lead { max-width: 690px; color: #bac7d8; font-size: clamp(1.08rem, 2vw, 1.28rem); line-height: 1.7; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__reassurance { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 38px; color: #c9d5e3; font-size: .84rem; font-weight: 650; }
.hero__reassurance span { display: flex; align-items: center; gap: 7px; }
.hero__reassurance svg { width: 18px; color: var(--accent-light); }
.hero__visual { position: relative; min-height: 550px; display: grid; place-items: center; }
.dashboard-card { width: min(100%, 550px); padding: 26px; border: 1px solid rgba(255,255,255,.15); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.04)); box-shadow: 0 40px 100px rgba(0,0,0,.35); backdrop-filter: blur(14px); transform: perspective(1000px) rotateY(-4deg) rotateX(2deg); }
.dashboard-card__top { display: flex; justify-content: space-between; align-items: center; gap: 15px; padding-bottom: 20px; border-bottom: 1px solid var(--line-dark); }
.dashboard-card__top > div { display: flex; flex-direction: column; }
.dashboard-card__top strong { color: #fff; font-size: 1.13rem; }
.dashboard-card__label { color: #91a5bd; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; color: #cbfff5; background: rgba(36,191,161,.13); border: 1px solid rgba(100,228,207,.25); padding: 7px 10px; border-radius: 999px; font-size: .73rem; font-weight: 700; }
.status-pill i { width: 7px; height: 7px; background: var(--accent-light); border-radius: 50%; box-shadow: 0 0 0 4px rgba(100,228,207,.12); }
.dashboard-card__kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 18px 0; }
.kpi { padding: 16px; border: 1px solid var(--line-dark); border-radius: 14px; background: rgba(8,17,31,.45); }
.kpi span, .kpi small { display: block; color: #8fa2b8; font-size: .72rem; }
.kpi strong { display: block; color: #fff; font-size: 1.7rem; line-height: 1.2; margin: 4px 0; }
.dashboard-card__chart { padding: 18px; border: 1px solid var(--line-dark); border-radius: 14px; background: rgba(8,17,31,.42); }
.chart__head { display: flex; justify-content: space-between; align-items: center; color: #fff; font-size: .84rem; font-weight: 700; }
.chart__head small { color: #8fa2b8; font-weight: 500; }
.dashboard-card__chart svg { margin-top: 8px; }
.dashboard-card__tasks { margin-top: 16px; display: grid; gap: 8px; }
.dashboard-card__tasks > div { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,.06); }
.dashboard-card__tasks p { margin: 0; display: flex; flex-direction: column; }
.dashboard-card__tasks p strong { color: #fff; font-size: .8rem; }
.dashboard-card__tasks p small, .dashboard-card__tasks > div > span:last-child { color: #8fa2b8; font-size: .68rem; }
.task-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: #c5d2e0; background: rgba(255,255,255,.08); font-size: .72rem; font-style: normal; }
.task-icon svg { width: 18px; }
.task-icon--done { color: var(--accent-light); background: rgba(36,191,161,.14); }
.floating-note { position: absolute; display: flex; flex-direction: column; min-width: 125px; padding: 13px 16px; border-radius: 14px; color: #fff; background: rgba(18,35,61,.9); border: 1px solid rgba(255,255,255,.15); box-shadow: 0 18px 40px rgba(0,0,0,.25); backdrop-filter: blur(10px); }
.floating-note strong { font-size: 1.25rem; }
.floating-note span { color: #9fb0c4; font-size: .68rem; }
.floating-note--one { top: 34px; right: -20px; }
.floating-note--two { bottom: 30px; left: -25px; }

.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip__inner { min-height: 92px; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.trust-strip p { margin: 0; color: var(--muted); font-size: .79rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.trust-strip__inner div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.trust-strip span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #526177; font-size: .78rem; font-weight: 650; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 340px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-5px); border-color: #bfd0d8; box-shadow: var(--shadow); }
.service-card--featured { background: var(--ink); border-color: var(--ink); }
.service-card--featured h3, .service-card--featured a { color: #fff; }
.service-card--featured p { color: #aebdd0; }
.service-card__number { position: absolute; top: 28px; right: 30px; color: #a7b2c0; font-size: .74rem; font-weight: 800; letter-spacing: .12em; }
.service-card__icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; color: var(--accent-strong); background: var(--soft-2); }
.service-card__icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card--featured .service-card__icon { color: var(--accent-light); background: rgba(36,191,161,.13); }
.service-card h3 { font-size: 1.55rem; margin: 30px 0 14px; }
.service-card p { max-width: 520px; margin-bottom: 30px; }
.service-card a { position: absolute; left: 36px; bottom: 32px; }

.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.feature-split--reverse .feature-split__content { order: -1; }
.feature-split__content > p { font-size: 1.08rem; }
.process-visual { padding: 26px; border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.process-visual__head { display: flex; flex-direction: column; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.process-visual__head span { color: var(--accent-strong); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.process-visual__head strong { margin-top: 5px; color: var(--ink); font-size: 1.13rem; }
.process-visual ol { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; }
.process-visual li { display: grid; grid-template-columns: 42px 1fr 32px; align-items: center; gap: 12px; padding: 13px; border-radius: 12px; background: var(--soft); }
.process-visual li > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; color: var(--ink); background: #fff; font-weight: 800; font-size: .75rem; }
.process-visual li div { display: flex; flex-direction: column; }
.process-visual li strong { color: var(--ink); font-size: .87rem; }
.process-visual li small { color: var(--muted); font-size: .72rem; }
.process-visual li i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #65758c; border: 1px solid var(--line); font-size: .72rem; font-style: normal; }
.process-visual li i.is-done { color: var(--success); background: #e6f7f2; border-color: transparent; }
.process-visual li i svg { width: 18px; }
.check-list { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 15px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); }
.check-list li > svg { flex: none; width: 22px; height: 22px; margin-top: 2px; padding: 3px; color: var(--success); background: #e2f7f1; border-radius: 50%; }
.check-list strong { color: var(--ink); }

.expertise-banner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 85px; align-items: center; }
.expertise-banner h2, .expertise-banner h3 { color: #fff; }
.expertise-banner p { color: #b6c4d5; font-size: 1.08rem; margin-bottom: 30px; }
.expertise-banner__matrix { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.expertise-banner__matrix span { min-height: 76px; display: flex; align-items: center; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; color: #dce6f0; background: rgba(255,255,255,.05); font-weight: 700; }
.expertise-banner__matrix span:nth-child(1), .expertise-banner__matrix span:nth-child(6) { color: var(--ink); background: var(--accent-light); border-color: transparent; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-grid article { padding: 34px 30px; border-top: 3px solid var(--accent); background: var(--soft); }
.benefit-grid article > strong { color: var(--accent-strong); font-size: .76rem; letter-spacing: .12em; }
.benefit-grid h3 { margin: 28px 0 12px; font-size: 1.4rem; }
.benefit-grid p { margin-bottom: 0; }

.section--cta { padding-top: 40px; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 60px; padding: 56px 60px; border-radius: 28px; color: #fff; background: linear-gradient(120deg, var(--accent-strong), #0d6f79); overflow: hidden; }
.cta-panel::after { content: ""; position: absolute; width: 340px; height: 340px; right: 9%; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.04), 0 0 0 120px rgba(255,255,255,.025); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { color: #fff; max-width: 760px; margin-bottom: 12px; }
.cta-panel p { color: #d5fff7; max-width: 720px; margin-bottom: 0; }
.cta-panel .button { flex: none; }

.page-hero { padding: 105px 0 110px; overflow: hidden; background: radial-gradient(circle at 80% 10%, #1a456d 0%, var(--ink) 46%, #08111f 100%); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .05; background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 58px 58px; }
.page-hero__inner, .page-hero__grid { position: relative; z-index: 1; }
.page-hero__inner { max-width: 970px; }
.page-hero h1 { color: #fff; margin-bottom: 25px; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.page-hero p { max-width: 760px; margin-bottom: 0; color: #b9c7d8; font-size: 1.17rem; }
.page-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.page-hero__grid .button { margin-top: 24px; }

.long-services { display: grid; gap: 0; }
.long-service { display: grid; grid-template-columns: 180px 1fr; gap: 55px; padding: 80px 0; border-bottom: 1px solid var(--line); }
.long-service:first-child { padding-top: 0; }
.long-service:last-child { border-bottom: 0; padding-bottom: 0; }
.long-service__aside { padding-top: 8px; }
.long-service__aside span { display: block; color: var(--accent-strong); font-size: 2.2rem; font-weight: 800; letter-spacing: -.05em; }
.long-service__aside p { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.long-service__content > h2 { max-width: 800px; }
.lead { max-width: 850px; font-size: 1.12rem; }
.deliverable-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 36px; }
.deliverable-grid > div { padding: 26px; border-radius: 16px; background: var(--soft); }
.deliverable-grid h3 { margin-bottom: 14px; }
.deliverable-grid ul { padding-left: 18px; margin-bottom: 0; color: var(--muted); }
.deliverable-grid li + li { margin-top: 7px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; }
.tag-list span { padding: 9px 13px; border-radius: 999px; color: var(--ink); background: var(--soft); border: 1px solid var(--line); font-size: .86rem; font-weight: 650; }
.notice { margin-top: 32px; padding: 24px 26px; border-left: 4px solid var(--accent); background: var(--soft-2); }
.notice strong { color: var(--ink); }
.notice p { margin: 5px 0 0; }
.metric-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 34px; }
.metric-cards > div { padding: 26px; border: 1px solid var(--line); border-radius: 16px; }
.metric-cards span, .metric-cards small { display: block; color: var(--muted); font-size: .78rem; }
.metric-cards span { color: var(--accent-strong); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.metric-cards strong { display: block; margin: 8px 0; color: var(--ink); font-size: 1.16rem; }
.numbered-list { list-style: none; padding: 0; margin: 34px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.numbered-list li { display: flex; align-items: flex-start; gap: 15px; padding: 24px; border-radius: 16px; background: var(--soft); }
.numbered-list li > span { flex: none; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--ink); background: var(--accent-light); font-weight: 850; }
.numbered-list h3 { margin: 2px 0 5px; }
.numbered-list p { margin: 0; }
.scope-panel { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 52px; border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.scope-panel h2 { max-width: 770px; }
.scope-panel p { max-width: 820px; margin-bottom: 0; }
.scope-panel .button { flex: none; }

.sector-orbit { position: relative; width: 440px; aspect-ratio: 1; margin-inline: auto; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.sector-orbit::before, .sector-orbit::after { content: ""; position: absolute; inset: 16%; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.sector-orbit::after { inset: 33%; }
.sector-orbit__center { position: absolute; inset: 35%; display: grid; place-items: center; align-content: center; border-radius: 50%; color: var(--ink); background: var(--accent-light); box-shadow: 0 20px 60px rgba(36,191,161,.25); }
.sector-orbit__center strong { font-size: .75rem; letter-spacing: .12em; }
.sector-orbit__center span { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.sector-orbit > span:not(.sector-orbit__center) { --angle: calc(var(--i) * 60deg); position: absolute; left: 50%; top: 50%; transform: rotate(var(--angle)) translateX(180px) rotate(var(--counter-angle)) translate(-50%, -50%); min-width: 88px; padding: 9px 12px; text-align: center; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #dce5ef; background: rgba(11,23,41,.8); font-size: .76rem; font-weight: 700; }

.sector-orbit > span:nth-of-type(1) { --angle: 0deg; --counter-angle: 0deg; }
.sector-orbit > span:nth-of-type(2) { --angle: 60deg; --counter-angle: -60deg; }
.sector-orbit > span:nth-of-type(3) { --angle: 120deg; --counter-angle: -120deg; }
.sector-orbit > span:nth-of-type(4) { --angle: 180deg; --counter-angle: -180deg; }
.sector-orbit > span:nth-of-type(5) { --angle: 240deg; --counter-angle: -240deg; }
.sector-orbit > span:nth-of-type(6) { --angle: 300deg; --counter-angle: -300deg; }

.risk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.risk-grid article { min-height: 250px; padding: 30px; border: 1px solid var(--line); border-radius: 16px; transition: transform .2s, box-shadow .2s; }
.risk-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.risk-grid span { color: var(--accent-strong); font-size: .75rem; font-weight: 850; }
.risk-grid h3 { margin: 55px 0 12px; }
.risk-grid p { margin-bottom: 0; }
.control-table { padding: 26px; border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.control-table > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 4px; border-bottom: 1px solid var(--line); }
.control-table > div:last-child { border: 0; }
.control-table__header { padding: 0 4px 18px!important; }
.control-table__header strong { color: var(--ink); font-size: 1.16rem; }
.control-table__header span { color: var(--muted); font-size: .75rem; }
.control-table > div > span { color: var(--muted); }
.control-table > div > strong { padding: 5px 9px; border-radius: 7px; font-size: .75rem; }
.control-table .ok { color: var(--success); background: #e5f7f1; }
.control-table .warn { color: var(--warning); background: #fff3da; }
.control-table .wait { color: #5d65a9; background: #eef0ff; }
.proof-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.proof-panel h2 { color: #fff; }
.proof-panel p { color: #b6c4d5; }
.proof-panel__stats { display: grid; gap: 14px; }
.proof-panel__stats > div { display: grid; grid-template-columns: 100px 1fr; align-items: center; gap: 20px; padding: 20px; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.proof-panel__stats strong { color: var(--accent-light); font-size: 1.55rem; }
.proof-panel__stats span { color: #d5dfeb; font-size: .9rem; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.timeline::before { content: ""; position: absolute; top: 26px; left: 9%; right: 9%; height: 1px; background: var(--line); }
.timeline article { position: relative; z-index: 1; }
.timeline article > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--accent-light); border: 8px solid #fff; font-size: .74rem; font-weight: 850; }
.timeline article > div { margin-top: 28px; padding-right: 15px; }
.timeline small { color: var(--accent-strong); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.timeline h3 { margin: 9px 0 10px; }
.monthly-cycle { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.monthly-cycle__axis { position: absolute; left: 8%; right: 8%; top: 48px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--blue)); }
.monthly-cycle article { position: relative; padding: 84px 24px 26px; border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); }
.monthly-cycle article::before { content: ""; position: absolute; top: 40px; left: 27px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent-light); border: 4px solid #fff; box-shadow: 0 0 0 2px var(--accent); }
.monthly-cycle article > span { color: var(--accent-strong); font-size: .74rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.monthly-cycle h3 { margin: 9px 0; }
.monthly-cycle p { min-height: 115px; }
.monthly-cycle small { color: var(--ink); font-weight: 700; }
.governance-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.governance-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.governance-list article { display: flex; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: 14px; }
.governance-list article > span { color: var(--accent-strong); font-size: .72rem; font-weight: 850; }
.governance-list h3 { margin-bottom: 6px; }
.governance-list p { margin: 0; }
.security-principles h2 { color: #fff; max-width: 750px; }
.security-principles__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 50px; }
.security-principles__grid article { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.04); }
.security-principles__grid h3 { color: #fff; }
.security-principles__grid p { color: #afbdd0; margin: 0; }

.founder-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: center; }
.founder-card { min-height: 520px; padding: 38px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 24px; color: #fff; background: radial-gradient(circle at 70% 20%, #26557d 0%, var(--ink) 52%, #07101e 100%); box-shadow: var(--shadow); }
.founder-card__initials { align-self: center; width: 210px; height: 210px; display: grid; place-items: center; margin-top: 40px; border-radius: 50%; color: var(--accent-light); border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.05); font-size: 4.5rem; font-weight: 850; letter-spacing: -.08em; }
.founder-card > div:last-child { display: flex; flex-direction: column; }
.founder-card span, .founder-card small { color: #a8b9cb; }
.founder-card strong { font-size: 1.45rem; }
.founder-copy > p { font-size: 1.04rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.values-grid article { padding: 28px; border-radius: 16px; background: #fff; }
.values-grid span { color: var(--accent-strong); font-size: .74rem; font-weight: 850; }
.values-grid h3 { margin: 40px 0 10px; }
.values-grid p { margin: 0; }
.positioning { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.positioning p { font-size: 1.05rem; }

.page-hero--form { padding-bottom: 95px; }
.form-reassurance { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; color: #d8e3ee; font-size: .82rem; font-weight: 650; }
.form-reassurance span { display: flex; align-items: center; gap: 7px; }
.form-reassurance svg { width: 18px; color: var(--accent-light); }
.contact-summary { padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.06); }
.contact-summary > strong { color: #fff; font-size: 1.18rem; }
.contact-summary p, .contact-summary li { color: #bdcad9; }
.contact-summary ul { padding-left: 20px; }
.contact-summary a { color: var(--accent-light); font-weight: 750; }
.form-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 60px; align-items: start; }
.form-aside { position: sticky; top: calc(var(--header-height) + 30px); }
.form-aside ol { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 16px; }
.form-aside li { display: flex; align-items: center; gap: 12px; }
.form-aside li > span { flex: none; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; color: var(--ink); background: var(--soft-2); font-weight: 850; }
.form-aside li div { display: flex; flex-direction: column; }
.form-aside li strong { color: var(--ink); }
.form-aside li small { color: var(--muted); }
.privacy-mini { padding: 20px; border-radius: 14px; background: var(--soft); }
.privacy-mini strong { color: var(--ink); }
.privacy-mini p { margin: 6px 0 0; font-size: .86rem; }
.form-card { padding: 42px; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-sm); }
.form-card form { display: grid; gap: 38px; }
.form-card fieldset { border: 0; padding: 0; margin: 0; }
.form-card legend { width: 100%; padding-bottom: 14px; margin-bottom: 22px; color: var(--ink); border-bottom: 1px solid var(--line); font-size: 1.22rem; font-weight: 800; letter-spacing: -.02em; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .field-label { color: var(--ink); font-size: .88rem; font-weight: 700; }
.field label span, .field-label span, .consent strong { color: var(--danger); }
.field input, .field select, .field textarea { width: 100%; color: var(--ink); background: #fff; border: 1px solid #cbd5df; border-radius: 10px; padding: 12px 13px; transition: border-color .2s, box-shadow .2s; }
.field textarea { resize: vertical; min-height: 170px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #9eacbb; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--accent-strong); box-shadow: 0 0 0 4px rgba(36,191,161,.12); }
.field input.is-invalid, .field select.is-invalid, .field textarea.is-invalid { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(180,35,24,.08); }
.field > small, .form-legal { color: var(--muted-2); font-size: .74rem; }
.field-error { min-height: 1em; color: var(--danger)!important; }
.field-meta { display: flex; justify-content: space-between; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.checkbox-grid label { display: flex; align-items: center; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; transition: border-color .2s, background .2s; }
.checkbox-grid label:hover { border-color: #aab9c7; background: var(--soft); }
.checkbox-grid input, .consent input { width: 18px; height: 18px; accent-color: var(--accent-strong); flex: none; }
.checkbox-grid span { color: var(--text); font-size: .87rem; }
.consent { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); font-size: .84rem; cursor: pointer; }
.consent input { margin-top: 3px; }
.consent a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; }
.button--submit { justify-self: start; border: 0; }
.form-legal { margin: -20px 0 0; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { margin-bottom: 28px; padding: 18px 20px; border-radius: 12px; }
.alert strong { color: var(--ink); }
.alert p { margin: 4px 0 0; }
.alert--success { background: #e5f7f1; border: 1px solid #b5e6d8; }
.alert--error { background: #fff0ee; border: 1px solid #f0c2bc; }

.page-hero--legal { padding: 80px 0; }
.page-hero--legal h1 { font-size: clamp(2.5rem, 4.5vw, 4rem); }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 820px); gap: 70px; align-items: start; justify-content: center; }
.legal-toc { position: sticky; top: calc(var(--header-height) + 30px); display: flex; flex-direction: column; padding: 20px; border: 1px solid var(--line); border-radius: 14px; }
.legal-toc strong { margin-bottom: 12px; color: var(--ink); }
.legal-toc a { padding: 8px 0; color: var(--muted); font-size: .88rem; }
.legal-toc a:hover { color: var(--accent-strong); }
.legal-content section { padding: 0 0 38px; margin-bottom: 38px; border-bottom: 1px solid var(--line); }
.legal-content h2 { font-size: 1.75rem; }
.legal-content p, .legal-content li { color: #4e5e75; }
.legal-content a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; }
.legal-content dl { margin: 24px 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.legal-content dl > div { display: grid; grid-template-columns: 210px 1fr; border-bottom: 1px solid var(--line); }
.legal-content dl > div:last-child { border: 0; }
.legal-content dt, .legal-content dd { padding: 14px 16px; margin: 0; }
.legal-content dt { color: var(--ink); background: var(--soft); font-weight: 700; }
.legal-content mark { padding: 2px 5px; color: #7a4a00; background: #fff1cf; border-radius: 4px; }
.legal-warning { padding: 22px; margin-bottom: 36px; border-left: 4px solid #e79b20; background: #fff8e8; }
.legal-warning strong { color: var(--ink); }
.legal-warning p { margin: 5px 0 0; }
.inline-warning { padding: 14px 16px; border-radius: 10px; background: #fff8e8; }
.legal-table { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.legal-table > div { display: grid; grid-template-columns: 1.4fr .8fr; }
.legal-table > div + div { border-top: 1px solid var(--line); }
.legal-table span, .legal-table strong { padding: 14px 16px; }
.legal-table strong { background: var(--soft); color: var(--ink); }
.legal-table span + span, .legal-table strong + strong { border-left: 1px solid var(--line); }
.legal-date { color: var(--muted-2)!important; font-size: .82rem; }

.error-page { min-height: calc(100vh - var(--header-height)); display: grid; place-items: center; }
.error-page__inner { text-align: center; }
.error-page__inner > span { color: var(--accent-light); font-size: 6rem; font-weight: 900; line-height: 1; }
.error-page h1 { color: #fff; }
.error-page p { color: #b4c2d3; }
.error-page__inner > div { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }

.site-footer { padding: 72px 0 24px; color: #dbe5ef; background: #07111f; }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 55px; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__descriptor, .site-footer .footer__brand p { color: #8fa2b8; }
.footer__brand p { max-width: 350px; margin: 24px 0 10px; }
.footer__email { color: var(--accent-light); font-weight: 700; }
.footer__title { color: #fff; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; }
.site-footer .footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; gap: 9px; }
.site-footer .footer__grid > div:not(.footer__brand) a, .footer__note { color: #97a8bb; font-size: .86rem; }
.site-footer a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 28px; margin-top: 52px; border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom p { margin: 0; color: #71859c; font-size: .76rem; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="50"] { --reveal-delay: 50ms; }
[data-reveal-delay="60"] { --reveal-delay: 60ms; }
[data-reveal-delay="100"] { --reveal-delay: 100ms; }
[data-reveal-delay="120"] { --reveal-delay: 120ms; }
[data-reveal-delay="150"] { --reveal-delay: 150ms; }
[data-reveal-delay="180"] { --reveal-delay: 180ms; }
[data-reveal-delay="200"] { --reveal-delay: 200ms; }
[data-reveal-delay="250"] { --reveal-delay: 250ms; }


@media (max-width: 1080px) {
  :root { --header-height: 74px; }
  .menu-toggle { display: flex; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .nav { position: fixed; inset: var(--header-height) 0 auto; max-height: 0; overflow: hidden; display: flex; flex-direction: column; align-items: stretch; gap: 2px; padding: 0 20px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: max-height .3s ease, padding .3s ease; }
  .nav.is-open { max-height: calc(100vh - var(--header-height)); padding-top: 18px; padding-bottom: 22px; overflow-y: auto; }
  .nav__link { padding: 13px; }
  .nav__link.is-active::after { display: none; }
  .nav__cta { margin: 10px 0 0; }
  .hero__grid, .page-hero__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 90px; }
  .hero__content { max-width: 800px; }
  .hero__visual { width: min(100%, 650px); margin-inline: auto; }
  .section-heading--split { grid-template-columns: 1fr; gap: 24px; }
  .feature-split, .expertise-banner, .proof-panel, .founder-grid, .positioning { gap: 55px; }
  .risk-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline, .monthly-cycle, .security-principles__grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before, .monthly-cycle__axis { display: none; }
  .monthly-cycle article { padding-top: 30px; }
  .monthly-cycle article::before { display: none; }
  .monthly-cycle p { min-height: auto; }
  .footer__grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer__grid > div:last-child { grid-column: 2 / 3; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .brand { grid-template-columns: 40px auto; }
  .brand__descriptor { display: none; }
  .brand__name { align-self: center; grid-row: 1 / 3; }
  .hero__grid { gap: 30px; }
  .hero__visual { min-height: 480px; }
  .dashboard-card { transform: none; }
  .floating-note--one { right: 0; }
  .floating-note--two { left: 0; }
  .trust-strip__inner { flex-direction: column; align-items: flex-start; padding: 24px 0; }
  .trust-strip__inner div { justify-content: flex-start; }
  .service-grid, .feature-split, .expertise-banner, .benefit-grid, .proof-panel, .founder-grid, .positioning, .governance-grid { grid-template-columns: 1fr; }
  .feature-split--reverse .feature-split__content { order: initial; }
  .expertise-banner__matrix { grid-template-columns: repeat(3, 1fr); }
  .cta-panel { flex-direction: column; align-items: flex-start; padding: 42px 34px; }
  .long-service { grid-template-columns: 1fr; gap: 20px; }
  .long-service__aside { display: flex; align-items: center; gap: 12px; }
  .long-service__aside p { margin: 0; }
  .scope-panel { flex-direction: column; align-items: flex-start; }
  .page-hero__grid { gap: 45px; }
  .sector-orbit { width: min(100%, 420px); }
  .form-layout { grid-template-columns: 1fr; }
  .form-aside { position: static; }
  .legal-layout { grid-template-columns: 1fr; gap: 35px; }
  .legal-toc { position: static; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__grid > div:last-child { grid-column: auto; }
}

@media (max-width: 580px) {
  h1 { font-size: 2.62rem; }
  h2 { font-size: 2.05rem; }
  .section { padding: 68px 0; }
  .hero { min-height: auto; padding: 72px 0; }
  .hero__actions, .hero__actions .button, .page-hero .button { width: 100%; }
  .hero__reassurance { display: grid; gap: 10px; }
  .hero__visual { min-height: 420px; margin-top: 10px; }
  .dashboard-card { padding: 16px; }
  .dashboard-card__top { align-items: flex-start; }
  .status-pill { font-size: .66rem; }
  .dashboard-card__kpis { gap: 8px; }
  .kpi { padding: 12px; }
  .kpi strong { font-size: 1.35rem; }
  .floating-note { display: none; }
  .service-grid, .deliverable-grid, .metric-cards, .numbered-list, .risk-grid, .timeline, .monthly-cycle, .governance-list, .security-principles__grid, .values-grid, .form-grid, .checkbox-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 380px; padding: 28px; }
  .service-card a { left: 28px; }
  .expertise-banner__matrix { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { padding: 35px 25px; }
  .scope-panel { padding: 30px 24px; }
  .sector-orbit { width: 310px; }
  .sector-orbit > span:not(.sector-orbit__center) { transform: rotate(var(--angle)) translateX(126px) rotate(var(--counter-angle)) translate(-50%, -50%); min-width: 70px; padding: 7px 8px; font-size: .65rem; }
  .proof-panel__stats > div { grid-template-columns: 78px 1fr; }
  .founder-card { min-height: 430px; padding: 28px; }
  .founder-card__initials { width: 170px; height: 170px; font-size: 3.6rem; }
  .form-card { padding: 24px 20px; }
  .legal-content dl > div, .legal-table > div { grid-template-columns: 1fr; }
  .legal-content dt { border-bottom: 1px solid var(--line); }
  .legal-table span + span, .legal-table strong + strong { border-left: 0; border-top: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; }
  .error-page__inner > div { flex-direction: column; }
}

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


/* Static Starter form */
.static-form-note { margin-bottom: 1.25rem; }
.static-mail-fallback { margin-top: 1.5rem; }
.static-mail-fallback textarea { width: 100%; margin-top: .75rem; resize: vertical; }
.static-mail-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1rem; }
.copy-status { min-height: 1.4em; margin-top: .65rem; font-size: .9rem; }
.alert--info { background: #f3f7fb; border: 1px solid #d8e4ef; color: #0b1729; padding: 1rem 1.1rem; border-radius: 12px; }
