/* ── Variables ───────────────────────────────────────────────── */
:root {
  --navy:      #24223B;
  --navy-l:    #2e2c4a;
  --white:     #FFFFFF;
  --cream:     #F5F4F1;
  --muted-d:   rgba(255,255,255,0.55);       /* muted su scuro */
  --muted-l:   rgba(36,34,59,0.50);          /* muted su chiaro */
  --border-d:  rgba(255,255,255,0.13);       /* bordo su scuro */
  --border-l:  rgba(36,34,59,0.11);          /* bordo su chiaro */
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'DM Sans', sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
@media (pointer: fine) { body { cursor: none; } }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Custom cursor ───────────────────────────────────────────── */
.cursor, .cursor-ring { display: none; }
@media (pointer: fine) {
  .cursor {
    display: block; position: fixed;
    width: 10px; height: 10px;
    background: var(--navy);
    border-radius: 50%; pointer-events: none;
    z-index: 9999; transform: translate(-50%, -50%);
    transition: width .2s ease, height .2s ease, background .3s ease;
  }
  .cursor-ring {
    display: block; position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(36,34,59,.35);
    border-radius: 50%; pointer-events: none;
    z-index: 9998; transform: translate(-50%, -50%);
    transition: width .3s ease, height .3s ease, border-color .3s ease;
  }
  .cursor.on-dark      { background: var(--white); }
  .cursor-ring.on-dark { border-color: rgba(255,255,255,.35); }
}

/* ── Lucide icons ────────────────────────────────────────────── */
/* Icone servizi (sezione dark) */
.service-icon {
  display: block;
  margin-bottom: 24px;
  width: 36px; height: 36px;
}
.service-icon svg {
  width: 36px; height: 36px;
  stroke: rgba(255,255,255,.75);
  stroke-width: 1.4;
  fill: none;
}

/* Icone pillole settori (sezione light) */
.pill-icon {
  width: 15px; height: 15px;
  flex-shrink: 0;
  stroke: rgba(36,34,59,.55);
  stroke-width: 1.8;
  fill: none;
  display: block;
}
.sector-pill:hover .pill-icon { stroke: var(--white); }

/* Check icone "perché noi" */
.check-icon {
  width: 13px; height: 13px;
  stroke: rgba(255,255,255,.8);
  stroke-width: 2.5;
  fill: none;
  display: block;
}

/* Icone contatto */
.detail-icon {
  width: 16px; height: 16px;
  stroke: var(--navy);
  stroke-width: 1.8;
  fill: none;
  display: block;
}

/* Success icon */
.success-icon {
  width: 48px; height: 48px;
  stroke: #2d9c6a;
  stroke-width: 1.5;
  fill: none;
  display: block;
  margin: 0 auto;
}

/* Cookie icon */
.cookie-icon svg {
  width: 28px; height: 28px;
  stroke: var(--navy);
  stroke-width: 1.6;
  fill: none;
}

/* ── Noise overlay ───────────────────────────────────────────── */
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .03; pointer-events: none; z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
nav.scrolled {
  background: rgba(36,34,59,.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom: 1px solid var(--border-d);
}
.nav-logo { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; letter-spacing: .04em; z-index: 201; color: var(--white); }
.nav-logo span { opacity: .6; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-d); transition: color .25s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--white) !important; color: var(--navy) !important;
  padding: 10px 24px; border-radius: 2px;
  font-weight: 500 !important; letter-spacing: .08em !important;
  transition: opacity .25s !important;
}
.nav-cta:hover { opacity: .85 !important; }

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; z-index: 201; padding: 4px;
}
.nav-burger span {
  display: block; height: 1.5px; background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}
.nav-burger span:nth-child(1) { width: 24px; }
.nav-burger span:nth-child(2) { width: 18px; }
.nav-burger span:nth-child(3) { width: 24px; }
.nav-burger.open span:nth-child(1) { width: 24px; transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { width: 24px; transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none; position: fixed; inset: 0; background: var(--navy);
  z-index: 199; flex-direction: column; align-items: center;
  justify-content: center; gap: 36px;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer a { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: rgba(255,255,255,.75); transition: color .2s; }
.nav-drawer a:hover { color: var(--white); }
.nav-drawer .drawer-cta {
  font-family: var(--sans) !important; font-size: .85rem !important;
  font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  background: var(--white); color: var(--navy) !important;
  padding: 14px 36px; border-radius: 2px; margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   HERO — dark
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden; background: var(--navy);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 160px 60px 120px; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted-d); margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s .3s forwards ease;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -.01em;
  margin-bottom: 36px; color: var(--white);
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .9s .5s forwards ease;
}
.hero-title em { font-style: italic; }
.hero-title .underline { position: relative; display: inline-block; }
.hero-title .underline::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 1px; background: var(--white); opacity: .35;
}
.hero-desc {
  font-size: 1rem; color: var(--muted-d); max-width: 420px;
  margin-bottom: 52px; line-height: 1.8;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s .7s forwards ease;
}
.hero-actions {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s .9s forwards ease;
}
.btn-primary {
  background: var(--white); color: var(--navy);
  padding: 15px 36px; font-family: var(--sans); font-size: .82rem;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  border: none; border-radius: 2px;
  transition: opacity .25s, transform .25s;
  min-height: 48px; display: inline-flex; align-items: center;
}
.btn-primary:hover { opacity: .85; transform: translateY(-2px); }
.btn-ghost {
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-d);
  border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 3px;
  transition: color .25s, border-color .25s;
  min-height: 48px; display: inline-flex; align-items: center;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }
.hero-right { position: relative; overflow: hidden; }
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, transparent 55%); z-index: 1;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.4) saturate(.5);
  transform: scale(1.05); animation: slowZoom 14s ease forwards;
}
.hero-stat-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-d); z-index: 10;
  opacity: 0; animation: fadeIn 1s 1.2s forwards ease;
  background: rgba(36,34,59,.55);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.hero-stat { padding: 24px 28px; border-right: 1px solid var(--border-d); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; line-height: 1; margin-bottom: 5px; color: var(--white); }
.hero-stat-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-d); }
.hero-line {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 0;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.45), transparent);
  animation: lineGrow 1.2s 1s forwards ease; z-index: 10;
}

/* ── Marquee ─────────────────────────────────────────────────── */
.marquee-strip {
  border-top: 1px solid var(--border-d); border-bottom: 1px solid var(--border-d);
  overflow: hidden; padding: 16px 0; background: rgba(255,255,255,.025);
}
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 24px; padding: 0 36px;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-d); white-space: nowrap;
}
.marquee-dot { width: 3px; height: 3px; background: var(--white); border-radius: 50%; flex-shrink: 0; opacity: .4; }

/* ══════════════════════════════════════════════════════════════
   Section base helpers
══════════════════════════════════════════════════════════════ */
section { position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

/* Label su fondo scuro */
.section-label {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 20px; display: flex; align-items: center; gap: 16px;
  color: var(--muted-d);
}
.section-label::before {
  content: ''; width: 28px; height: 1px;
  background: rgba(255,255,255,.4); flex-shrink: 0;
}
/* Label su fondo chiaro */
.light .section-label { color: var(--muted-l); }
.light .section-label::before { background: rgba(36,34,59,.3); }
/* Label centrato (settori) */
.label-center { justify-content: center; }
.label-center::before { display: none; }

.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 20px;
}
.section-title em { font-style: italic; opacity: .65; }

/* ══════════════════════════════════════════════════════════════
   ABOUT — light
══════════════════════════════════════════════════════════════ */
.about {
  padding: 120px 0; background: var(--cream);
  color: var(--navy); border-top: 1px solid var(--border-l);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { font-size: .96rem; color: rgba(36,34,59,.7); line-height: 1.9; margin-top: 24px; }
.about-card {
  background: var(--white); border: 1px solid var(--border-l);
  padding: 44px 40px; border-radius: 4px; position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--navy), transparent);
}
.about-values { display: flex; flex-direction: column; gap: 28px; }
.value-item { display: flex; gap: 20px; align-items: flex-start; }
.value-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; opacity: .25; line-height: 1; flex-shrink: 0; width: 36px; color: var(--navy); }
.value-title { font-size: .9rem; font-weight: 500; letter-spacing: .04em; margin-bottom: 6px; color: var(--navy); }
.value-text { font-size: .82rem; color: var(--muted-l); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   SERVICES — dark
══════════════════════════════════════════════════════════════ */
.services { padding: 120px 0; background: var(--navy); border-top: 1px solid var(--border-d); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.services-desc { font-size: .96rem; color: var(--muted-d); line-height: 1.85; align-self: end; padding-bottom: 8px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card {
  background: rgba(255,255,255,.04); border: 1px solid var(--border-d);
  padding: 40px 32px; position: relative; overflow: hidden;
  transition: background .35s, transform .35s;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--white);
  transition: width .4s ease;
}
.service-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.service-card:hover::after { width: 100%; }
.service-icon { font-size: 1.9rem; margin-bottom: 22px; display: block; }
.service-name { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; margin-bottom: 12px; line-height: 1.2; color: var(--white); }
.service-text { font-size: .82rem; color: var(--muted-d); line-height: 1.7; }
.service-tag {
  display: inline-block; margin-top: 18px; font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.15);
  padding: 4px 10px; border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════
   SECTORS — light
══════════════════════════════════════════════════════════════ */
.sectors {
  padding: 100px 0; background: var(--white);
  border-top: 1px solid var(--border-l); color: var(--navy);
}
.sectors-header { text-align: center; margin-bottom: 56px; }
.sectors-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.sector-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 22px; border: 1px solid var(--border-l);
  border-radius: 999px; font-size: .82rem; letter-spacing: .03em;
  color: rgba(36,34,59,.65); background: var(--cream);
  transition: background .25s, border-color .25s, color .25s, transform .25s;
  min-height: 44px;
}
.sector-pill:hover {
  background: var(--navy); border-color: var(--navy);
  color: var(--white); transform: translateY(-2px);
}
.sector-pill-icon { font-size: 1rem; }

/* ══════════════════════════════════════════════════════════════
   WHY — dark
══════════════════════════════════════════════════════════════ */
.why { padding: 120px 0; background: var(--navy); border-top: 1px solid var(--border-d); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-list { display: flex; flex-direction: column; }
.why-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid var(--border-d);
  transition: padding-left .3s;
}
.why-item:first-child { border-top: 1px solid var(--border-d); }
.why-item:hover { padding-left: 6px; }
.why-check {
  width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .72rem; margin-top: 2px; color: var(--white);
}
.why-item-title { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 6px; color: var(--white); }
.why-item-text { font-size: .84rem; color: var(--muted-d); line-height: 1.7; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-box {
  background: rgba(255,255,255,.04); border: 1px solid var(--border-d);
  padding: 32px 24px; border-radius: 4px; text-align: center; transition: background .3s;
}
.why-box:first-child { grid-column: span 2; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.why-box:hover { background: rgba(255,255,255,.09); }
.why-box-num { font-family: var(--serif); font-size: 3rem; font-weight: 300; line-height: 1; margin-bottom: 8px; color: var(--white); }
.why-box-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-d); }

/* ══════════════════════════════════════════════════════════════
   CONTACT — light
══════════════════════════════════════════════════════════════ */
.contact {
  padding: 120px 0 100px; background: var(--cream);
  border-top: 1px solid var(--border-l); color: var(--navy);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.contact-info { padding-top: 8px; }
.contact-info p { font-size: .92rem; color: rgba(36,34,59,.62); line-height: 1.85; margin-top: 24px; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail { display: flex; align-items: center; gap: 14px; font-size: .86rem; color: rgba(36,34,59,.72); }
.contact-detail-icon {
  width: 34px; height: 34px; border: 1px solid var(--border-l);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0; background: var(--white);
}

/* Form box */
.form-box {
  background: var(--white); border: 1px solid var(--border-l);
  padding: 48px 44px; border-radius: 4px; position: relative; overflow: hidden;
  box-shadow: 0 8px 48px rgba(36,34,59,.07);
}
.form-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--navy), transparent);
}
.form-tabs {
  display: flex; border: 1px solid var(--border-l);
  border-radius: 3px; overflow: hidden; margin-bottom: 32px;
}
.form-tab {
  flex: 1; padding: 13px 12px; font-size: .75rem;
  letter-spacing: .1em; text-transform: uppercase; text-align: center;
  cursor: pointer; transition: background .25s, color .25s;
  color: var(--muted-l); border: none; background: none;
  font-family: var(--sans); min-height: 44px;
}
.form-tab.active { background: var(--navy); color: var(--white); font-weight: 500; }
.form-section { display: none; }
.form-section.active { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted-l); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--cream); border: 1px solid var(--border-l);
  border-radius: 3px; padding: 13px 16px; font-family: var(--sans);
  font-size: 1rem; color: var(--navy);
  transition: border-color .25s, background .25s; outline: none;
  -webkit-appearance: none; appearance: none; min-height: 48px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(36,34,59,.28); }
.form-group select option { background: var(--white); color: var(--navy); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group.full { grid-column: span 2; }

/* Honeypot */
.hp-field { display: none !important; }

/* Math captcha */
.form-captcha {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; background: var(--cream);
  border: 1px solid var(--border-l); border-radius: 3px; margin-bottom: 18px;
  flex-wrap: wrap;
}
.form-captcha label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-l); white-space: nowrap; }
.form-captcha input {
  width: 70px; background: var(--white); border: 1px solid var(--border-l);
  border-radius: 3px; padding: 8px 12px; font-family: var(--sans);
  font-size: .9rem; color: var(--navy); outline: none; text-align: center; min-height: 40px;
}
.form-captcha input:focus { border-color: var(--navy); }
.captcha-question { font-family: var(--serif); font-size: 1.15rem; color: var(--navy); min-width: max-content; }
.captcha-eq { color: var(--muted-l); }
.captcha-error { font-size: .72rem; color: #c0392b; margin-top: 6px; display: none; }

/* Submit */
.form-submit {
  width: 100%; padding: 16px; background: var(--navy); color: var(--white);
  border: none; border-radius: 3px; font-family: var(--sans);
  font-size: .82rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: opacity .25s, transform .2s; min-height: 52px;
}
.form-submit:hover { opacity: .85; transform: translateY(-1px); }
.form-submit:disabled { opacity: .45; transform: none; cursor: default; }
.form-note { font-size: .72rem; color: rgba(36,34,59,.32); text-align: center; margin-top: 14px; line-height: 1.5; }

/* Success message */
.form-success { display: none; text-align: center; padding: 36px 0; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 16px; }
.form-success-title { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; margin-bottom: 10px; color: var(--navy); }
.form-success-text { font-size: .88rem; color: var(--muted-l); }

/* ══════════════════════════════════════════════════════════════
   FOOTER — dark
══════════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border-d); padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; background: var(--navy);
}
.footer-logo { display: flex; align-items: center; }
.footer-logo-img { height: 36px; width: auto; display: block; object-fit: contain; }
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.28); letter-spacing: .05em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.32); transition: color .25s;
  min-height: 44px; display: flex; align-items: center;
}
.footer-links a:hover { color: var(--muted-d); }

/* ══════════════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  width: min(360px, calc(100vw - 32px));
  background: var(--white); color: var(--navy);
  border: 1px solid var(--border-l);
  border-radius: 6px;
  box-shadow: 0 16px 60px rgba(36,34,59,.15), 0 4px 16px rgba(36,34,59,.08);
  padding: 28px 28px 24px;
  transform: translateY(calc(100% + 32px));
  opacity: 0;
  transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .4s ease;
  pointer-events: none;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; pointer-events: all; }
.cookie-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--navy), transparent); border-radius: 6px 6px 0 0;
}
.cookie-icon { font-size: 1.6rem; margin-bottom: 12px; }
.cookie-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; margin-bottom: 10px; color: var(--navy); }
.cookie-text { font-size: .82rem; color: rgba(36,34,59,.62); line-height: 1.65; margin-bottom: 20px; }
.cookie-text a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn {
  flex: 1; padding: 11px 10px; border-radius: 3px;
  font-family: var(--sans); font-size: .75rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; border: none; transition: opacity .2s, transform .2s;
  min-height: 42px;
}
.cookie-btn:hover { opacity: .85; transform: translateY(-1px); }
.cookie-accept { background: var(--navy); color: var(--white); }
.cookie-reject { background: var(--cream); color: var(--navy); border: 1px solid var(--border-l) !important; }

/* ══════════════════════════════════════════════════════════════
   Scroll reveal
══════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ══════════════════════════════════════════════════════════════
   Keyframes
══════════════════════════════════════════════════════════════ */
@keyframes fadeUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { to { opacity: 1; } }
@keyframes slowZoom { to { transform: scale(1); } }
@keyframes lineGrow { to { height: 40vh; } }
@keyframes marquee  { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 22px 40px; }
  nav.scrolled { padding: 14px 40px; }
  .section-inner { padding: 0 40px; }
  .hero-left { padding: 140px 40px 100px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .why-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
  footer { padding: 36px 40px; }
}

@media (max-width: 768px) {
  nav { padding: 18px 20px; }
  nav.scrolled { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-drawer { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-right { display: none; }
  .hero-left { padding: 110px 20px 100px; }
  .hero-title { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero-desc { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-stat-strip { position: relative; background: rgba(36,34,59,.85); }
  .hero-stat { padding: 18px 8px; text-align: center; align-items: center; }
  .hero-stat-num { font-size: 1.7rem; }
  .hero-stat-label { font-size: .58rem; }

  .section-inner { padding: 0 20px; }
  .about { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-card { padding: 28px 20px; }

  .services { padding: 72px 0; }
  .services-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 20px; }

  .sectors { padding: 64px 0; }
  .sectors-header { margin-bottom: 32px; }
  .sectors-row { gap: 8px; }
  .sector-pill { padding: 10px 16px; font-size: .78rem; }

  .why { padding: 72px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .why-box:first-child { grid-column: span 2; }
  .why-box-num { font-size: 2.4rem; }

  .contact { padding: 72px 0 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-box { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .form-tabs { flex-direction: column; }
  .form-tab { text-align: left; padding: 14px 16px; }

  footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }

  .cookie-banner { bottom: 16px; right: 16px; left: 16px; width: auto; }
}

@media (max-width: 390px) {
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 1.9rem; }
  .why-visual { grid-template-columns: 1fr; }
  .why-box:first-child { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
