@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #0052FF;
  --blue-2: #1A63FF;
  --blue-hover: #0041D6;
  --navy: #00162F;
  --navy-2: #001A38;
  --ink: #0B1F3A;
  --muted: #5C6B7A;
  --line: #E3E9F0;
  --soft: #F5F7FA;
  --white: #FFFFFF;
  --footer: #000C1A;
  --radius: 8px;
  --container: 1160px;
  --header-h: 78px;
  --shadow-phone: 0 28px 60px rgba(0, 16, 40, 0.32);
  --font: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* ---- type ---- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h1 {
  font-size: clamp(2.35rem, 4.4vw, 3.55rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.lead { color: var(--muted); font-size: 1.02rem; max-width: 46ch; }
.accent { color: var(--blue); }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 82, 255, 0.28);
}
.btn-blue:hover { background: var(--blue-hover); }
.btn-outline {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-link {
  color: var(--blue);
  font-weight: 700;
  padding: 0 6px;
  min-height: auto;
  background: none;
  box-shadow: none;
}
.btn-link:hover { gap: 12px; }
.btn-ghost-light {
  color: #fff;
  border-color: rgba(255,255,255,.55);
  background: transparent;
}

/* ---- header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(0, 20, 50, 0.06);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  z-index: 2;
}
.logo .logo-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}
.app-logo .logo-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.lv-ico .logo-mark {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}
.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  color: var(--ink);
}
.nav a.active { color: var(--blue); }
.nav a.active::after,
.nav a:hover::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  background: var(--blue);
}
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  position: relative;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  left: 0;
}
.menu-toggle span {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* ---- phone ---- */
.device {
  width: 248px;
  height: 508px;
  background: #0A0D12;
  border-radius: 38px;
  padding: 11px;
  box-shadow: var(--shadow-phone), inset 0 0 0 1.5px #2A3344;
  position: relative;
  flex-shrink: 0;
}
.device::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 6px;
  background: #05070B;
  border-radius: 20px;
  z-index: 3;
}
.device-screen {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #FFFFFF;
  display: block;
}
.app-shot {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: top left;
  transform: translateX(-13px);
}
.device.sm { width: 168px; height: 344px; border-radius: 28px; padding: 8px; }
.device.sm::after { width: 58px; height: 16px; top: 9px; }
.device.sm .device-screen { border-radius: 20px; }
.device.dark .device-screen { background: linear-gradient(180deg, #0E2248, #081428); }
.device.sm .app-shot-fit {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: top center;
  transform: none;
}
.device.sm .app-shot-fit.cover {
  object-fit: cover;
}
.device.sm .app-shot-fit.store-shot {
  object-fit: contain;
  object-position: top center;
  transform: none;
  box-sizing: border-box;
  padding: 4px;
}

.app {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 14px 10px;
  background: #EEF2F7;
  color: var(--ink);
}
.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 0.95rem;
}
.app-card {
  background: linear-gradient(160deg, #1C4F9C, #12356E);
  color: #fff;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 10px;
}
.app-card .lbl { font-size: 11px; opacity: .75; }
.app-card .val { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; }
.app-card .spark {
  height: 28px; margin-top: 8px;
}
.app-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.app-mini {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(10,30,60,.06);
}
.app-mini .lbl { font-size: 10px; color: var(--muted); }
.app-mini .val { font-size: 1.25rem; font-weight: 800; }
.app-mini .unit { font-size: 11px; color: var(--muted); }
.app-nav {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 16px;
  padding: 8px 4px;
  font-size: 9px;
  text-align: center;
  color: #8A97A8;
  font-weight: 600;
}
.app-nav .on { color: var(--blue); }
.app-logo {
  flex: 1;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #0D1F40, #071428);
  color: #fff;
  text-align: center;
  gap: 8px;
}
.app-toggles { padding: 42px 14px 14px; background: #F4F7FB; flex: 1; }
.toggle {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; border-radius: 12px; padding: 10px 12px; margin-bottom: 8px;
  font-size: 11px; font-weight: 600;
}
.switch { width: 32px; height: 18px; background: var(--blue); border-radius: 20px; position: relative; }
.switch::after {
  content: ''; position: absolute; right: 2px; top: 2px;
  width: 14px; height: 14px; background: #fff; border-radius: 50%;
}
.switch.off { background: #C9D2DE; }
.switch.off::after { right: auto; left: 2px; }

/* ---- real app UI ---- */
.app-real {
  padding: 34px 12px 6px;
  background: #F4F6F8;
  overflow: hidden;
}
.ar-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.ar-actions { display: flex; gap: 8px; color: #1a2a44; }
.ar-hero { text-align: center; padding: 2px 0 8px; }
.ar-num {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: #10233F;
}
.ar-unit {
  color: var(--blue);
  font-weight: 800;
  font-size: 15px;
  margin-top: 2px;
}
.ar-sub { color: #8A94A3; font-size: 11px; margin-top: 2px; }
.ar-msg {
  color: #6B7583;
  font-size: 9.5px;
  line-height: 1.35;
  margin: 8px 8px 10px;
}
.ar-card {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(16, 35, 63, 0.07);
  margin-bottom: 8px;
}
.ar-level { display: grid; grid-template-columns: 44px 1fr auto; gap: 8px; align-items: center; }
.ar-badge {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 45%, #E8F1FF, #D6E6FF);
  box-shadow: 0 0 0 4px rgba(29, 97, 242, 0.12);
}
.ar-k { font-size: 8px; letter-spacing: .12em; font-weight: 700; color: #9AA3B0; }
.ar-level-name { font-size: 15px; font-weight: 800; color: #12243C; line-height: 1.1; }
.ar-next { font-size: 8px; letter-spacing: .08em; font-weight: 700; color: #9AA3B0; margin-top: 8px; }
.ar-days { font-size: 11px; font-weight: 800; color: #12243C; margin: 3px 0 6px; }
.ar-bar-track { height: 6px; background: #E6EBF1; border-radius: 8px; overflow: hidden; }
.ar-bar-fill { height: 100%; width: 100%; background: var(--blue); border-radius: 8px; }
.ar-save { display: grid; grid-template-columns: 1fr 56px; align-items: center; gap: 6px; }
.ar-save h4 { font-size: 13px; margin: 0; }
.ar-euro { font-size: 22px; font-weight: 800; color: var(--blue); letter-spacing: -0.03em; line-height: 1.1; }
.ar-save small { color: #8A94A3; font-size: 9px; }
.ar-nav {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 8px 18px 10px;
  color: #B0B8C4;
}
.ar-nav .on { color: var(--blue); }
.ar-nav svg { display: block; margin: 0 auto; }

.app-levels { padding: 34px 10px 8px; background: #F4F6F8; overflow: hidden; }
.lv-line { position: relative; padding-left: 14px; overflow: auto; }
.lv-line::before {
  content: '';
  position: absolute;
  left: 4px; top: 8px; bottom: 8px;
  width: 2px; background: #D7E4F8;
}
.lv-item {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 6px 8px 6px 10px;
  margin-bottom: 5px;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 7px;
  align-items: center;
  box-shadow: 0 3px 10px rgba(16,35,63,.05);
}
.lv-item::before {
  content: '';
  position: absolute;
  left: -12px; width: 8px; height: 8px; border-radius: 50%;
  background: #D0DCEB; border: 2px solid #F4F6F8;
}
.lv-item.on { box-shadow: 0 0 0 1.5px #1D61F2, 0 6px 14px rgba(29,97,242,.15); }
.lv-item.on::before { background: var(--blue); }
.lv-ico { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; }
.lv-item h4 { font-size: 11px; margin: 0; display: flex; align-items: center; gap: 6px; }
.lv-item p { font-size: 8px; color: #8A94A3; margin: 1px 0 0; line-height: 1.25; }
.lv-pill {
  display: inline-block; font-size: 8px; font-weight: 700;
  background: #EEF3FA; color: #5B6B80; border-radius: 8px; padding: 1px 6px;
}
.lv-item.on .lv-pill { background: #E8F0FF; color: var(--blue); }
.device.sm .ar-num { font-size: 32px; }
.device.sm .ar-msg, .device.sm .ar-save { display: none; }
.device.sm .app-real { padding: 28px 8px 4px; }

/* ---- hero ---- */
.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 28px 0 0;
}
.hero-photo {
  position: absolute;
  top: 0; right: 0; bottom: 72px;
  width: 54%;
  background: center / cover no-repeat;
  filter: saturate(.88) contrast(1.04);
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.82) 18%, rgba(255,255,255,0) 46%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  min-height: 540px;
  gap: 20px;
}
.hero-copy { max-width: 540px; }
.hero-copy h1 { margin-bottom: 16px; }
.hero-copy .lead { margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 18px; }
.fi-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}
.trust {
  display: flex; flex-wrap: wrap; gap: 14px;
  color: var(--muted); font-size: .9rem; font-weight: 600; margin-bottom: 14px;
}
.trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-visual {
  display: grid;
  place-items: center;
  min-height: 520px;
}

/* ---- stats ---- */
.stats {
  position: relative;
  z-index: 3;
  background: #fff;
  padding: 8px 0 36px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; gap: 12px; align-items: flex-start; }
.stat-ico {
  width: 40px; height: 40px;
  border: 1.4px solid #C5D4F5;
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--blue);
  flex-shrink: 0;
  background: #F7FAFF;
}
.stat b { display: block; font-size: 1.22rem; letter-spacing: -.02em; }
.stat small { color: var(--muted); font-size: .82rem; }

/* ---- impact ---- */
.impact {
  background: linear-gradient(135deg, #00152F, #002248 55%, #001226);
  color: #fff;
  padding: 78px 0;
  position: relative;
  overflow: hidden;
}
.impact-grid {
  display: grid;
  grid-template-columns: 1.15fr .7fr 1.05fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.impact .kicker { color: #7EA6FF; }
.impact h2 { color: #fff; margin-bottom: 14px; }
.impact p { color: rgba(255,255,255,.76); max-width: 36ch; }
.heart { width: 168px; height: auto; margin: 0 auto; filter: drop-shadow(0 18px 28px rgba(0,0,0,.28)); }
.impact-stats { position: relative; display: grid; gap: 18px; padding: 8px 0 8px 12px; }
.finland {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: auto;
  opacity: .2;
}
.impact-stats b { display: block; font-size: 1.35rem; font-weight: 800; }
.impact-stats span { color: rgba(255,255,255,.65); font-size: .86rem; }

/* ---- about ---- */
.about { padding: 88px 0; }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.photo {
  min-height: 360px;
  border-radius: 6px;
  background: #d7e0ea center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.about-copy .lead { margin: 14px 0 0; }
.values-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.value-ico { width: 42px; height: 42px; color: var(--blue); margin-bottom: 10px; display: block; }
.value p { color: var(--muted); font-size: .92rem; margin-top: 4px; }

/* ---- features overlay ---- */
.features {
  position: relative;
  padding: 88px 0;
  min-height: 620px;
  overflow: hidden;
}
.features-bg {
  position: absolute;
  inset: 0;
  background: center right / cover no-repeat;
  filter: saturate(.9);
}
.features-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 38%, rgba(255,255,255,.94) 52%, rgba(255,255,255,.2) 70%, transparent 82%);
}
.features .container { position: relative; z-index: 1; }
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  max-width: 560px;
  margin-top: 28px;
}
.feat { display: grid; gap: 8px; }
.feat svg { width: 36px; height: 36px; color: var(--blue); }
.feat p { color: var(--muted); font-size: .92rem; max-width: 28ch; }

/* ---- steps ---- */
.steps-sec { padding: 88px 0 96px; }
.center-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 32px; height: 32px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--blue); color: #fff;
  display: grid; place-items: center; font-weight: 800;
}
.step .device { margin: 0 auto 18px; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .92rem; max-width: 28ch; margin-inline: auto; }
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 210px; right: -14px;
  width: 28px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 14'%3E%3Cpath d='M1 7h22m0 0-4-4m4 4-4 4' stroke='%230052FF' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.icon-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.icon-step { text-align: center; position: relative; padding: 8px 16px; }
.icon-bubble {
  width: 72px; height: 72px; margin: 0 auto 16px;
  border: 1.5px solid #C9D8F8; border-radius: 50%;
  display: grid; place-items: center; color: var(--blue);
}
.icon-step:not(:last-child)::after {
  content: '';
  position: absolute; top: 40px; right: -16px; width: 32px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 14'%3E%3Cpath d='M1 7h26m0 0-5-5m5 5-5 5' stroke='%230052FF' stroke-width='1.7' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---- checklist ---- */
.checks { display: grid; gap: 12px; margin: 22px 0 26px; }
.checks li {
  display: flex; gap: 10px; align-items: flex-start;
  font-weight: 500;
}
.checks svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }

/* ---- stores ---- */
.stores { display: flex; flex-wrap: wrap; gap: 12px; }
.store {
  display: inline-flex; align-items: center; gap: 10px;
  background: #111; color: #fff; border-radius: 10px;
  padding: 8px 16px 8px 12px; min-height: 54px;
}
.store small { display: block; font-size: 9px; letter-spacing: .04em; opacity: .85; text-transform: uppercase; }
.store b { display: block; font-size: 16px; line-height: 1.1; }

/* ---- cta ---- */
.cta {
  background: #00162F center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
  position: relative;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,18,40,.92), rgba(0,18,40,.78) 50%, rgba(0,18,40,.55));
}
.cta .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 24px; }
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,.78); max-width: 42ch; margin-bottom: 26px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-phone { display: grid; place-items: center; }

/* ---- quote / partners ---- */
.quote-band {
  background: var(--navy);
  color: #fff;
  padding: 64px 0;
}
.partners h4 { font-size: .95rem; font-weight: 600; margin-bottom: 22px; }
.logo-row { display: flex; flex-wrap: wrap; gap: 28px 32px; align-items: center; }
.logo-row span { font-weight: 800; letter-spacing: .04em; font-size: 1.15rem; opacity: .92; }

/* ---- page hero variants ---- */
.page-hero { position: relative; padding: 48px 0 40px; overflow: hidden; min-height: 560px; }
.page-hero .hero-photo { bottom: 0; width: 52%; }
.page-hero .hero-grid { min-height: 480px; }
.corp-stats { background: var(--soft); padding: 28px 0; }
.corp-stats .stats-row { border: 0; padding: 0; }
.corp-stat { text-align: left; display: flex; gap: 12px; }
.corp-stat small { display: block; color: var(--muted); font-size: .8rem; margin-bottom: 2px; }

.values-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 8px 0 80px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 36px;
}

/* ---- footer ---- */
.site-footer { background: var(--footer); color: rgba(255,255,255,.72); padding: 56px 0 0; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 36px;
}
.site-footer .logo { color: #fff; margin-bottom: 10px; }
.foot-col h4 { color: #fff; font-size: .92rem; margin-bottom: 14px; }
.foot-col a { display: block; font-size: .9rem; margin-bottom: 10px; color: rgba(255,255,255,.68); }
.foot-col a:hover { color: #fff; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  display: grid; place-items: center; color: #fff; margin: 0;
}
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: .82rem;
}
.foot-company {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  line-height: 1.35;
}
.foot-legal { display: flex; align-items: center; gap: 16px; }

.flag-fi {
  width: 22px; height: 14px; background: #fff; border-radius: 2px; position: relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); display: inline-block; vertical-align: middle;
}
.flag-fi::before { content:''; position:absolute; left:0; top:5px; width:100%; height:4px; background:#002F6C; }
.flag-fi::after { content:''; position:absolute; left:7px; top:0; width:4px; height:100%; background:#002F6C; }

/* blog */
.blog-wrap { padding: 56px 0 80px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 36px; }
.blog-card { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
.blog-card .img { height: 168px; background: #d5deea center/cover; }
.blog-card .body { padding: 18px; }
.blog-card .meta { font-size: .78rem; color: var(--muted); margin-bottom: 6px; }

.form { display: grid; gap: 14px; max-width: 560px; margin-inline: auto; }
.form label { display: grid; gap: 6px; font-weight: 600; font-size: .9rem; }
.form input, .form textarea {
  border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; min-height: 48px;
}
details.faq { border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; background: #fff; }
details.faq + details.faq { margin-top: 10px; }
details.faq summary { font-weight: 700; cursor: pointer; }
details.faq p { margin-top: 8px; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(16px); transition: .65s ease; }
.reveal.show { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    transform: none; flex-direction: column; background: #fff;
    padding: 16px 24px 24px; gap: 0; border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--soft); }
  .menu-toggle { display: block; }
  .header-inner .btn { display: none; }
  .hero-grid, .about-split, .impact-grid, .cta .container,
  .foot-grid, .stats-row, .steps, .icon-steps, .feat-grid, .values-3, .values-4, .blog-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo, .page-hero .hero-photo { width: 100%; opacity: .28; bottom: 0; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; }
  .hero-visual { min-height: 420px; order: -1; }
  .step:not(:last-child)::after, .icon-step:not(:last-child)::after { display: none; }
  .features-bg::before { background: linear-gradient(#fff 0%, rgba(255,255,255,.92) 70%, rgba(255,255,255,.55)); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--container)); }
  .foot-grid { grid-template-columns: 1fr; }
  .device { width: 210px; height: 430px; }
}
