/* ==========================================================================
   Loredana Năstase — consulting site
   Palette:  Ink #152228 · Harbor #0F3D46 · Current #1B7F8C · Signal #E8A33D
             Seafoam #DCEBE8 · Mist #F7FAF9
   Type:     Bricolage Grotesque (display) + Inter (body)
   ========================================================================== */

/* Self-hosted fonts (GDPR: no Google CDN requests). Variable woff2, latin + latin-ext (RO diacritics). */
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/bricolage-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/bricolage-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #152228;
  --harbor: #0F3D46;
  --current: #1B7F8C;
  --current-ink: #12616C;   /* darker teal for small text on light bg (AA) */
  --signal: #E8A33D;
  --signal-soft: #F6E3C3;
  --seafoam: #DCEBE8;
  --mist: #F7FAF9;
  --white: #FFFFFF;
  --muted: #4A5B60;

  --font-display: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(15, 61, 70, .08);
  --shadow-md: 0 10px 30px -12px rgba(15, 61, 70, .22);
  --container: 1120px;
  --header-h: 72px;
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  /* faint dot grid over mist — quiet tech texture on light sections */
  background:
    radial-gradient(circle, rgba(15, 61, 70, .05) 1px, transparent 1.4px) 0 0 / 26px 26px,
    var(--mist);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--current-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--harbor); }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  color: var(--harbor);
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.75rem, 1.3rem + 2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--current);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--harbor); color: var(--white);
  padding: .6rem 1rem; border-radius: 0 0 8px 8px;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.8; flex: none; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--current-ink);
  margin-bottom: .75rem;
}
.eyebrow-light { color: var(--signal); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-sub { color: var(--muted); margin-top: .9rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: .72rem 1.35rem; border-radius: 999px;
  text-decoration: none; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: .95rem 1.7rem; font-size: 1.06rem; }
.btn-primary { background: linear-gradient(180deg, #F0B355, var(--signal)); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: linear-gradient(180deg, #F5C273, #F0B355); color: var(--ink); box-shadow: 0 8px 28px -6px rgba(232, 163, 61, .55); transform: translateY(-1px); }
.btn-signal { background: linear-gradient(180deg, #F0B355, var(--signal)); color: var(--ink); }
.btn-signal:hover { background: linear-gradient(180deg, #F5C273, #F0B355); color: var(--ink); box-shadow: 0 8px 28px -6px rgba(232, 163, 61, .55); transform: translateY(-1px); }
.btn-ghost { border-color: var(--current); color: var(--current-ink); background: transparent; }
.btn-ghost:hover { background: var(--seafoam); color: var(--harbor); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--mist) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--seafoam); box-shadow: var(--shadow-sm); }

/* transparent header floating over the dark hero; solidifies on scroll */
body.has-dark-hero .site-header:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
}
body.has-dark-hero .site-header:not(.is-scrolled) .brand-name { color: var(--white); }
body.has-dark-hero .site-header:not(.is-scrolled) .brand-mark { stroke: #7FD4DF; }
body.has-dark-hero .site-header:not(.is-scrolled) .nav-toggle-bar { background: var(--white); }
@media (min-width: 900px) {
  body.has-dark-hero .site-header:not(.is-scrolled) .site-nav ul a { color: #DCEBE8; }
  body.has-dark-hero .site-header:not(.is-scrolled) .site-nav ul a:hover { color: var(--white); }
  body.has-dark-hero .site-header:not(.is-scrolled) .nav-lang a { color: #9FC3BF; }
  body.has-dark-hero .site-header:not(.is-scrolled) .nav-lang a:hover { background: rgba(255,255,255,.12); color: var(--white); }
  body.has-dark-hero .site-header:not(.is-scrolled) .nav-lang .lang-current { background: rgba(255,255,255,.16); color: var(--white); }
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--harbor); white-space: nowrap; }
.brand-mark { width: 38px; stroke: var(--current); stroke-width: 2; fill: none; }
.brand-mark .brand-node { fill: var(--signal); stroke: none; }
.brand-mark .brand-dot { fill: var(--current); stroke: none; }
.brand-light .brand-name { color: var(--white); }

.site-nav { display: flex; align-items: center; gap: 1.25rem; margin-left: auto; }
.site-nav ul { display: flex; gap: 1.25rem; list-style: none; padding: 0; }
.site-nav ul a {
  font-weight: 500; font-size: .95rem; color: var(--ink);
  text-decoration: none; padding: .3rem 0;
}
.site-nav ul a:hover { color: var(--current-ink); }

.nav-lang { display: flex; gap: .15rem; }
.nav-lang a, .footer-lang a {
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  text-decoration: none; color: var(--muted);
  padding: .25rem .45rem; border-radius: 6px;
}
.nav-lang a:hover, .footer-lang a:hover { background: var(--seafoam); color: var(--harbor); }
.nav-lang .lang-current, .footer-lang .lang-current { color: var(--harbor); background: var(--seafoam); }

.nav-toggle { display: none; }

/* ---------- hero (dark, aurora) ---------- */
.hero {
  position: relative;
  background: linear-gradient(175deg, #081E24 0%, #0C3038 48%, #0F3D46 100%);
  color: var(--white);
  padding-block: clamp(4.5rem, 9vw, 7.5rem) clamp(3rem, 7vw, 5.5rem);
  margin-top: calc(var(--header-h) * -1);   /* slide under the transparent header */
  padding-top: calc(clamp(4.5rem, 9vw, 7.5rem) + var(--header-h));
  overflow: hidden;
}

/* aurora: three slow-drifting blurred light fields, GPU-only transforms */
.aurora { position: absolute; inset: 0; pointer-events: none; }
.aurora-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); will-change: transform;
  mix-blend-mode: screen;
}
.aurora-a {
  width: 55vw; height: 55vw; max-width: 780px; max-height: 780px;
  left: -12%; top: -30%;
  background: radial-gradient(closest-side, rgba(27, 127, 140, .75), transparent 70%);
  animation: drift-a 21s ease-in-out infinite alternate;
}
.aurora-b {
  width: 48vw; height: 48vw; max-width: 680px; max-height: 680px;
  right: -10%; top: -12%;
  background: radial-gradient(closest-side, rgba(127, 212, 223, .38), transparent 70%);
  animation: drift-b 17s ease-in-out infinite alternate;
}
.aurora-c {
  width: 38vw; height: 38vw; max-width: 540px; max-height: 540px;
  right: 12%; bottom: -35%;
  background: radial-gradient(closest-side, rgba(232, 163, 61, .30), transparent 70%);
  animation: drift-c 25s ease-in-out infinite alternate;
}
@keyframes drift-a { to { transform: translate(14vw, 12%) scale(1.15); } }
@keyframes drift-b { to { transform: translate(-10vw, 18%) scale(.92); } }
@keyframes drift-c { to { transform: translate(-8vw, -22%) scale(1.12); } }

.hero .container { position: relative; z-index: 1; }
.hero .eyebrow { color: #8FD8E2; }
.hero .hero-title { color: var(--white); }
.hero .hero-word:last-child { color: var(--signal); }
.hero .hero-sub { color: #C3DAD8; }
.hero .cta-note { color: #8FB0AC; }
.hero .btn-ghost { border-color: rgba(255, 255, 255, .45); color: #E6F2F0; }
.hero .btn-ghost:hover { background: rgba(255, 255, 255, .1); color: var(--white); }
.hero .badge {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .18);
  color: #DCEBE8;
  backdrop-filter: blur(4px);
  box-shadow: none;
}
/* glowing flow line on dark */
.hero .flow-tangle { stroke: #6FCFDB; filter: drop-shadow(0 0 6px rgba(111, 207, 219, .55)); }
.hero .flow-dot { fill: #0C3038; stroke: #6FCFDB; }
.hero .flow-dot-final { fill: var(--signal); stroke: #F3C67F; filter: drop-shadow(0 0 8px rgba(232, 163, 61, .7)); }
.hero .flow-label { fill: #A8CFD4; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero-title {
  font-size: clamp(2.5rem, 2rem + 3.5vw, 4.2rem);
  font-weight: 800;
  display: flex; flex-direction: column;
}
.hero-word {
  opacity: 0; transform: translateY(.35em);
  animation: rise .6s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(.15s + var(--i) * .12s);
}
.hero-word:last-child { color: var(--current); }
@keyframes rise { to { opacity: 1; transform: none; } }

.hero-sub { max-width: 34rem; color: var(--muted); font-size: 1.12rem; margin-top: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

.cta-note { margin-top: .8rem; font-size: .9rem; color: var(--muted); }

.badge-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.8rem; }
.badge {
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  color: var(--harbor); background: var(--white);
  border: 1px solid var(--seafoam);
  padding: .35rem .8rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}

/* signature flow visual */
.hero-visual { min-width: 0; }
.flow-svg { width: 100%; height: auto; }
.flow-tangle {
  fill: none; stroke: var(--current); stroke-width: 3.5; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: draw 1.6s cubic-bezier(.45,0,.2,1) .2s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.flow-node { opacity: 0; animation: pop .45s cubic-bezier(.2,.7,.3,1.4) forwards; animation-delay: calc(.9s + var(--i) * .22s); }
@keyframes pop { from { opacity: 0; transform: scale(.4); transform-origin: center; transform-box: fill-box; } to { opacity: 1; } }
.flow-dot { fill: var(--mist); stroke: var(--current); stroke-width: 3; }
.flow-dot-final { fill: var(--signal); stroke: var(--harbor); }
.flow-label {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  fill: var(--current-ink);
}

/* ---------- trust strip ---------- */
.trust { background: var(--white); border-block: 1px solid var(--seafoam); padding-block: 1.9rem; }
.trust-row, .trust-certs { display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem 1.6rem; }
.trust-certs { margin-top: .9rem; }
.trust-heading {
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted); flex: none;
}
.trust-logos { display: flex; flex-wrap: wrap; gap: .5rem 2rem; }
.trust-logos li {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--harbor); opacity: .82;
}
.cert-list { display: flex; flex-wrap: wrap; gap: .45rem; }
.cert-list li {
  font-size: .82rem; font-weight: 500; color: var(--current-ink);
  background: var(--seafoam); padding: .22rem .7rem; border-radius: 999px;
}

/* ---------- services ---------- */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.service-card {
  background: var(--white); border: 1px solid var(--seafoam);
  border-radius: var(--radius-lg); padding: 1.7rem 1.7rem 1.4rem;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(15, 61, 70, .3);
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--current), var(--signal));
  opacity: .85;
}
.service-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; }
.service-icon {
  display: grid; place-items: center; width: 46px; height: 46px; flex: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--seafoam), #C2E4DE 60%, #F2DDB9);
  color: var(--harbor);
}
.service-icon .icon { width: 22px; height: 22px; }

/* subcategories as a mini-flow: node dots joined by a dashed line */
.service-subs li { position: relative; padding: 0 0 1.05rem 1.7rem; }
.service-subs li::before {
  content: ""; position: absolute; left: 4px; top: .48em;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--white); border: 2.5px solid var(--current);
}
.service-subs li::after {
  content: ""; position: absolute; left: 8px; top: calc(.48em + 14px); bottom: 2px;
  border-left: 2px dashed color-mix(in srgb, var(--current) 35%, transparent);
}
.service-subs li:last-child { padding-bottom: .2rem; }
.service-subs li:last-child::after { display: none; }
.service-subs li:last-child::before { background: var(--signal); border-color: var(--signal); }
.service-subs strong { font-weight: 600; font-size: .98rem; color: var(--ink); }
.service-subs p { color: var(--muted); font-size: .9rem; line-height: 1.55; margin-top: .15rem; }

.cta-banner {
  margin-top: 2.4rem; padding: 1.5rem 1.8rem;
  background: var(--seafoam); border-radius: var(--radius-lg);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.cta-banner p { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--harbor); }

/* ---------- POC ---------- */
.poc { padding-top: 0; }
.poc-card {
  background: linear-gradient(160deg, #0C3038, var(--harbor)); color: var(--white);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem);
  display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  position: relative; overflow: hidden;
}
.poc-card::before {
  content: ""; position: absolute; right: -18%; bottom: -55%;
  width: 34rem; height: 34rem; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(232, 163, 61, .32), transparent 70%);
  filter: blur(60px); mix-blend-mode: screen; pointer-events: none;
  animation: drift-c 23s ease-in-out infinite alternate;
}
.poc-card::after {
  content: ""; position: absolute; left: -12%; top: -50%;
  width: 28rem; height: 28rem; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(111, 207, 219, .28), transparent 70%);
  filter: blur(60px); mix-blend-mode: screen; pointer-events: none;
  animation: drift-b 19s ease-in-out infinite alternate;
}
.poc-copy, .poc-points { position: relative; z-index: 1; }
.poc-card h2 { color: var(--white); margin-bottom: .9rem; }
.poc-card p { color: #CFE0DE; }
.poc-copy .btn { margin-top: 1.5rem; }
.poc-points { display: grid; gap: .9rem; }
.poc-points li {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-display); font-weight: 600;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: .85rem 1.1rem; border-radius: var(--radius);
}
.poc-points .icon { color: var(--signal); }

/* ---------- fit check ---------- */
.fit { padding-top: 0; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.fit-card {
  border-radius: var(--radius-lg); padding: 1.7rem 1.8rem;
  background: var(--white); border: 1px solid var(--seafoam); box-shadow: var(--shadow-sm);
}
.fit-card h3 { margin-bottom: 1rem; font-size: 1.08rem; }
.fit-card .check-list { gap: .7rem; }
.fit-yes { border-top: 4px solid var(--current); }
.fit-no { border-top: 4px solid #C9A05A; background: var(--mist); }
.x-list .icon { color: #B4762A; }

/* ---------- process ---------- */
.process { background: var(--white); border-block: 1px solid var(--seafoam); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  counter-reset: step; padding: 0; list-style: none;
}
.process-step { position: relative; padding-top: .4rem; }
.process-step::before {
  /* connector between step numbers: animated data-flow dashes */
  content: ""; position: absolute; top: 21px; left: 54px; right: -1.4rem; height: 2px;
  background: repeating-linear-gradient(90deg,
    color-mix(in srgb, var(--current) 45%, transparent) 0 7px, transparent 7px 14px);
  animation: flow-dash 1.4s linear infinite;
}
@keyframes flow-dash { to { background-position: 14px 0; } }
.process-step:last-child::before { display: none; }
.step-num {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--seafoam); color: var(--harbor);
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  border: 2px solid var(--current); position: relative; z-index: 1;
}
.process-step:last-child .step-num { background: var(--signal); border-color: var(--signal); }
.process-step h3 { margin: .9rem 0 .4rem; font-size: 1.1rem; }
.process-step p { color: var(--muted); font-size: .93rem; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.about-copy p + p { margin-top: 1rem; }
.about-copy h2 { margin-bottom: 1.1rem; }
.about-copy .btn { margin-top: 1.6rem; }
.about-aside { display: grid; gap: 1.2rem; }
.about-panel {
  background: var(--white); border: 1px solid var(--seafoam);
  border-radius: var(--radius-lg); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm);
}
.about-panel h3 { font-size: 1rem; margin-bottom: .8rem; }
.check-list { display: grid; gap: .5rem; }
.check-list li { display: flex; align-items: baseline; gap: .55rem; font-size: .93rem; color: var(--ink); }
.check-list .icon { color: var(--current); width: 1em; height: 1em; transform: translateY(.12em); }

/* ---------- pricing ---------- */
.pricing { background: var(--white); border-top: 1px solid var(--seafoam); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.pricing-card {
  background: var(--mist); border: 1px solid var(--seafoam);
  border-radius: var(--radius-lg); padding: 1.8rem 1.7rem;
  display: flex; flex-direction: column; gap: .55rem;
}
.pricing-card-featured {
  background: var(--white); border: 2px solid var(--signal);
  box-shadow: var(--shadow-md);
}
.pricing-tag {
  font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--current-ink);
}
.pricing-price { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--harbor); }
.pricing-desc { color: var(--muted); font-size: .95rem; }
.pricing-card .check-list { margin-block: .8rem 1.2rem; }
.pricing-card .btn { margin-top: auto; justify-content: center; }
.pricing-note { margin-top: 1.6rem; color: var(--muted); font-size: .9rem; max-width: 46rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--mist); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq-list { display: grid; gap: .8rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--seafoam);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--harbor);
  padding: 1rem 1.2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { transform: rotate(90deg); transition: transform .25s ease; color: var(--current-ink); }
.faq-item[open] .faq-chevron { transform: rotate(-90deg); }
.faq-item p { padding: 0 1.2rem 1.15rem; color: var(--muted); font-size: .96rem; }

/* ---------- contact ---------- */
.contact {
  background: linear-gradient(0deg, #E9F2EF 0%, var(--mist) 62%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-direct { margin-top: 2rem; }
.contact-direct h3 { font-size: 1rem; margin-bottom: .9rem; }
.contact-direct ul { display: grid; gap: .7rem; }
.contact-direct li { display: flex; align-items: center; gap: .65rem; }
.contact-direct .icon { color: var(--current-ink); }

.contact-form {
  background: var(--white); border: 1px solid var(--seafoam);
  border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-md); display: grid; gap: 1.1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: grid; gap: .35rem; }
.form-field label { font-weight: 600; font-size: .9rem; }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; color: var(--ink);
  border: 1.5px solid #C6D8D5; border-radius: 10px;
  padding: .65rem .8rem; background: var(--mist); width: 100%;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible {
  outline: 3px solid var(--current); outline-offset: 1px; border-color: var(--current);
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-privacy { font-size: .82rem; color: var(--muted); }
.form-status { font-weight: 600; font-size: .95rem; min-height: 1.4em; }
.form-status.is-success { color: #1D7A46; }
.form-status.is-error { color: #B4232A; }

/* ---------- footer ---------- */
.site-footer { background: var(--harbor); color: #C4D6D4; }
.site-footer a { color: #DCEBE8; }
.site-footer a:hover { color: var(--white); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 3.5rem); padding-block: 3.2rem 2rem;
}
.footer-brand p { margin-top: 1rem; font-size: .95rem; max-width: 26rem; }
.footer-brand .brand-mark { stroke: #7FB5B0; }
.footer-linkedin { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1rem; font-weight: 600; text-decoration: none; }
.site-footer h3 {
  color: var(--white); font-size: .85rem; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: .9rem;
}
.footer-nav ul { display: grid; gap: .45rem; }
.footer-nav a { text-decoration: none; font-size: .95rem; }
.footer-legal p { font-size: .88rem; line-height: 1.7; }
.footer-privacy { margin-top: .8rem; font-size: .9rem; }
.footer-nocookies { margin-top: .4rem; font-size: .82rem; color: #8FB0AC; }
.footer-lang { display: flex; gap: .3rem; margin-top: 1.1rem; }
.footer-lang a { color: #C4D6D4; }
.footer-lang a:hover { background: rgba(255,255,255,.12); color: var(--white); }
.footer-lang .lang-current { background: rgba(255,255,255,.14); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-block: 1.2rem; font-size: .85rem; }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  padding: .7rem clamp(1.1rem, 4vw, 2rem) calc(.7rem + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--white) 92%, transparent);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--seafoam);
  transform: translateY(110%); transition: transform .3s cubic-bezier(.2,.7,.2,1);
  display: none;
}
.sticky-cta .btn { width: 100%; justify-content: center; }
.sticky-cta.is-shown { transform: none; }
@media (max-width: 767px) { .sticky-cta { display: block; } }

/* ---------- legal / privacy page ---------- */
.legal-page { padding-block: clamp(2.5rem, 6vw, 4rem) clamp(3rem, 7vw, 5rem); }
.legal-container { max-width: 44rem; }
.legal-page h1 { font-size: clamp(1.9rem, 1.4rem + 2.5vw, 2.8rem); font-weight: 800; margin-bottom: .4rem; }
.legal-updated { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.15rem; margin: 1.8rem 0 .5rem; }
.legal-page p { color: var(--ink); }
.legal-contact { display: flex; align-items: center; gap: .55rem; margin: 2rem 0 1.5rem; font-weight: 600; }
.site-nav.is-simple { display: flex !important; position: static; flex-direction: row; background: none; border: 0; box-shadow: none; padding: 0; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--i, 0) * 90ms); }
.reveal.is-visible { opacity: 1; transform: none; }
/* no-JS and reduced-motion fallback: everything visible */
.no-observer .reveal { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1023px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem 1.4rem; }
  .process-step:nth-child(2)::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .poc-card { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  :root { --header-h: 64px; }
  body { font-size: 1rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { justify-content: center; text-align: center; }
  .fit-grid { grid-template-columns: 1fr; }
}

/* hamburger nav up to 899px — the full inline nav needs ~900px to breathe */
@media (max-width: 899px) {
  .nav-toggle {
    display: grid; gap: 5px; margin-left: auto;
    background: none; border: 0; padding: .6rem; cursor: pointer;
  }
  .nav-toggle-bar { width: 24px; height: 2.5px; border-radius: 2px; background: var(--harbor); transition: transform .25s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 90;
    flex-direction: column; align-items: stretch; gap: .4rem;
    background: var(--white); border-bottom: 1px solid var(--seafoam);
    padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.4rem;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; gap: .2rem; }
  .site-nav ul a { display: block; padding: .55rem 0; font-size: 1.05rem; }
  .nav-lang { padding-block: .5rem; }
  .nav-cta { justify-content: center; margin-top: .4rem; }
}

@media (min-width: 900px) and (max-width: 1023px) {
  .site-nav ul { gap: .9rem; }
  .site-nav ul a { font-size: .88rem; white-space: nowrap; }
  .nav-cta { padding: .55rem 1rem; font-size: .88rem; white-space: nowrap; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-word, .flow-node { animation: none; opacity: 1; transform: none; }
  .flow-tangle { animation: none; stroke-dashoffset: 0; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .site-header, .service-card { transition: none; }
  .aurora-blob, .poc-card::before, .poc-card::after, .process-step::before { animation: none; }
}
