/* ==========================================================================
   Infin-Software.fi — tyylit (v2)
   Design-handoffin mukainen ilme: pehmeä luonnonvalkoinen pohja, petroli-
   aksentti, INCO-alueilla EU-sininen + kulta. Jatkuva liike (data-ambient),
   scroll-reveal (data-reveal) ja kuvitukset (logon vinoneliömotiivi, ikonit).
   ========================================================================== */

:root {
  --bg: #FBFAF7;
  --text: #262B2E;
  --text-2: #6A7176;
  --text-3: #9AA1A4;
  --accent: #3E6D80;
  --accent-dark: #2F5563;
  --accent-soft: #E2ECEC;
  --card: #F1F3EF;
  --sand: #F4F1EA;
  --line: rgba(38, 43, 46, 0.09);
  --line-soft: rgba(38, 43, 46, 0.07);

  --eu: #2B4EA6;
  --eu-dark: #20397E;
  --eu-2: #3D5FB5;
  --eu-3: #5B79C9;
  --eu-4: #8FA5DC;
  --gold: #C7A343;
  --gold-soft: #F5ECD2;
  --gold-text: #8A6E1F;
  --eu-bg: #FAFBFD;
  --eu-card: #F1F4FB;
  --eu-chip: #EEF2FB;
  --eu-text: #1B2440;
  --eu-text-2: #5A6480;
  --eu-text-3: #8891AB;
  --eu-line: rgba(32, 57, 126, 0.09);

  --font-head: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-body: 'Public Sans', system-ui, sans-serif;

  --r-pill: 999px;
  --r-card: 22px;
  --r-panel: 30px;
  --shadow-card: 0 10px 30px rgba(27, 36, 64, 0.05);
  --shadow-lift: 0 20px 44px rgba(38, 43, 46, 0.10);
  --shadow-float: 0 16px 40px rgba(38, 43, 46, 0.10);

  --container: 1200px;
  --gutter: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
::selection { background: var(--accent-soft); color: var(--accent-dark); }
img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-dark); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head); font-weight: 700; line-height: 1.12;
  letter-spacing: -0.02em; margin: 0 0 0.5em; text-wrap: pretty;
}
h1 { font-size: clamp(38px, 4.6vw, 60px); line-height: 1.06; letter-spacing: -0.025em; }
h2 { font-size: clamp(30px, 3.2vw, 38px); }
h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
h1 em, h2 em { font-style: italic; color: var(--accent); }
.inco h1 em, .inco h2 em, .inco-panel h2 em { color: var(--eu); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  display: flex; align-items: center; gap: 10px; margin: 0 0 22px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-2);
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; background: var(--accent);
  transform: rotate(45deg); border-radius: 1px; flex-shrink: 0;
}
.lead { font-size: 19px; color: var(--text-2); max-width: 540px; }
.muted { color: var(--text-2); }

/* Napit ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600; line-height: 1;
  padding: 15px 30px; border-radius: var(--r-pill); border: 1px solid transparent; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-outline { color: var(--accent); border-color: rgba(62, 109, 128, 0.3); }
.btn-outline:hover { border-color: var(--accent); background: rgba(62, 109, 128, 0.06); color: var(--accent-dark); }
.btn-eu { background: var(--eu); color: #fff; }
.btn-eu:hover { background: var(--eu-dark); color: #fff; }
.btn-eu-outline { color: var(--eu); border-color: rgba(43, 78, 166, 0.25); }
.btn-eu-outline:hover { border-color: var(--eu); background: rgba(43, 78, 166, 0.05); color: var(--eu-dark); }
.btn-sm { font-size: 14px; padding: 10px 22px; }
.btn-sm:hover { transform: translateY(-1px); }
.actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.text-link { font-size: 15px; font-weight: 600; }

/* Navigaatio ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: 14px; padding-bottom: 14px; }
.brand img { height: 40px; width: auto; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; margin-right: -8px; cursor: pointer; color: var(--text); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px 0; transition: transform 0.2s, opacity 0.2s; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; }
.nav-links a { color: var(--text-2); }
.nav-links a:hover { color: var(--accent); }
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-extra { display: flex; align-items: center; gap: 20px; }
.lang { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--text-3); }
.lang a { color: var(--text-3); }
.lang a:hover, .lang a[aria-current], .lang span[aria-current] { color: var(--text); }

/* Alasvetovalikko (INCO) ------------------------------------------------- */
.dd { position: relative; }
.dd-top { display: inline-flex; align-items: center; gap: 5px; }
.dd-top svg { width: 12px; height: 12px; transition: transform 0.2s; }
.dd:hover .dd-top svg, .dd:focus-within .dd-top svg { transform: rotate(180deg); }
.dd-menu {
  position: absolute; top: calc(100% + 10px); left: -16px; min-width: 190px; z-index: 60;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 8px;
  box-shadow: 0 18px 44px rgba(38,43,46,0.13);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.dd::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 12px; }
.dd:hover .dd-menu, .dd:focus-within .dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-menu a { display: block; padding: 9px 14px; border-radius: 9px; color: var(--text-2); font-size: 14.5px; font-weight: 500; }
.dd-menu a:hover { background: var(--card); color: var(--accent); }
.dd-menu a[aria-current="page"] { color: var(--text); background: var(--card); }
.dd-menu .dd-sep { height: 1px; background: var(--line-soft); margin: 6px 8px; }

/* Animaatiot ------------------------------------------------------------- */
@keyframes ringspin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes discspin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes drift1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(70px, -50px) scale(1.1); } }
@keyframes drift2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-60px, 40px) scale(1.07); } }
@keyframes markspin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* Viivapiirros: elementit joilla data-draw — polut piirtyvät näkyviin (pathLength="1") */
[data-draw] path, [data-draw] line { stroke-dasharray: 1; stroke-dashoffset: 1; }
[data-draw].is-drawn path, [data-draw].is-drawn line { animation: draw 2s cubic-bezier(.4,.1,.2,1) forwards; }
[data-draw].is-drawn path:nth-child(2) { animation-delay: 0.35s; }
[data-draw].is-drawn path:nth-child(3) { animation-delay: 0.7s; }
[data-draw].is-drawn path:nth-child(4) { animation-delay: 1.05s; }
.no-js [data-draw] path, .no-js [data-draw] line { stroke-dasharray: none; stroke-dashoffset: 0; }

/* Parallaksi: JS asettaa translate-ominaisuuden (ei sotke animaatioiden transformia) */
[data-parallax] { will-change: translate; }

[data-reveal] { opacity: 0; transform: translateY(26px); }
[data-reveal].is-in { opacity: 1; transform: none; transition: opacity 0.7s cubic-bezier(.22,.7,.3,1), transform 0.7s cubic-bezier(.22,.7,.3,1); transition-delay: var(--d, 0ms); }
.no-js [data-reveal] { opacity: 1; transform: none; }
.btn[data-reveal].is-in:hover { transform: translateY(-2px); }

.glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(12px); }
.glow-petrol { background: radial-gradient(circle, rgba(62,109,128,0.13), rgba(62,109,128,0) 65%); }
.glow-blue { background: radial-gradient(circle, rgba(43,78,166,0.14), rgba(43,78,166,0) 65%); }
.glow-gold { background: radial-gradient(circle, rgba(199,163,67,0.13), rgba(199,163,67,0) 65%); }
.glow-sand { background: radial-gradient(circle, rgba(233,223,206,0.9), rgba(233,223,206,0) 65%); }
.drift1 { animation: drift1 11s ease-in-out infinite; }
.drift2 { animation: drift2 15s ease-in-out infinite; }

/* Logon vinoneliömotiivi koristeena */
.mark-deco { position: absolute; pointer-events: none; color: var(--accent); opacity: 0.08; }
.mark-deco svg { width: 100%; height: 100%; }
.mark-deco.spin { animation: markspin 90s linear infinite; }
.inco .mark-deco, .inco-panel .mark-deco { color: var(--eu); }

/* Hero (etusivu) --------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero .container { padding-top: 84px; padding-bottom: 88px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 26px; }
.hero .lead { margin-bottom: 38px; }
.hero-simple .container { padding-top: 88px; padding-bottom: 56px; }
.hero-simple h1 { max-width: 820px; margin-bottom: 22px; }

.hero-art { position: relative; height: 520px; }
.hero-disc {
  position: absolute; left: 50%; top: 50%; width: 430px; height: 430px; margin: -215px 0 0 -215px; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(62,109,128,0.20), rgba(244,239,230,0.95), rgba(62,109,128,0.10), rgba(233,223,206,0.9), rgba(62,109,128,0.20));
  filter: blur(30px); animation: discspin 20s linear infinite;
}
.hero-art .mark-deco { left: 50%; top: 50%; width: 360px; height: 300px; margin: -150px 0 0 -180px; opacity: 0.09; }
.float-card {
  position: absolute; display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid rgba(38,43,46,0.08); border-radius: 16px; padding: 16px 20px 16px 16px;
  box-shadow: var(--shadow-float); font-weight: 600; font-size: 15px; white-space: nowrap;
}
.float-card .ico { width: 40px; height: 40px; border-radius: 12px; background: var(--card); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.float-card .ico svg { width: 22px; height: 22px; }
.float-card small { display: block; font-weight: 500; font-size: 12px; color: var(--text-3); margin-top: 1px; }
.float-1 { top: 60px; left: 10px; animation: floaty 5.5s ease-in-out infinite; }
.float-2 { top: 214px; right: 0; animation: floaty 6.5s ease-in-out -1.6s infinite; }
.float-3 { bottom: 66px; left: 60px; animation: floaty 7s ease-in-out -3.2s infinite; }
.hero-art .badge {
  position: absolute; right: 30px; bottom: 30px; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(38,43,46,0.08); border-radius: var(--r-pill);
  padding: 8px 14px 8px 10px; font-size: 12px; font-weight: 600; color: var(--text-2);
  backdrop-filter: blur(6px); animation: floaty 8s ease-in-out -5s infinite;
}
.hero-art .badge i { width: 8px; height: 8px; border-radius: 50%; background: #3F9A6E; animation: pulse 2.4s ease-in-out infinite; }

/* Osiot ------------------------------------------------------------------ */
.section { padding: 48px 0 96px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.section-head h2 { margin: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Ikonit */
.ico-tile {
  width: 52px; height: 52px; border-radius: 16px; background: #fff; color: var(--accent);
  display: grid; place-items: center; border: 1px solid rgba(38,43,46,0.08); margin-bottom: 26px;
}
.ico-tile svg { width: 26px; height: 26px; }
.inco .ico-tile, .inco-panel .ico-tile { color: var(--eu); border-color: var(--eu-line); }

/* Palvelukortit */
.card {
  display: block; position: relative; overflow: hidden;
  background: var(--card); border-radius: var(--r-card); padding: 34px 30px; color: var(--text);
  transition: transform 0.25s, box-shadow 0.25s;
}
a.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); color: var(--text); }
.card .card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.card .card-top .ico-tile { margin: 0; }
.card .num { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--accent); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-2); font-size: 15px; }
.card ul { margin-top: 22px; display: grid; gap: 10px; font-size: 14px; font-weight: 500; }
.card ul li { display: flex; gap: 10px; align-items: baseline; }
.card ul li::before { content: "—"; color: var(--accent); }
.card .card-mark { position: absolute; right: -30px; bottom: -40px; width: 170px; height: 140px; color: var(--accent); opacity: 0.06; pointer-events: none; transition: opacity 0.25s, transform 0.25s; }
a.card:hover .card-mark { opacity: 0.11; transform: translate(-6px, -6px); }

/* Prosessikaavio (Palvelut) */
.process { position: relative; padding: 8px 0 0; }
.process-line { position: absolute; left: 6%; right: 6%; top: 34px; height: 2px; }
.process-line svg { width: 100%; height: 2px; }
.process-line line { stroke: var(--accent); stroke-width: 2; opacity: 0.35; }
.process-line[data-draw].is-drawn line { animation-duration: 1.6s; animation-timing-function: cubic-bezier(.22,.7,.3,1); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-step { text-align: center; padding: 0 12px; }
.process-step .ico-tile {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 18px; background: #fff;
  box-shadow: 0 10px 26px rgba(38,43,46,0.08); border-color: rgba(62,109,128,0.18);
}
.process-step .ico-tile svg { width: 30px; height: 30px; }
.process-step strong { display: block; font-family: var(--font-head); font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.process-step p { color: var(--text-2); font-size: 14px; }

/* Luvut */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.fact::before { content: ""; display: block; width: 36px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 20px; }
.fact strong { display: block; font-family: var(--font-head); font-size: 54px; font-weight: 700; letter-spacing: -0.02em; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.fact p { color: var(--text-2); font-size: 15px; max-width: 280px; }

/* CTA-band */
.cta-band {
  position: relative; overflow: hidden; background: var(--sand); border-radius: 28px; padding: 64px 48px; text-align: center;
}
.cta-band h2 { font-size: 32px; margin: 0 0 28px; }
.cta-band .mark-deco { width: 380px; height: 320px; left: -120px; top: -90px; opacity: 0.07; }
.cta-band .mark-deco.right { left: auto; right: -140px; top: auto; bottom: -120px; }
.cta-band > *:not(.mark-deco) { position: relative; }

/* INCO / EU -------------------------------------------------------------- */
.inco { color: var(--eu-text); }
.inco main a:not(.btn) { color: var(--eu); }
.inco main a:not(.btn):hover { color: var(--eu-dark); }
.inco ::selection { background: #E3EAF8; color: var(--eu-dark); }
.inco .lead, .inco .muted { color: var(--eu-text-2); }
.inco body, body.inco { background: var(--eu-bg); }
.inco .site-header { background: rgba(250,251,253,0.86); border-bottom-color: var(--eu-line); }

.inco-tag { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.inco-tag .name { font-family: var(--font-head); font-weight: 700; font-size: 17px; letter-spacing: 0.02em; color: var(--eu); }
.inco-tag .sub { color: var(--eu-text-3); font-size: 14px; }
.chip { background: var(--gold-soft); color: var(--gold-text); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 11px; border-radius: var(--r-pill); }
.star { color: var(--gold); }
.star-list { display: grid; gap: 14px; }
.star-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.star-list .star { font-size: 14px; line-height: 1.8; }

/* Tähtirengas (12 tähteä) */
.star-ring { position: absolute; pointer-events: none; animation: ringspin 46s linear infinite; }
.star-ring span {
  position: absolute; left: 50%; top: 50%; color: var(--gold); line-height: 1; font-size: 13px; opacity: 0.55;
  transform: translate(-50%, -50%) rotate(var(--a)) translateY(calc(-1 * var(--r))) rotate(calc(-1 * var(--a)));
}
.star-ring span:nth-child(3n+1) { font-size: 18px; opacity: 0.9; }

/* Etusivun INCO-nosto */
.inco-panel {
  position: relative; overflow: hidden; color: var(--eu-text);
  background: linear-gradient(135deg, #F1F5FC 0%, #E5EDFA 100%); border-radius: 32px; padding: 72px 56px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.inco-panel .star-ring { right: -240px; top: 50%; width: 560px; height: 560px; margin-top: -280px; opacity: 0.35; --r: 268px; }
.inco-panel > *:not(.star-ring) { position: relative; }
.inco-panel h2 { color: var(--eu-text); margin-bottom: 20px; }
.inco-panel .lead { font-size: 17px; color: var(--eu-text-2); margin-bottom: 34px; max-width: 520px; }
.pillars { display: grid; gap: 16px; }
.pillar {
  background: #fff; border: 1px solid var(--eu-line); border-radius: 18px; padding: 22px 26px;
  display: flex; gap: 16px; align-items: center; box-shadow: var(--shadow-card);
}
.pillar .ico-tile { width: 44px; height: 44px; border-radius: 12px; margin: 0; background: var(--eu-card); border: 0; color: var(--eu); }
.pillar .ico-tile svg { width: 22px; height: 22px; }
.pillar strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--eu-text); margin-bottom: 2px; }
.pillar span { color: var(--eu-text-2); font-size: 15px; }

/* INCO-hero */
.inco-hero { background: linear-gradient(180deg, #F1F5FC 0%, #FAFBFD 100%); }
/* Tähtirengas: keskipiste sovellusmockupin vasemmassa reunassa, pystysuunnassa keskellä */
.inco-hero .dash-wrap { --app-left: max(18%, calc(50vw - 764px)); justify-content: flex-start; padding-left: var(--app-left); }
.inco-hero .app { width: 780px; max-width: none; flex: none; }   /* jatkuu sivun oikean reunan yli, hero leikkaa */
.ring-anchor { position: absolute; left: var(--app-left, 18%); top: 50%; width: 560px; height: 560px; margin: -280px 0 0 -280px; pointer-events: none; z-index: 0; }
.ring-anchor .star-ring { inset: 0; opacity: 0.5; --r: 268px; }
.inco-hero .hero-grid > div:first-child { position: relative; z-index: 1; }
.dash-wrap .app { z-index: 1; }
.inco-hero .container { padding-top: 80px; padding-bottom: 88px; }
.dash-wrap { position: relative; display: flex; justify-content: center; }

/* Sovelluskuva: jäljittelee INCO-hallintanäkymää (sivupalkki + tilastokortit) */
.app {
  --a-primary: #2563eb; --a-bg: #f5f7fa; --a-text: #1e293b; --a-text2: #64748b; --a-line: #e2e8f0;
  position: relative; width: 100%; max-width: 640px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 10.5px; line-height: 1.35; color: var(--a-text);
  background: #fff; border: 1px solid rgba(32,57,126,0.12); border-radius: 14px;
  box-shadow: 0 30px 70px rgba(27,36,64,0.16); overflow: hidden;
}
.app-chrome-unused { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: #eef1f6; border-bottom: 1px solid var(--a-line); }
.app-chrome i { width: 9px; height: 9px; border-radius: 50%; background: #cfd6e1; }
.app-chrome span { margin-left: 8px; flex: 1; background: #fff; border: 1px solid var(--a-line); border-radius: 6px; padding: 3px 10px; font-size: 9.5px; color: var(--a-text2); }
.app-body { display: grid; grid-template-columns: 128px minmax(0, 1fr); min-height: 380px; background: var(--a-bg); }
.app-side { background: #fff; border-right: 1px solid var(--a-line); display: flex; flex-direction: column; }
.app-logo { padding: 12px 14px; border-bottom: 1px solid var(--a-line); font-weight: 700; font-size: 13px; color: var(--a-primary); letter-spacing: 0.01em; }
.app-logo small { display: block; font-weight: 500; font-size: 8px; color: var(--a-text2); letter-spacing: 0.04em; }
.app-nav { padding: 6px 0; flex: 1; }
.app-nav div { display: flex; align-items: center; gap: 8px; padding: 6px 14px; color: var(--a-text2); font-weight: 500; }
.app-nav div svg { width: 12px; height: 12px; flex-shrink: 0; }
.app-nav div.on { background: #eff6ff; color: var(--a-primary); border-right: 2px solid var(--a-primary); }
.app-user { margin: 6px 10px 10px; padding: 6px 8px; border-radius: 6px; background: #f8fafc; display: flex; align-items: center; gap: 7px; }
.app-user i { width: 18px; height: 18px; border-radius: 50%; background: #dbeafe; color: var(--a-primary); font-style: normal; font-size: 8px; font-weight: 700; display: grid; place-items: center; }
.app-user span { font-size: 9px; color: var(--a-text2); }
.app-main { display: flex; flex-direction: column; min-width: 0; }
.app-top { background: #fff; border-bottom: 1px solid var(--a-line); padding: 9px 14px; display: flex; align-items: center; justify-content: space-between; }
.app-top strong { font-size: 12px; }
.app-top .btn-app { background: var(--a-primary); color: #fff; font-weight: 600; font-size: 9.5px; padding: 5px 10px; border-radius: 6px; }
.app-page { padding: 12px 14px 14px; display: grid; gap: 10px; min-width: 0; overflow: hidden; }
.app-h1 { font-size: 13.5px; font-weight: 700; }
.app-sub { color: var(--a-text2); font-size: 9.5px; margin-top: 1px; }
.app-alert { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; border-radius: 7px; padding: 6px 10px; font-size: 9.5px; display: flex; gap: 7px; align-items: center; }
.app-alert svg { width: 11px; height: 11px; flex-shrink: 0; }
.app-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.app-stat { min-width: 0; background: #fff; border: 1px solid var(--a-line); border-radius: 9px; padding: 10px 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.app-stat .row { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; min-width: 0; }
.app-stat .ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.app-stat .ic svg { width: 15px; height: 15px; }
.app-stat .lbl { color: var(--a-text2); font-size: 9px; font-weight: 500; }
.app-stat .val { font-size: 19px; font-weight: 700; line-height: 1.05; }
.app-stat .bar { height: 5px; border-radius: 3px; background: var(--a-line); overflow: hidden; margin-bottom: 5px; }
.app-stat .bar i { display: block; height: 100%; border-radius: 3px; width: 0; transition: width 1.2s cubic-bezier(.22,.7,.3,1) 0.5s; }
.app.is-in .app-stat .bar i { width: var(--w); }
.app-stat .foot { color: var(--a-text2); font-size: 8.5px; }
.app-mini { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.app-mini > div { min-width: 0; background: #fff; border: 1px solid var(--a-line); border-radius: 7px; padding: 7px 9px; display: flex; align-items: center; gap: 8px; }
.app-mini i { width: 24px; height: 24px; border-radius: 6px; display: grid; place-items: center; flex-shrink: 0; }
.app-mini i svg { width: 12px; height: 12px; }
.app-mini strong { display: block; font-size: 13px; line-height: 1; }
.app-mini span { font-size: 8.5px; color: var(--a-text2); }
.app-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.app-card { background: #fff; border: 1px solid var(--a-line); border-radius: 9px; padding: 10px 12px; }
.app-card h5 { font-size: 10px; font-weight: 600; margin: 0 0 8px; display: flex; justify-content: space-between; }
.app-card h5 a { color: var(--a-primary); font-weight: 500; font-size: 9px; }
.app-dist { display: grid; gap: 6px; }
.app-dist div { display: grid; grid-template-columns: 52px minmax(0,1fr) 16px; align-items: center; gap: 6px; font-size: 8.5px; color: var(--a-text2); }
.app-dist .t { height: 5px; border-radius: 3px; background: var(--a-line); overflow: hidden; }
.app-dist .t i { display: block; height: 100%; border-radius: 3px; width: 0; transition: width 1.2s cubic-bezier(.22,.7,.3,1) 0.7s; }
.app.is-in .app-dist .t i { width: var(--w); }
.app-dist b { color: var(--a-text); font-weight: 600; text-align: right; }
.app-risks { display: grid; gap: 5px; }
.app-risks div { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 5px 7px; border-radius: 6px; background: #f8fafc; font-size: 9px; min-width: 0; }
.app-risks span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.app-risks em { font-style: normal; font-weight: 700; font-size: 9px; padding: 2px 6px; border-radius: 999px; }
.app-risks em.crit { background: #fee2e2; color: #dc2626; }
.app-risks em.high { background: #ffedd5; color: #c2410c; }
.app-risks em.med { background: #fef3c7; color: #b45309; }
.app .ai-tip {
  position: absolute; left: 150px; bottom: -30px; display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(32,57,126,0.10); border-radius: 10px; padding: 8px 11px;
  box-shadow: 0 14px 34px rgba(27,36,64,0.14); animation: floaty 6s ease-in-out -2s infinite; max-width: 210px;
}
.app .ai-tip i { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(135deg, #667eea, #764ba2); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.app .ai-tip i svg { width: 12px; height: 12px; }
.app .ai-tip strong { display: block; font-size: 9.5px; }
.app .ai-tip span { font-size: 8.5px; color: var(--a-text2); }
.inco-hero .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 48px; }
.inco-hero h1 { font-size: clamp(32px, 3.4vw, 46px); }

/* Prosessi (INCO) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before { content: ""; position: absolute; top: 22px; left: 6%; right: 6%; height: 1px; background: linear-gradient(90deg, rgba(43,78,166,0), rgba(43,78,166,0.25), rgba(43,78,166,0)); }
.step { position: relative; }
.step .num { width: 44px; height: 44px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-bottom: 16px; }
.step:nth-child(1) .num { background: var(--eu); }
.step:nth-child(2) .num { background: var(--eu-2); }
.step:nth-child(3) .num { background: var(--eu-3); }
.step:nth-child(4) .num { background: var(--eu-4); }
.step strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: 0.1em; margin-bottom: 6px; }
.step p { color: var(--eu-text-2); font-size: 14px; }

.eu-band { background: linear-gradient(180deg, #F3F6FD 0%, #E9EFFA 100%); }
.eu-band-2 { background: linear-gradient(180deg, #F3F6FD 0%, #EDF2FB 100%); }
.section-eu { padding: 88px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col.top { align-items: start; }

.stat-cards { display: grid; gap: 16px; }
.stat-card {
  background: #fff; border: 1px solid var(--eu-line); border-radius: 18px; padding: 24px 28px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px; box-shadow: var(--shadow-card);
}
.stat-card span { color: var(--eu-text-2); font-size: 15px; }
.stat-card strong { font-family: var(--font-head); font-weight: 700; font-size: 28px; color: var(--eu); white-space: nowrap; }
.stat-note { color: var(--eu-text-3); font-size: 13px; margin: 4px 4px 0; }
.note-box { background: var(--eu-card); border-radius: 14px; padding: 18px 22px; font-size: 15px; color: var(--eu-text-2); }

.sectors { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sectors li { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid rgba(32,57,126,0.10); border-radius: 14px; padding: 16px 18px; font-weight: 600; font-size: 15px; }
.sectors li svg { width: 22px; height: 22px; color: var(--eu); flex-shrink: 0; }

.coverage { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.coverage li { background: #fff; border: 1px solid var(--eu-line); border-radius: 18px; padding: 26px 24px; box-shadow: var(--shadow-card); }
.coverage .ico-tile { width: 44px; height: 44px; border-radius: 12px; background: var(--eu-card); border: 0; margin-bottom: 14px; }
.coverage .ico-tile svg { width: 22px; height: 22px; }
.coverage strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 17px; margin-bottom: 12px; }
.coverage li > span:not(.ico-tile) { display: block; color: var(--eu-text-2); font-size: 14px; margin-bottom: 8px; }
.coverage li > span:not(.ico-tile)::before { content: "★ "; color: var(--gold); font-size: 11px; }

.price-table-wrap { background: #fff; border: 1px solid rgba(32,57,126,0.10); border-radius: 20px; overflow: hidden; overflow-x: auto; box-shadow: 0 14px 40px rgba(27,36,64,0.06); }
.price-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 600px; }
.price-table th, .price-table td { padding: 15px 24px; text-align: left; }
.price-table thead th { background: var(--eu-card); font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--eu-dark); }
.price-table thead th.campaign { background: var(--gold-soft); color: var(--gold-text); }
.price-table tbody tr { border-top: 1px solid rgba(32,57,126,0.07); }
.price-table td:first-child { font-weight: 600; }
.price-table td { color: var(--eu-text-2); }
.price-table td.campaign { font-weight: 600; color: var(--gold-text); background: rgba(245,236,210,0.45); }
.price-notes { display: grid; gap: 8px; margin: 22px 0 44px; color: var(--eu-text-2); font-size: 14px; }
.price-notes li { display: flex; gap: 10px; }
.price-notes li::before { content: "—"; color: var(--eu); }
.support { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.support li { background: var(--eu-card); border-radius: 18px; padding: 26px; display: flex; gap: 16px; align-items: flex-start; }
.support .ico-tile { width: 40px; height: 40px; border-radius: 12px; margin: 0; flex-shrink: 0; }
.support .ico-tile svg { width: 20px; height: 20px; }
.support strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 16px; margin-bottom: 6px; }
.support p { color: var(--eu-text-2); font-size: 14px; }

/* Direktiivisivun herokuvitus ---------------------------------------------- */
.law-art { position: relative; height: 440px; }
.law-icon {
  position: absolute; left: 50%; top: 50%; width: 290px; height: 290px; margin: -145px 0 0 -145px;
  color: var(--eu); animation: floaty 7s ease-in-out infinite;
}
.law-icon svg { width: 100%; height: 100%; }
.law-glow {
  position: absolute; left: 50%; top: 50%; width: 360px; height: 360px; margin: -180px 0 0 -180px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.85), rgba(241,245,252,0) 70%);
  pointer-events: none;
}
.law-art .star-ring { left: 50%; top: 50%; width: 520px; height: 520px; margin: -260px 0 0 -260px; opacity: 0.35; --r: 248px; }
.law-card {
  position: absolute; display: flex; align-items: center;
  background: #fff; border: 1px solid rgba(32,57,126,0.10); border-radius: 14px; padding: 12px 18px;
  box-shadow: 0 14px 34px rgba(27,36,64,0.12); white-space: nowrap;
}
.law-card strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--eu); line-height: 1.15; }
.law-card small { display: block; font-size: 11.5px; color: var(--eu-text-3); font-weight: 500; }
.law-1 { top: 34px; right: 6px; animation: floaty 6s ease-in-out -1.5s infinite; }
.law-2 { bottom: 46px; left: 12px; animation: floaty 7s ease-in-out -4s infinite; }
@media (max-width: 960px) {
  .law-art { height: 360px; max-width: 480px; margin: 0 auto; width: 100%; }
  .law-icon { width: 230px; height: 230px; margin: -115px 0 0 -115px; }
}

/* Viitekehyskortit --------------------------------------------------------- */
.fw-card { background: #fff; border: 1px solid var(--eu-line); box-shadow: var(--shadow-card); }
a.fw-card:hover { color: inherit; }
.fw-card .chip { margin-bottom: 16px; display: inline-block; }
.fw-card h3 { color: var(--eu-text); margin-bottom: 8px; }
.fw-card p { color: var(--eu-text-2); font-size: 14px; }
.fw-card .text-link { display: inline-block; margin-top: 14px; color: var(--eu); }

/* Hinnoittelukaruselli ---------------------------------------------------- */
.price-carousel { position: relative; outline: none; }
.pc-viewport { overflow: hidden; padding: 20px 0 8px; cursor: grab; touch-action: pan-y; }
.pc-viewport:active { cursor: grabbing; }
.pc-track { display: flex; gap: 20px; align-items: stretch; transition: transform 0.45s cubic-bezier(.22,.7,.3,1); will-change: transform; }
.pc-card {
  flex: 0 0 300px; background: #fff; border: 1px solid var(--eu-line); border-radius: 20px;
  padding: 30px 26px 32px; text-align: center; box-shadow: var(--shadow-card);
  opacity: 0.4; transform: scale(0.92); cursor: pointer; user-select: none;
  transition: opacity 0.45s, transform 0.45s, border-color 0.45s, box-shadow 0.45s;
}
.pc-card.on { opacity: 1; transform: scale(1); border-color: rgba(43,78,166,0.35); box-shadow: 0 20px 50px rgba(27,36,64,0.12); cursor: default; }
.pc-stamp {
  display: inline-flex; align-items: center; gap: 7px; background: var(--gold-soft); color: var(--gold-text);
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill); margin-bottom: 18px;
}
.pc-card h3 { font-size: 22px; margin: 0 0 14px; color: var(--eu-text); }
.pc-desc { color: var(--eu-text-2); font-size: 13px; font-weight: 500; margin: -8px 0 14px; }
.pc-price { font-family: var(--font-head); font-weight: 700; font-size: 36px; color: var(--eu); line-height: 1; }
.pc-price small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 13px; color: var(--eu-text-3); margin-top: 8px; }
.pc-price.pc-custom { font-size: 22px; line-height: 1.3; padding-top: 8px; }
.pc-prev, .pc-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(43,78,166,0.25);
  background: #fff; color: var(--eu); display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--shadow-card); transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.pc-prev { left: -8px; }
.pc-next { right: -8px; }
.pc-prev:hover:not(:disabled), .pc-next:hover:not(:disabled) { background: var(--eu); color: #fff; }
.pc-prev:disabled, .pc-next:disabled { opacity: 0.3; cursor: default; }
.pc-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.pc-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: rgba(43,78,166,0.2); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.pc-dot.on { background: var(--eu); transform: scale(1.25); }

.inco-cta { position: relative; overflow: hidden; background: linear-gradient(135deg, #EDF2FC 0%, #E2EAF9 100%); border-radius: 28px; padding: 72px 48px; text-align: center; }
.inco-cta .star-ring { left: 50%; top: 50%; width: 640px; height: 640px; margin: -320px 0 0 -320px; opacity: 0.4; animation-duration: 60s; --r: 300px; }
.inco-cta > *:not(.star-ring) { position: relative; }
.inco-cta h2 { font-size: 36px; margin-bottom: 14px; }
.inco-cta p { color: var(--eu-text-2); font-size: 17px; margin-bottom: 32px; }

.inco-note {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  background: linear-gradient(135deg, #F1F5FC 0%, #E5EDFA 100%); border-radius: 22px; padding: 32px 40px; color: var(--eu-text);
}
.inco-note .text { display: flex; align-items: center; gap: 16px; }
.inco-note .star { font-size: 18px; }
.inco-note strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 17px; }
.inco-note span { color: var(--eu-text-2); font-size: 14px; }
.inco .site-footer { background: #EEF2FA; border-top-color: var(--eu-line); }
.inco .site-footer a { color: var(--eu); }

/* Blogi ------------------------------------------------------------------ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card h3 { margin: 14px 0 10px; }
.post-card .text-link { display: inline-block; margin-top: 16px; color: var(--accent); }
.post-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 14px; color: var(--text-3); margin: 0; }
.post-tag { background: var(--card); color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; padding: 3px 10px; border-radius: var(--r-pill); }
.post-card .post-tag { background: #fff; }
.post-body { max-width: 720px; font-size: 17px; }
.post-body h2 { font-size: 26px; margin: 40px 0 14px; }
.post-body h3 { font-size: 20px; margin: 32px 0 10px; }
.post-body p, .post-body ul, .post-body ol { margin-bottom: 18px; color: var(--text); }
.post-body ul, .post-body ol { padding-left: 22px; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 6px; }
.post-body blockquote { margin: 26px 0; padding: 18px 24px; background: var(--card); border-left: 3px solid var(--accent); border-radius: 0 14px 14px 0; color: var(--text-2); }
.post-body a { font-weight: 600; }

/* Tietoa meistä ---------------------------------------------------------- */
.about-art { position: relative; height: 420px; border-radius: 24px; overflow: hidden; background: linear-gradient(135deg, #E9EEEA 0%, #F4F1EA 100%); }
.about-art img { width: 100%; height: 100%; object-fit: cover; }
.about-art .glow { width: 380px; height: 380px; right: -120px; top: -120px; }
.about-art .mark-deco { width: 520px; height: 430px; left: -60px; bottom: -110px; opacity: 0.12; }
.about-art .float-card { font-size: 14px; }
.about-art .fa-1 { top: 44px; left: 40px; animation: floaty 6s ease-in-out infinite; }
.about-art .fa-2 { top: 160px; right: 40px; animation: floaty 7s ease-in-out -2.5s infinite; }
.about-art .fa-3 { bottom: 48px; left: 90px; animation: floaty 6.5s ease-in-out -4s infinite; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.values li { background: var(--card); border-radius: var(--r-card); padding: 34px 30px; }
.values .ico-tile { width: 44px; height: 44px; border-radius: 14px; margin-bottom: 22px; }
.values .ico-tile svg { width: 22px; height: 22px; }
.values h3 { font-size: 20px; margin-bottom: 10px; }
.values p { color: var(--text-2); font-size: 15px; }

/* Yhteystiedot ----------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { background: var(--card); border-radius: 18px; padding: 24px 28px; display: flex; gap: 18px; align-items: center; }
.contact-card .ico-tile { width: 44px; height: 44px; border-radius: 12px; margin: 0; flex-shrink: 0; }
.contact-card .ico-tile svg { width: 22px; height: 22px; }
.contact-card dt { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.contact-card dd { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: 18px; }
.contact-person .role { display: block; font-size: 14px; color: var(--text-2); margin-top: 2px; }
.contact-person .phone { display: block; font-family: var(--font-head); font-weight: 600; font-size: 16px; margin-top: 6px; }
.contact-person .mail { display: block; font-weight: 600; font-size: 14px; margin-top: 2px; word-break: break-all; }
.contact-inco { background: linear-gradient(135deg, #F1F5FC 0%, #E5EDFA 100%); border-radius: 18px; padding: 24px 28px; display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--eu-text-2); }
.contact-inco .star { line-height: 1.7; font-size: 15px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 40px; box-shadow: 0 14px 40px rgba(38,43,46,0.06); }
.form-card h2 { font-size: 26px; margin-bottom: 26px; }
.form-grid { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; font-size: 14px; font-weight: 600; }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 15px; font-weight: 400; padding: 13px 16px; width: 100%;
  border: 1px solid rgba(38,43,46,0.16); border-radius: 12px; background: var(--bg); color: var(--text); outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); background: #fff; }
.field textarea { resize: vertical; min-height: 140px; }
.field .optional { font-weight: 400; color: var(--text-3); }
.form-note { font-size: 13px; color: var(--text-3); }
.form-ok { background: #EAF5EC; color: #2E6B3E; border-radius: 12px; padding: 14px 18px; font-size: 14px; font-weight: 500; }
.form-err { background: #F8ECEA; color: #8A3B31; border-radius: 12px; padding: 14px 18px; font-size: 14px; font-weight: 500; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Footer ----------------------------------------------------------------- */
.site-footer { position: relative; overflow: hidden; background: var(--sand); border-top: 1px solid var(--line-soft); }
.site-footer .container { padding-top: 56px; padding-bottom: 40px; position: relative; }
.site-footer .mark-deco { width: 420px; height: 350px; right: -120px; top: -60px; opacity: 0.06; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid img { height: 36px; width: auto; margin-bottom: 12px; }
.footer-grid p { color: var(--text-2); font-size: 14px; }
.footer-grid h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.footer-grid ul { display: grid; gap: 8px; font-size: 14px; font-weight: 500; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-3); font-size: 13px; }

/* Responsiivisuus -------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-grid, .inco-hero .hero-grid, .inco-panel, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { height: 440px; max-width: 520px; margin: 0 auto; width: 100%; }
  .grid-3, .grid-4, .facts, .values, .steps, .coverage, .support, .process-steps, .post-grid { grid-template-columns: 1fr 1fr; }
  .steps::before, .process-line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .inco-panel { padding: 48px 32px; }
  .inco-panel .star-ring { display: none; }
  .inco-hero .dash-wrap { padding-left: 0; }
  .inco-hero .app { width: 100%; }
  .ring-anchor { display: none; }
  .hero .container { padding-top: 56px; padding-bottom: 56px; }
  .section { padding: 40px 0 72px; }
  .section-eu { padding: 64px 0; }
}
@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--bg); border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 20px; flex-direction: column; align-items: stretch; gap: 0; }
  .site-header.nav-open .site-nav { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 16px; }
  .dd-top svg { display: none; }
  .dd-menu { position: static; opacity: 1; visibility: visible; transform: none; border: 0; box-shadow: none; padding: 0 0 0 18px; background: none; }
  .dd-menu a { border-bottom: 1px solid var(--line-soft); border-radius: 0; padding: 10px 0; }
  .dd-menu .dd-sep { display: none; }
  .nav-extra { justify-content: space-between; padding-top: 16px; }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .grid-3, .grid-4, .facts, .values, .steps, .coverage, .support, .sectors, .process-steps, .post-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-art { height: 380px; }
  .hero-disc { width: 320px; height: 320px; margin: -160px 0 0 -160px; }
  .float-card { font-size: 14px; padding: 12px 16px 12px 12px; }
  .float-1 { left: 0; top: 30px; }
  .float-2 { right: 0; top: 150px; }
  .float-3 { left: 20px; bottom: 40px; }
  .cta-band, .inco-cta { padding: 44px 24px; }
  .cta-band h2 { font-size: 26px; }
  .inco-cta h2 { font-size: 28px; }
  .pc-card { flex-basis: 78vw; }
  .pc-prev { left: 2px; }
  .pc-next { right: 2px; }
  .inco-panel { padding: 36px 22px; border-radius: 22px; }
  .form-card { padding: 24px 20px; }
  .inco-note { padding: 24px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .about-art { height: 340px; }
  .app-body { grid-template-columns: 1fr; }
  .app-side { display: none; }
  .app .ai-tip { left: 8px; }
  .app-mini, .app-cols { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .dash-bars .track i { width: var(--w); }
  [data-draw] path, [data-draw] line { stroke-dasharray: none; stroke-dashoffset: 0; }
  [data-parallax] { translate: none !important; }
}
