/* =========================================================
   HR talent — Workforce Management S.R.L.
   Brand colors: #1B2F6E (navy) · #1E90D9 (blue)
   Slogan: Oameni Potriviți. Parteneriate de Succes.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --navy: #1B2F6E;
  --navy-700: #16265a;
  --navy-900: #0f1b40;
  --blue: #1E90D9;
  --blue-600: #1577b6;
  --blue-100: #e7f3fb;
  --blue-50: #f3f9fd;
  --ink: #1c2433;
  --muted: #5b6577;
  --line: #e6eaf1;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(27, 47, 110, .08);
  --shadow-md: 0 14px 40px rgba(27, 47, 110, .12);
  --shadow-lg: 0 30px 70px rgba(15, 27, 64, .18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --container: 1200px;
  --grad: linear-gradient(120deg, var(--navy) 0%, var(--blue) 100%);
  --grad-soft: linear-gradient(135deg, #f3f9fd 0%, #eaf4fc 100%);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", sans-serif;
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.01em;
}

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

/* ---------- Helpers ---------- */
.text-blue { color: var(--blue); }
.text-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Poppins", sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-100);
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }

.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #dfe6f5; position: relative; overflow: hidden; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.section--navy .section-head p { color: #b9c4e0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .98rem;
  padding: 14px 28px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 12px 28px rgba(30,144,217,.35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(30,144,217,.45); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn--ghost:hover { background: #fff; color: var(--navy); transform: translateY(-3px); }
.btn--outline { background: #fff; color: var(--navy); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: "Poppins", sans-serif; font-weight: 500; font-size: .96rem; color: var(--ink);
  padding: 9px 15px; border-radius: 10px; position: relative; transition: color .2s, background .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 5px; height: 2px;
  background: var(--blue); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); font-weight: 600; }

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

/* Language switcher */
.lang { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .9rem; color: var(--navy);
  padding: 8px 13px; border: 1.5px solid var(--line); border-radius: 999px; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.lang-btn:hover { border-color: var(--blue); }
.lang-btn .chev { width: 14px; height: 14px; transition: transform .25s; }
.lang.open .lang-btn .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 10px); width: 168px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 7px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .22s var(--ease); z-index: 60;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  padding: 10px 12px; border-radius: 9px; font-size: .94rem; font-weight: 500; color: var(--ink); transition: background .15s;
}
.lang-menu button:hover { background: var(--blue-50); }
.lang-menu button.sel { background: var(--blue-100); color: var(--navy); font-weight: 600; }
.lang-menu .flag { font-size: 1.1rem; line-height: 1; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 10px; border: 1.5px solid var(--line); }
.burger span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav.open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .burger span:nth-child(2) { opacity: 0; }
.nav.open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; overflow: hidden; background: var(--grad-soft); }
.hero::before {
  content: ""; position: absolute; top: -10%; right: -8%; width: 60%; height: 130%;
  background: var(--grad); transform: skewX(-13deg); border-radius: 60px;
  box-shadow: var(--shadow-lg); z-index: 0;
}
.dots { position: absolute; width: 150px; height: 110px; z-index: 1; opacity: .5;
  background-image: radial-gradient(var(--blue) 2px, transparent 2px); background-size: 18px 18px; }
.dots--1 { top: 60px; left: 46%; }
.dots--2 { bottom: 50px; right: 40px; opacity: .3; background-image: radial-gradient(#fff 2px, transparent 2px); }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: clamp(50px,7vw,96px) 0; }
.hero-copy h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; margin-bottom: 22px; }
.hero-copy h1 .line { display: block; }
.hero-lead { font-size: 1.14rem; color: var(--muted); max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--navy); font-weight: 600; }
.hero-badge svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; }
/* keep the 3rd badge ("Candidați pre-filtrați") on its own row so it never overlaps the navy panel */
.hero-badges .hero-badge:nth-child(3) { flex-basis: 100%; }

/* dynamic (rotating) text inside the floating badge */
.hero-float .rot { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.18rem; color: var(--navy); line-height: 1.1; min-width: 132px; }
.hero-float .rot-text { display: inline-block; transition: opacity .35s var(--ease), transform .35s var(--ease); }
.hero-float .rot-text.out { opacity: 0; transform: translateY(-8px); }

.hero-visual { position: relative; }
.hero-visual .frame {
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; aspect-ratio: 4/3; object-fit: cover;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.hero-float .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--grad); display: grid; place-items: center; flex-shrink: 0; }
.hero-float .ic svg { width: 22px; height: 22px; color: #fff; }
.hero-float .num { font-family: "Poppins"; font-weight: 700; font-size: 1.25rem; color: var(--navy); line-height: 1; }
.hero-float .lbl { font-size: .76rem; color: var(--muted); }
.hero-float--1 { left: -26px; bottom: 36px; }
.hero-float--2 { right: -18px; top: 30px; }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust { background: var(--navy); }
.trust .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 38px; }
.trust-item { text-align: center; color: #fff; }
.trust-item .n { font-family: "Poppins"; font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1; }
.trust-item .n span { color: var(--blue); }
.trust-item .t { font-size: .9rem; color: #aebdde; margin-top: 7px; }

/* =========================================================
   CARDS / GRIDS
   ========================================================= */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ic {
  width: 58px; height: 58px; border-radius: 15px; background: var(--blue-100); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 20px; transition: background .3s, color .3s;
}
.card:hover .ic { background: var(--grad); color: #fff; }
.card .ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }

/* Domains chips */
.domains { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.domain {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 12px 22px 12px 14px; font-family: "Poppins"; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; font-size: .96rem;
}
.domain:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: var(--shadow-md); }
.domain .ic { width: 38px; height: 38px; border-radius: 50%; background: var(--blue-100); color: var(--blue); display: grid; place-items: center; }
.domain .ic svg { width: 20px; height: 20px; }

/* =========================================================
   PROCESS / TIMELINE
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; transition: transform .3s var(--ease), box-shadow .3s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step .no { font-family: "Poppins"; font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--blue-100); margin-bottom: 6px; }
.step:hover .no { color: var(--blue); }
.step h3 { font-size: 1.12rem; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: .95rem; }

/* Numbered package list */
.package { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pkg-item { display: flex; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.pkg-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.pkg-no { flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; background: var(--grad); color: #fff; font-family: "Poppins"; font-weight: 700; font-size: 1.2rem; display: grid; place-items: center; }
.pkg-body h3 { font-size: 1.12rem; margin-bottom: 6px; }
.pkg-body p { color: var(--muted); font-size: .95rem; }

/* Feature list with ticks */
.ticks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
.tick { display: flex; gap: 12px; align-items: flex-start; }
.tick svg { width: 24px; height: 24px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.tick span { color: var(--ink); }
.section--navy .tick span { color: #dbe3f5; }
.section--navy .tick svg { color: var(--blue); }

/* Split (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.split--rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: 22px; box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-media .badge-float {
  position: absolute; right: -16px; bottom: -16px; background: var(--grad); color: #fff; border-radius: 18px;
  padding: 18px 22px; box-shadow: var(--shadow-md); max-width: 220px;
}
.split-media .badge-float .big { font-family: "Poppins"; font-weight: 800; font-size: 1.6rem; line-height: 1; }
.split-media .badge-float .sm { font-size: .82rem; opacity: .9; margin-top: 4px; }
.split-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.split-copy > p { color: var(--muted); margin-bottom: 22px; font-size: 1.04rem; }

/* =========================================================
   GUARANTEE / CTA banner
   ========================================================= */
.guarantee { background: var(--grad); color: #fff; border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px); position: relative; overflow: hidden; display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; box-shadow: var(--shadow-lg); }
.guarantee::after { content:""; position:absolute; right:-40px; top:-40px; width:240px; height:240px; border:30px solid rgba(255,255,255,.08); border-radius:50%; }
.guarantee .shield { width: 86px; height: 86px; flex-shrink: 0; }
.guarantee .shield svg { width: 100%; height: 100%; color: #fff; }
.guarantee h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 8px; }
.guarantee p { color: #e2ebfb; max-width: 640px; }
.guarantee .g-num { font-family: "Poppins"; font-weight: 800; font-size: 3.4rem; line-height: 1; color: #fff; text-align: center; }
.guarantee .g-num small { display: block; font-size: .9rem; font-weight: 600; color: #d4e2fb; letter-spacing: .08em; }

.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-band p { color: var(--muted); max-width: 600px; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   AUDIENCE
   ========================================================= */
.audience { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.aud { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 28px; text-align:center; transition: transform .3s var(--ease), box-shadow .3s; }
.aud:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.aud .ic { width:64px;height:64px;border-radius:50%;background:var(--grad);display:grid;place-items:center;margin:0 auto 16px; }
.aud .ic svg { width:30px;height:30px;color:#fff; }
.aud h3 { font-size:1.08rem;margin-bottom:8px; }
.aud p { color:var(--muted);font-size:.92rem; }

/* Quote */
.quote { max-width: 860px; margin: 0 auto; text-align: center; }
.quote blockquote { font-family:"Poppins"; font-weight:600; font-size: clamp(1.4rem,3vw,2.1rem); color:#fff; line-height:1.35; }
.quote .mark { font-size:5rem; line-height:.5; color: var(--blue); font-family: Georgia, serif; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.info-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 14px; }
.info-row { display:flex; gap:16px; padding:18px; border-radius: 12px; align-items:flex-start; transition: background .2s; }
.info-row:hover { background: var(--blue-50); }
.info-row .ic { width:46px;height:46px;border-radius:12px;background:var(--blue-100);color:var(--blue);display:grid;place-items:center;flex-shrink:0; }
.info-row .ic svg { width:22px;height:22px; }
.info-row h4 { font-size:.82rem; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); margin-bottom:3px; font-family:"Poppins"; }
.info-row a, .info-row p { color:var(--navy); font-weight:600; font-size:1.02rem; }
.info-row a:hover { color: var(--blue); }

.form { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,3vw,38px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display:block; font-size:.88rem; font-weight:600; color:var(--navy); margin-bottom:7px; font-family:"Poppins"; }
.field input, .field select, .field textarea {
  width:100%; padding:13px 16px; border:1.5px solid var(--line); border-radius:11px; font:inherit; font-size:.98rem; color:var(--ink);
  background:#fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color:var(--blue); box-shadow:0 0 0 4px rgba(30,144,217,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-note { font-size:.85rem; color:var(--muted); margin-top:6px; }
.form-msg { display:none; margin-top:16px; padding:14px 18px; border-radius:12px; background:var(--blue-100); color:var(--navy); font-weight:600; }
.form-msg.show { display:block; animation: fadeUp .4s var(--ease); }

.map-wrap { border-radius: var(--radius); overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow-sm); height: 320px; }
.map-wrap iframe { width:100%; height:100%; border:0; display:block; filter: grayscale(.2); }

/* Page hero (inner pages) */
.page-hero { background: var(--navy); color:#fff; position:relative; overflow:hidden; padding: clamp(56px,8vw,96px) 0 clamp(46px,6vw,76px); }
.page-hero::before { content:""; position:absolute; inset:0; background: var(--grad); opacity:.55; }
.page-hero::after { content:""; position:absolute; right:-6%; top:-30%; width:46%; height:160%; background: rgba(255,255,255,.05); transform: skewX(-13deg); }
.page-hero .container { position:relative; z-index:2; }
.page-hero .eyebrow { background: rgba(255,255,255,.14); color:#cfe6f8; }
.page-hero .eyebrow::before { background:#fff; }
.page-hero h1 { color:#fff; font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-bottom:14px; max-width: 840px; }
.page-hero p { color:#c9d5ef; font-size:1.12rem; max-width: 680px; }
.breadcrumb { display:flex; gap:8px; align-items:center; font-size:.86rem; color:#a9b8dd; margin-bottom:18px; }
.breadcrumb a:hover { color:#fff; }
.breadcrumb span { opacity:.6; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-900); color:#aab6d6; padding: clamp(48px,6vw,76px) 0 0; }
.footer-top { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; }
.footer-brand img { height: 50px; margin-bottom:16px; filter: brightness(0) invert(1); opacity:.95; }
.footer-brand p { font-size:.95rem; max-width: 300px; color:#94a3c9; }
.footer-col h4 { color:#fff; font-size:1rem; margin-bottom:16px; }
.footer-col a, .footer-col p { display:block; color:#9fabcd; font-size:.95rem; padding:5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--blue); }
.footer-soc { display:flex; gap:12px; margin-top:18px; }
.footer-soc a { width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.08);display:grid;place-items:center;transition:background .25s, transform .25s; }
.footer-soc a:hover { background: var(--blue); transform: translateY(-3px); }
.footer-soc svg { width:19px;height:19px;color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding:22px 0; display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; font-size:.86rem; color:#7e8cb3; }
.footer-bottom a:hover { color:#fff; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
.reveal { opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.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; }
@keyframes fadeUp { from { opacity:0; transform: translateY(12px);} to {opacity:1; transform:none;} }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1 !important; transform:none !important; } html { scroll-behavior:auto; } }

/* Count-up hidden init handled by JS */

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero::before { width: 120%; height: 50%; top:-14%; right:-30%; border-radius:40px; }
  .hero-visual { max-width: 560px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .audience { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap:32px; }
}
@media (max-width: 880px) {
  .nav-links, .nav-right .btn { display: none; }
  .burger { display: flex; }
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 14px 22px 26px; box-shadow: var(--shadow-md); border-bottom:1px solid var(--line);
    transform: translateY(-130%); transition: transform .35s var(--ease); z-index: 90;
  }
  .nav.open .nav-links { display:flex; transform: translateY(0); }
  .nav-links a { padding: 14px 6px; border-bottom:1px solid var(--line); border-radius:0; font-size:1.05rem; }
  .nav-links a::after { display:none; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split-media { order: 0; }
  .guarantee { grid-template-columns: 1fr; text-align:center; justify-items:center; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .steps, .package, .ticks, .audience, .form-row, .trust .container { grid-template-columns: 1fr; }
  .trust .container { gap: 26px; }
  .hero-float { display:none; }
  .hero-cta .btn { flex: 1 1 auto; justify-content:center; }
  .split-media .badge-float { right: 12px; bottom: -16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
