/* ==========================================================================
   Eracon Oy — Design System
   Modern B2B industrial-IT site. Brand: deep navy + coral accent.
   Author: Eracon / ville-eracon
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  /* Brand */
  --navy-900: #00102e;
  --navy-800: #07193b;
  --navy-700: #11244c;
  --navy-600: #233452;
  --navy-500: #34456a;

  --accent: #d65050;
  --accent-600: #c23d3d;
  --accent-400: #ee6b62;
  --accent-soft: #fdecec;

  /* Neutrals */
  --ink: #00102e;
  --body: #475069;
  --muted: #6d7685;
  --line: #e7e9f0;
  --line-strong: #d7dae6;

  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-mist: #eef1f8;
  --white: #ffffff;

  /* Effects */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(0, 16, 46, .06), 0 2px 8px rgba(0, 16, 46, .05);
  --shadow: 0 10px 30px -12px rgba(0, 16, 46, .18);
  --shadow-lg: 0 30px 60px -20px rgba(0, 16, 46, .28);
  --ring: 0 0 0 4px rgba(214, 80, 80, .18);

  /* Type */
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Sora", var(--font-body);

  /* Layout — kasvaa leveillä näytöillä, mutta ei koko ruudun levyiseksi */
  --container: clamp(1180px, 90vw, 1400px);
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 76px;
}

/* ---- Reset / base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* Ankkurilinkit eivät saa jäädä sticky-headerin alle */
:where(section, article, div)[id] { scroll-margin-top: 96px; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
strong { color: var(--ink); font-weight: 700; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}

::selection { background: var(--accent); color: #fff; }

/* ---- Layout helpers ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--mist { background: var(--bg-mist); }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.section--navy {
  background: var(--navy-900);
  color: #c7cede;
}
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.section-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section-head.left .eyebrow::before { display: inline-block; }

.section-title { font-size: clamp(28px, 4vw, 44px); }
.section-sub { margin-top: 18px; font-size: clamp(17px, 2vw, 19px); color: var(--muted); }
.section--navy .section-sub { color: #9fa9c0; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-split { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(32px, 5vw, 72px); }

.lead { font-size: clamp(18px, 2.2vw, 21px); color: var(--body); line-height: 1.6; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 12px 24px -10px rgba(214, 80, 80, .7); }
.btn--primary:hover { background: var(--accent-600); box-shadow: 0 16px 30px -10px rgba(214, 80, 80, .8); }

.btn--dark { background: var(--navy-900); color: #fff; }
.btn--dark:hover { background: var(--navy-700); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy-900); background: var(--navy-900); color: #fff; }

.btn--light { background: #fff; color: var(--navy-900); }
.btn--light:hover { background: var(--accent); color: #fff; }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outline-light:hover { background: #fff; color: var(--navy-900); border-color: #fff; }

.btn--lg { padding: 17px 32px; font-size: 16.5px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 600; color: var(--accent);
  transition: gap .2s ease, color .2s ease;
}
.textlink svg { width: 17px; height: 17px; transition: transform .2s ease; }
.textlink:hover { color: var(--accent-600); }
.textlink:hover svg { transform: translateX(4px); }

/* ---- Header / nav -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(0, 16, 46, .5);
}
.nav-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand / logo */
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}
.brand-name .dot { color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link {
  position: relative;
  padding: 9px 14px;
  border-radius: 9px;
  font-weight: 500;
  font-size: 15.5px;
  color: var(--navy-700);
  transition: color .18s ease, background .18s ease;
}
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--navy-900); font-weight: 600; }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px; border-radius: 2px;
  background: var(--accent);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch { display: inline-flex; align-items: center; gap: 2px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; }
.lang-switch a { padding: 5px 8px; border-radius: 7px; color: var(--muted); transition: color .15s ease, background .15s ease; }
.lang-switch a.active { color: var(--navy-900); background: var(--bg-mist); }
.lang-switch a:hover { color: var(--accent); }
.lang-switch .sep { color: var(--line-strong); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  align-items: center; justify-content: center;
  color: var(--navy-900);
}
.nav-toggle svg { width: 26px; height: 26px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: rgba(0, 16, 46, .97);
  backdrop-filter: blur(8px);
  z-index: 99;
  padding: 32px var(--gutter) 48px;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-menu a.m-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-menu a.m-link:hover { color: var(--accent-400); }
.mobile-menu .m-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .m-lang { margin-top: 20px; color: #9fa9c0; font-family: var(--font-display); font-weight: 600; }
.mobile-menu .m-lang a { color: #fff; padding: 0 6px; }

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: #c7cede;
  overflow: hidden;
  padding: clamp(72px, 11vw, 140px) 0 clamp(72px, 10vw, 120px);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg::before {
  content: "";
  position: absolute;
  width: 720px; height: 720px;
  top: -260px; right: -160px;
  background: radial-gradient(circle, rgba(214, 80, 80, .55), transparent 62%);
  filter: blur(30px);
  opacity: .65;
}
.hero-bg::after {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  bottom: -300px; left: -180px;
  background: radial-gradient(circle, rgba(52, 69, 106, .9), transparent 60%);
  filter: blur(20px);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 100%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-grid-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 13.5px; font-weight: 500; color: #d7deee;
  margin-bottom: 26px;
}
.hero-badge .tag {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 3px 9px; border-radius: 999px;
}
.hero-title {
  color: #fff;
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
/* Estetään rivinvaihto korostetun termin sisällä (esim. "IT-haasteet"). */
.hero-title .hl { color: var(--accent-400); white-space: nowrap; }
.hero-lead { margin-top: 24px; font-size: clamp(17px, 2.1vw, 20px); color: #a9b2c8; max-width: 620px; }
.hero-cta { margin-top: 36px; }
.hero-trust { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 22px 32px; align-items: center; color: #8b95ac; font-size: 14px; }
.hero-trust .t-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--accent-400); }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.hero-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-card-dot { width: 11px; height: 11px; border-radius: 50%; }
.hero-card .metric { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero-card .metric:last-child { border-bottom: none; }
.hero-card .metric .label { color: #9fa9c0; font-size: 14px; }
.hero-card .metric .val { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 19px; }
.hero-card .metric .val .up { color: #46d39a; font-size: 13px; margin-left: 6px; }
.hero-bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; margin-top: 6px; }
.hero-bar > span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-400)); }
.hero-float {
  position: absolute; bottom: -26px; left: -26px;
  background: #fff; color: var(--navy-900);
  border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 13px;
}
.hero-float .hf-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.hero-float .hf-ic svg { width: 22px; height: 22px; }
.hero-float .hf-num { font-family: var(--font-display); font-weight: 800; font-size: 20px; line-height: 1; }
.hero-float .hf-lbl { font-size: 12.5px; color: var(--muted); }

/* ---- Stat strip ---------------------------------------------------------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 8px; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4vw, 46px); color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.section--navy .stat-num { color: #fff; }
.stat-num .suf { color: var(--accent); }
.stat-label { margin-top: 10px; font-size: 14.5px; color: var(--muted); }
.section--navy .stat-label { color: #9fa9c0; }

/* ---- Cards --------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }

.card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 22px;
}
.card-icon svg { width: 26px; height: 26px; }
.card-title { font-size: 20px; margin-bottom: 10px; }
.card-text { font-size: 15.5px; color: var(--muted); line-height: 1.6; }
.card-link { margin-top: 18px; }

/* numbered / accent variant */
.card--accent { background: var(--navy-900); color: #c7cede; border-color: transparent; }
.card--accent .card-title { color: #fff; }
.card--accent .card-text { color: #9fa9c0; }
.card--accent .card-icon { background: rgba(214,80,80,.18); color: var(--accent-400); }

.card-num { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--accent); letter-spacing: .1em; }

/* ---- Feature list -------------------------------------------------------- */
.feature-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi-ic {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin-top: 2px;
}
.feature-list .fi-ic svg { width: 16px; height: 16px; }
.feature-list .fi-body strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 16.5px; margin-bottom: 2px; }
.feature-list .fi-body span { font-size: 15px; color: var(--muted); }
.section--navy .feature-list .fi-body strong { color: #fff; }
.section--navy .feature-list .fi-body span { color: #9fa9c0; }
.section--navy .feature-list .fi-ic { background: rgba(214,80,80,.18); color: var(--accent-400); }

/* check list (inline) */
.check-list { display: grid; gap: 12px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; }
.check-list svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--accent); margin-top: 3px; }

/* ---- Skills / tech ------------------------------------------------------- */
.skill { margin-bottom: 22px; }
.skill-head { display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 15.5px; margin-bottom: 9px; }
.skill-head .pct { color: var(--accent); }
.skill-track { height: 9px; border-radius: 999px; background: var(--bg-mist); overflow: hidden; }
.skill-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-400)); width: 0; transition: width 1.1s cubic-bezier(.2,.7,.2,1); }

.tech-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.tech-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--navy-700);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}
.tech-badge:hover { transform: translateY(-3px); border-color: var(--accent); color: var(--accent); }
.tech-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* ---- Logos / customers --------------------------------------------------- */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 64px); }
.logo-item { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.6vw, 28px); color: var(--navy-600); opacity: .55; letter-spacing: -0.02em; transition: opacity .2s ease, color .2s ease; }
.logo-item:hover { opacity: 1; color: var(--accent); }

/* ---- Split / showcase ---------------------------------------------------- */
.showcase-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: #fff;
}
/* Valokuva samassa kehyksessä kuin abstraktit havainnekuvat */
.showcase-media picture,
.showcase-media img {
  display: block;
  width: 100%;
  height: auto;
}
.showcase-media img { aspect-ratio: 16 / 9; object-fit: cover; }
.media-frame {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  padding: 22px;
  position: relative;
}
.media-window { background: var(--navy-700); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.media-bar { display: flex; gap: 6px; padding: 11px 14px; background: rgba(0,0,0,.25); }
.media-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.25); }
.media-body { padding: 22px; display: grid; gap: 12px; }
.media-row { display: flex; align-items: center; gap: 12px; }
.media-row .mr-cell { height: 10px; border-radius: 6px; background: rgba(255,255,255,.12); flex: 1; }
.media-row .mr-cell.accent { background: linear-gradient(90deg, var(--accent), var(--accent-400)); max-width: 60%; }
.media-row .mr-chip { padding: 4px 10px; border-radius: 6px; font-size: 11px; font-family: var(--font-display); font-weight: 600; background: rgba(214,80,80,.2); color: var(--accent-400); }

/* ---- CTA band ------------------------------------------------------------ */
.cta {
  position: relative;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute; width: 480px; height: 480px;
  top: -200px; right: -120px;
  background: radial-gradient(circle, rgba(214,80,80,.45), transparent 60%);
  filter: blur(20px);
}
.cta-inner { position: relative; z-index: 2; max-width: 680px; margin-inline: auto; }
.cta h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); }
.cta p { color: #a9b2c8; margin-top: 16px; font-size: 18px; }
.cta .btn-row { justify-content: center; margin-top: 32px; }

/* ---- Page hero (interior) ------------------------------------------------ */
.page-hero {
  background: var(--navy-900);
  color: #c7cede;
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 80px);
}
.page-hero .hero-bg::before { width: 560px; height: 560px; top: -240px; right: -120px; }
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 54px); letter-spacing: -0.035em; }
.page-hero p { margin-top: 20px; font-size: clamp(17px, 2vw, 20px); color: #a9b2c8; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13.5px; color: #8b95ac; margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--accent-400); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb [aria-current] { color: #c7cede; }

/* ---- Contact ------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.info-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.info-card .ic-ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.info-card .ic-ic svg { width: 23px; height: 23px; }
.info-card h3 { font-size: 16px; margin-bottom: 4px; }
.info-card a, .info-card p { color: var(--muted); font-size: 15.5px; }
.info-card a:hover { color: var(--accent); }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 16 / 11; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.2); }

/* ---- Form (contact) ------------------------------------------------------ */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--ink); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 15.5px;
  padding: 13px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: var(--ring); }
.form-note { font-size: 13px; color: var(--muted); }

/* ---- Misc ---------------------------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-600);
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
}
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

.prose { max-width: 800px; }
.prose p { margin-bottom: 20px; color: var(--body); }
.prose h2 { font-size: clamp(24px, 3vw, 32px); margin: 40px 0 16px; }
.prose h3 { font-size: 21px; margin: 32px 0 12px; }
.prose ul { display: grid; gap: 12px; margin: 16px 0 24px; }
.prose ul li { position: relative; padding-left: 28px; color: var(--body); }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* values / icon row */
.value-row { display: flex; gap: 16px; align-items: flex-start; }
.value-row .vr-ic { flex-shrink: 0; width: 50px; height: 50px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.value-row .vr-ic svg { width: 24px; height: 24px; }
.value-row h3 { font-size: 19px; margin-bottom: 6px; }
.value-row p { color: var(--muted); font-size: 15.5px; }

/* timeline */
.timeline { position: relative; display: grid; gap: 28px; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line-strong); }
.timeline li { position: relative; }
.timeline li::before { content: ""; position: absolute; left: -30px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--accent); }
.timeline .tl-year { font-family: var(--font-display); font-weight: 800; color: var(--accent); font-size: 15px; }
.timeline h3 { font-size: 18px; margin: 4px 0 6px; }
.timeline p { color: var(--muted); font-size: 15.5px; }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #9fa9c0; padding-top: clamp(56px, 7vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand-name { color: #fff; }
.footer-about { margin-top: 18px; font-size: 15px; color: #8b95ac; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-display); }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 15px; color: #9fa9c0; transition: color .15s ease; }
.footer-col a:hover { color: var(--accent-400); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; margin-bottom: 13px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent-400); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 26px 0; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: 13.5px; color: #717c95; }
.footer-bottom a:hover { color: var(--accent-400); }
.social { display: flex; gap: 10px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #c7cede; transition: background .2s ease, color .2s ease, transform .2s ease; }
.social a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }

/* ---- Scroll reveal ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

.skip-link { position: absolute; left: -999px; top: 8px; z-index: 200; background: #fff; color: var(--navy-900); padding: 10px 16px; border-radius: 8px; font-weight: 600; }
.skip-link:focus { left: 12px; }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; }
  .grid-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-menu, .nav-actions .btn, .lang-switch { display: none; }
  .nav-toggle { display: inline-flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-float { left: 0; }
  .cta .btn-row .btn { width: 100%; }
}

@media (max-width: 440px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .btn-row .btn { width: 100%; }
}

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