/* ============================================================
   WEBMO — Landing page
   Design language: Apple-tight minimalism (design.md) + hand-drawn
   doodles for warmth. Single blue accent #0066cc.
   ============================================================ */

:root {
  /* Accent (the only brand color) */
  --blue: #0066cc;
  --blue-focus: #0071e3;
  --blue-on-dark: #2997ff;

  /* Surfaces */
  --white: #ffffff;
  --parchment: #f5f5f7;
  --pearl: #fafafc;
  --tile-1: #272729;
  --tile-2: #2a2a2c;
  --tile-3: #1f1f21;
  --black: #000000;

  /* Text */
  --ink: #1d1d1f;
  --ink-80: #333333;
  --ink-48: #6e6e73;
  --on-dark: #ffffff;
  --muted-dark: #a1a1a6;

  /* Hairlines */
  --hairline: #e3e3e6;
  --divider: #f0f0f0;

  /* Radii */
  --r-sm: 8px;
  --r-md: 11px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-pill: 9999px;

  /* Spacing */
  --s-xxs: 4px;
  --s-xs: 8px;
  --s-sm: 12px;
  --s-md: 17px;
  --s-lg: 24px;
  --s-xl: 32px;
  --s-xxl: 48px;
  --s-section: 96px;

  /* Shadow — the only one in the system, for elevated objects */
  --shadow-product: rgba(0, 0, 0, 0.22) 3px 5px 30px 0;

  --maxw: 1120px;
  --nav-h: 56px;

  --font-display: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-hand: "Poppins", "Inter", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.374px;
  color: var(--ink);
  background: var(--white);
  font-feature-settings: "ss03", "cv05";
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
::selection { background: rgba(0, 102, 204, 0.18); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Section rhythm ---------- */
.tile { padding: var(--s-section) 0; position: relative; overflow: clip; }
.tile--white { background: var(--white); }
.tile--parchment { background: var(--parchment); }
.tile--dark { background: var(--tile-1); color: var(--on-dark); }
.tile--dark h1, .tile--dark h2, .tile--dark h3 { color: var(--on-dark); }

.eyebrow {
  font-family: var(--font-hand);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--blue);
  line-height: 1.25;
}
.tile--dark .eyebrow { color: var(--blue-on-dark); }

.section-head { max-width: 760px; }
.section-head h2 {
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -0.03em;
}
.section-head .lead {
  margin-top: 20px;
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 1.42;
  color: var(--ink-48);
}
.tile--dark .section-head .lead { color: var(--muted-dark); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 400; letter-spacing: -0.2px;
  border: none; cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.95); }
.btn:focus-visible { outline: 2px solid var(--blue-focus); outline-offset: 3px; }

.btn--pill { background: var(--blue); color: #fff; border-radius: var(--r-pill); padding: 12px 24px; }
.btn--pill:hover { background: #0a72db; }

.btn--ghost { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); border-radius: var(--r-pill); padding: 10.5px 22px; }
.btn--ghost:hover { background: rgba(0,102,204,0.06); }

.btn--utility { background: var(--ink); color: #fff; border-radius: var(--r-sm); padding: 8px 16px; font-size: 14px; letter-spacing: -0.224px; }
.btn--utility:hover { background: #000; }

.btn--lg { font-size: 18px; padding: 15px 30px; }

.btn--block { width: 100%; }

.textlink {
  color: var(--blue); font-size: 17px; display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s ease;
}
.textlink:hover { gap: 11px; }
.tile--dark .textlink { color: var(--blue-on-dark); }
.textlink svg { width: 14px; height: 14px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(245,245,247,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.09);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled { border-bottom-color: rgba(0,0,0,0.12); box-shadow: 0 1px 12px rgba(0,0,0,0.05); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }

.logo { display: inline-flex; align-items: baseline; gap: 1px; font-size: 23px; font-weight: 600; letter-spacing: -0.04em; color: var(--ink); position: relative; }
.logo .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); display: inline-block; margin-left: 2px; transform: translateY(-1px); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; letter-spacing: -0.2px; color: var(--ink-80); transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }

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

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: calc(var(--nav-h) + 70px); padding-bottom: 70px; text-align: center; }
.hero .eyebrow { display: inline-block; margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: -0.04em; line-height: 1.02;
  max-width: 14ch; margin: 0 auto;
}
.hero .hl { position: relative; color: var(--blue); white-space: nowrap; }
.hero-underline {
  position: absolute; left: -4%; bottom: -0.16em; width: 108%; height: 0.32em; overflow: visible;
}
.hero-sub {
  margin: 30px auto 0; max-width: 620px;
  font-size: clamp(19px, 2.4vw, 23px); font-weight: 400; line-height: 1.45; color: var(--ink-48);
}
.hero-cta { margin-top: 38px; display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; position: relative; }
.hero-note {
  position: absolute; left: calc(100% + 14px); top: 4px;
  font-family: var(--font-hand); font-size: 14px; font-weight: 600; color: var(--ink-48); white-space: nowrap;
  display: flex; align-items: center; gap: 4px;
}
.hero-note svg { width: 46px; height: 30px; }

.hero-stage { position: relative; margin: 72px auto 0; max-width: 980px; }

/* ---------- Dashboard mockup ---------- */
.dash {
  display: grid; grid-template-columns: 168px 1fr; text-align: left;
  background: #fff; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-product); border: 1px solid var(--hairline);
  letter-spacing: -0.01em;
}
.dash-side { background: #eef3fa; padding: 22px 16px; display: flex; flex-direction: column; gap: 26px; border-right: 1px solid #e4ebf5; }
.dash-logo { font-size: 20px; font-weight: 600; letter-spacing: -0.04em; color: var(--ink); display: inline-flex; align-items: baseline; }
.dash-logo .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); display: inline-block; margin-left: 2px; }
.dash-nav { display: flex; flex-direction: column; gap: 6px; }
.dash-link { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 600; color: var(--ink-80); padding: 10px 12px; border-radius: 10px; }
.dash-link .dash-ic { width: 22px; height: 22px; border-radius: 6px; background: #dde7f4; color: var(--blue); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.dash-link.active { background: var(--blue); color: #fff; box-shadow: 0 6px 16px -6px rgba(0,102,204,0.6); }
.dash-link.active .dash-ic { background: rgba(255,255,255,0.22); color: #fff; }
.dash-side-foot { margin-top: auto; display: flex; align-items: center; gap: 10px; }
.dash-avatar { width: 30px; height: 30px; border-radius: 50%; background: #d6e2f2; color: var(--blue); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.dash-side-name { font-size: 13px; color: var(--ink-48); }

.dash-main { padding: 22px 24px 24px; min-width: 0; }
.dash-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.dash-search { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #9aa0a6; background: var(--parchment); border-radius: var(--r-pill); padding: 9px 16px; flex: 1; max-width: 280px; }
.dash-search svg { width: 15px; height: 15px; }
.dash-h { font-size: 19px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); white-space: nowrap; }
.dash-subhead { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 22px 0 16px; }
.dash-subhead h4 { font-size: 22px; font-weight: 600; letter-spacing: -0.03em; }
.dash-date { font-size: 12px; color: var(--ink-48); border: 1px solid var(--hairline); border-radius: var(--r-pill); padding: 6px 13px; white-space: nowrap; }

.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.dash-kpi { background: #f4f8fd; border: 1px solid #e7eff8; border-radius: 14px; padding: 13px 14px; }
.dash-kpi .lbl { font-size: 11px; color: var(--ink-48); }
.dash-kpi .row { display: flex; align-items: flex-end; justify-content: space-between; gap: 6px; margin-top: 6px; }
.dash-kpi .val { font-size: 23px; font-weight: 600; letter-spacing: -0.04em; color: var(--ink); line-height: 1; }
.dash-kpi .spark { width: 52px; height: 22px; flex: none; }

.dash-charts { display: grid; grid-template-columns: 1.8fr 1fr; gap: 12px; margin-top: 12px; }
.dash-cardbox { border: 1px solid var(--hairline); border-radius: 14px; padding: 16px 18px; }
.dash-cardtitle { font-size: 14px; font-weight: 600; color: var(--ink); }
.dash-area { width: 100%; height: 124px; margin-top: 6px; display: block; }
.dash-axis { display: flex; justify-content: space-between; font-size: 10px; color: #9aa0a6; margin-top: 4px; }
.dash-sources { display: flex; flex-direction: column; }
.dash-donut { width: 108px; height: 108px; margin: 8px auto 0; }
.donut-seg { stroke-dasharray: 276.5; stroke-dashoffset: 276.5; transition: stroke-dashoffset 1.4s cubic-bezier(.5,.1,.2,1) .3s; }
.dash.drawn .donut-seg, .reveal.in .donut-seg { stroke-dashoffset: 171; }
.dash-legend { display: flex; justify-content: center; gap: 18px; margin-top: 12px; font-size: 12px; color: var(--ink-48); }
.dash-legend span { display: inline-flex; align-items: center; gap: 6px; }
.dash-legend i { width: 9px; height: 9px; border-radius: 3px; }
.dash-legend .d-l { background: #dbe8f8; }
.dash-legend .d-b { background: var(--blue); }

/* ============================================================
   MARQUEE — outils & apps
   ============================================================ */
.tools { padding: 54px 0; border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); background: var(--white); }
.tools-label { text-align: center; font-size: 14px; letter-spacing: 0.02em; color: var(--ink-48); margin-bottom: 30px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.tool { display: flex; align-items: center; gap: 12px; color: #86868b; font-size: 21px; font-weight: 600; letter-spacing: -0.02em; white-space: nowrap; }
.tool svg { width: 24px; height: 24px; }
.tool img { height: 26px; width: auto; opacity: 0.5; transition: opacity .25s ease; }
.tool:hover img { opacity: 0.8; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service {
  position: relative; background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: 34px 32px 30px; transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  overflow: hidden;
}
.service:hover { transform: translateY(-4px); box-shadow: rgba(0,0,0,0.08) 0 18px 40px -18px; }
.service-num { position: absolute; top: 24px; right: 30px; font-family: var(--font-hand); font-weight: 700; font-size: 26px; color: var(--hairline); }
.service-icon { width: 76px; height: 76px; margin-bottom: 22px; }
.service h3 { font-size: 28px; letter-spacing: -0.02em; }
.service .tag { font-family: var(--font-hand); font-weight: 600; font-size: 14px; letter-spacing: -0.01em; color: var(--blue); margin-bottom: 6px; line-height: 1.2; }
.service p { margin-top: 12px; font-size: 16px; line-height: 1.5; color: var(--ink-48); }
.service ul { margin: 18px 0 22px; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 7px; }
.service li { font-size: 13px; color: var(--ink-80); background: var(--parchment); border-radius: var(--r-pill); padding: 5px 12px; }
.service .textlink { font-size: 16px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.process-line { position: absolute; top: 26px; left: 8%; width: 84%; height: 40px; pointer-events: none; }
.step { position: relative; }
.step-n {
  width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 600; color: var(--blue-on-dark);
  background: var(--tile-2); margin-bottom: 22px;
}
.step h3 { font-size: 22px; }
.step p { margin-top: 10px; font-size: 16px; color: var(--muted-dark); line-height: 1.5; }

/* ============================================================
   KPIs / counters
   ============================================================ */
.kpis { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.kpi { text-align: left; }
.kpi .num { font-size: clamp(48px, 6vw, 76px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; color: var(--blue); }
.kpi .num .suffix { font-size: 0.5em; }
.kpi .lbl { margin-top: 14px; font-size: 16px; color: var(--ink-48); max-width: 22ch; }
.kpi-doodle { width: 40px; height: 40px; margin-bottom: 14px; }

/* ============================================================
   CASES
   ============================================================ */
.cases-wrap { position: relative; margin-top: 56px; }
.cases-scroller { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 2px 10px; scrollbar-width: none; -ms-overflow-style: none; }
.cases-scroller::-webkit-scrollbar { display: none; }
.cases-scroller .case { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; }
.cases-arrow {
  position: absolute; top: 38%; transform: translateY(-50%); z-index: 6;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--hairline); color: var(--ink);
  background: rgba(255,255,255,0.9); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1); transition: background .2s ease, transform .2s ease, opacity .2s ease;
}
.cases-arrow:hover { background: #fff; }
.cases-arrow:active { transform: translateY(-50%) scale(0.92); }
.cases-arrow.prev { left: -16px; }
.cases-arrow.next { right: -16px; }
.cases-arrow svg { width: 21px; height: 21px; }
.cases-arrow[disabled] { opacity: 0; pointer-events: none; }
.case {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(170deg, #eef0f2 0%, #d4d7dc 52%, #abafb6 100%);
  padding: 30px 22px 24px; display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.case:hover { transform: translateY(-4px); box-shadow: rgba(0,0,0,0.14) 0 22px 50px -22px; }

.case-shot { display: flex; flex: 1; align-items: center; justify-content: center; padding: 4px 0 26px; }
.laptop { width: 100%; max-width: 440px; transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.case:hover .laptop { transform: translateY(-3px) scale(1.02); }
.laptop-screen {
  border: 7px solid #1c1c1e; border-radius: 12px 12px 0 0;
  background: linear-gradient(135deg, #2a2a2c, #1c1c1e);
  aspect-ratio: 16 / 10; overflow: hidden; box-shadow: var(--shadow-product);
}
.laptop-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.laptop-screen image-slot { width: 100%; height: 100%; display: block; }
.laptop-base {
  width: 118%; margin-left: -9%; height: 13px; position: relative;
  background: linear-gradient(180deg, #d7dadf 0%, #b6bac1 60%, #9498a0 100%);
  border-radius: 0 0 7px 7px;
}
.laptop-base::after {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 22%; height: 5px; background: #9b9fa6; border-radius: 0 0 6px 6px;
}

.case-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.case-meta-txt h3 { font-size: 22px; letter-spacing: -0.03em; color: var(--ink); }
.case-meta-txt p { margin-top: 4px; font-size: 14px; color: #54565b; }
.case-eye {
  flex: none; width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,0.18); color: var(--ink);
  background: rgba(255,255,255,0.35); backdrop-filter: blur(4px);
  transition: background .2s ease, transform .2s ease;
}
.case-eye:hover { background: rgba(255,255,255,0.7); }
.case-eye:active { transform: scale(0.94); }
.case-eye svg { width: 21px; height: 21px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { margin: 0; background: var(--white); border-radius: var(--r-lg); padding: 32px 30px; border: 1px solid var(--hairline); position: relative; }
.quote .stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--blue); }
.quote .stars svg { width: 17px; height: 17px; }
.quote blockquote { margin: 0; font-size: 19px; line-height: 1.5; letter-spacing: -0.01em; color: var(--ink); }
.quote .by { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.quote .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #dfe6ef, #c9d4e2); display:flex; align-items:center; justify-content:center; font-weight:600; color: var(--ink-48); font-size: 16px; }
.quote .by .name { font-size: 15px; font-weight: 600; }
.quote .by .role { font-size: 14px; color: var(--ink-48); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { margin-top: 50px; max-width: 820px; }
.faq-item { border-top: 1px solid var(--hairline); }
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.faq-icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--blue); border-radius: 2px; transition: transform .3s ease; }
.faq-icon::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-icon::after { left: 10px; top: 0; width: 2px; height: 22px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding-bottom: 26px; font-size: 17px; line-height: 1.55; color: var(--ink-48); max-width: 68ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { margin-top: 56px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: start; }
.contact-points { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 20px; }
.contact-points li { display: flex; gap: 14px; align-items: flex-start; font-size: 17px; color: var(--muted-dark); }
.contact-points .ck { flex: none; width: 26px; height: 26px; margin-top: 1px; }
.form { background: #fff; border-radius: var(--r-xl); padding: 34px; box-shadow: var(--shadow-product); }
.form h3 { color: var(--ink); font-size: 24px; letter-spacing: -0.02em; }
.form .sub { font-size: 15px; color: var(--ink-48); margin-top: 8px; }
.field { margin-top: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-80); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-display); font-size: 16px; color: var(--ink);
  background: var(--parchment); border: 1px solid transparent; border-radius: var(--r-md);
  padding: 13px 16px; transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--blue); background: #fff; }
.field input:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--blue-focus); outline-offset: 2px; }
.field textarea { resize: vertical; min-height: 90px; }
.form-msg { margin-top: 16px; font-size: 14px; color: var(--blue); display: none; }
.form.sent .form-msg { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--parchment); padding: 72px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer .logo { font-size: 27px; }
.footer-blurb { margin-top: 18px; font-size: 15px; color: var(--ink-48); max-width: 32ch; line-height: 1.5; }
.footer-col h4 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 15px; color: var(--ink-48); padding: 6px 0; transition: color .15s ease; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: var(--ink-48); }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--hairline); display: flex; align-items: center; justify-content: center; color: var(--ink-48); transition: .2s; }
.footer-social a:hover { color: var(--blue); border-color: var(--blue); }
.footer-social svg { width: 17px; height: 17px; }

/* ============================================================
   ANIMATION PRIMITIVES
   ============================================================ */
.doodle [data-draw] {
  stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.2s cubic-bezier(.6,.1,.3,1);
}
.doodle.drawn [data-draw] { stroke-dashoffset: 0; }
.doodle.drawn [data-draw="d2"] { transition-delay: .25s; }
.doodle.drawn [data-draw="d3"] { transition-delay: .5s; }
.doodle.drawn [data-draw="d4"] { transition-delay: .75s; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s 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; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .doodle [data-draw] { stroke-dashoffset: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  :root { --s-section: 72px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 36px 30px; }
  .process-line { display: none; }
  .kpis { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .cases-scroller .case { flex-basis: calc((100% - 24px) / 2); }
  .quotes { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-note { display: none; }

  .nav.open { height: auto; flex-direction: column; align-items: stretch; padding-bottom: 16px; }
  .nav.open .wrap { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav.open .nav-links { display: flex; flex-direction: column; gap: 2px; padding: 10px 0; }
  .nav.open .nav-links a { padding: 11px 0; font-size: 17px; }
  .nav.open .nav-right { justify-content: flex-start; padding-bottom: 8px; }
}
@media (max-width: 720px) {
  .dash { grid-template-columns: 1fr; }
  .dash-side { flex-direction: row; align-items: center; gap: 14px; padding: 12px 16px; border-right: none; border-bottom: 1px solid #e4ebf5; }
  .dash-nav { flex-direction: row; gap: 6px; flex: 1; }
  .dash-link { padding: 8px 12px; font-size: 13px; }
  .dash-side-foot { display: none; }
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .dash-charts { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .process-grid, .kpis { grid-template-columns: 1fr; }
  .cases-scroller .case { flex-basis: 84%; }
  .cases-arrow { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .dash-link .dash-ic { display: none; }
  .dash-h { font-size: 15px; }
}

/* ---- Nav active link ---- */
.nav-links .nav-active { color: var(--blue); font-weight: 600; }

/* ---- Language switcher ---- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
}
.lang-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-48);
  text-decoration: none;
  padding: 3px 6px;
  border-radius: var(--r-sm);
  transition: color 0.18s, background 0.18s;
}
.lang-btn:hover { color: var(--ink); background: var(--divider); }
.lang-btn.active { color: var(--blue); }
.lang-sep { color: var(--hairline); font-size: 13px; user-select: none; }
