/* =============================================================
   UKYTECH — Feuille de styles principale v2
   Thème : dark premium — cyan/teal avec profondeur et élégance
   ============================================================= */

/* ---------- Variables ---------- */
:root {
  --bg:        #060910;
  --bg-2:      #090d16;
  --bg-3:      #0c1220;
  --surface:   rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.06);
  --surface-3: rgba(255, 255, 255, 0.09);
  --border:    rgba(100, 210, 230, 0.10);
  --border-2:  rgba(100, 210, 230, 0.22);
  --border-3:  rgba(100, 210, 230, 0.40);

  --cyan:      #22d3ee;
  --cyan-dim:  #0e9ab5;
  --teal:      #14b8a6;
  --violet:    #818cf8;
  --cyan-soft: #67e8f9;
  --grad:      linear-gradient(115deg, #22d3ee 0%, #14b8a6 100%);
  --grad-text: linear-gradient(115deg, #67e8f9 0%, #22d3ee 45%, #14b8a6 100%);
  --grad-card: linear-gradient(160deg, rgba(34,211,238,0.10) 0%, rgba(20,184,166,0.03) 100%);
  --grad-hero: linear-gradient(160deg, rgba(34,211,238,0.14) 0%, rgba(129,140,248,0.06) 100%);

  --ink:    #e8f4f8;
  --ink-2:  #c8dde5;
  --muted:  #7a97aa;
  --faint:  #4a6070;

  --maxw: 1220px;
  --radius: 20px;
  --radius-sm: 13px;
  --radius-xs: 8px;

  --shadow:    0 32px 80px -24px rgba(0,0,0,0.8);
  --shadow-sm: 0 12px 40px -12px rgba(0,0,0,0.6);
  --glow:      0 0 60px -10px rgba(34,211,238,0.40);
  --glow-sm:   0 0 30px -8px rgba(34,211,238,0.25);

  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body:    "Manrope", "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", "Courier New", monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

/* ---------- Background atmosphere ---------- */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(700px 600px at 8% -8%, rgba(34,211,238,0.13), transparent 65%),
    radial-gradient(800px 640px at 98% 6%, rgba(20,184,166,0.10), transparent 65%),
    radial-gradient(600px 500px at 75% 90%, rgba(129,140,248,0.07), transparent 65%),
    radial-gradient(1000px 800px at 40% 115%, rgba(34,211,238,0.08), transparent 65%),
    var(--bg);
}

/* Subtle dot grid */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(100,210,230,0.18) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 80%);
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
section { position: relative; padding: clamp(80px, 12vw, 140px) 0; }
.section-head { max-width: 680px; margin-bottom: 60px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h3 { font-size: 1.28rem; letter-spacing: -0.015em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan)); }
.section-head.center .eyebrow::after { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }
.lead { color: var(--muted); font-size: 1.08rem; margin-top: 18px; line-height: 1.8; }
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  border-radius: 100px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; border-radius: inherit; }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-primary {
  background: var(--grad); color: #041418;
  box-shadow: 0 10px 32px -8px rgba(34,211,238,0.55);
}
.btn-primary::after { background: rgba(255,255,255,0.15); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -8px rgba(34,211,238,0.7); }
.btn-primary:hover::after { opacity: 1; }
.btn-ghost {
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--cyan); background: var(--surface-2); box-shadow: var(--glow-sm); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6, 9, 16, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 9px 16px; font-size: 0.93rem; font-weight: 500; color: var(--muted);
  border-radius: 9px; transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-cta { margin-left: 12px; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.burger { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid var(--border); }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero { padding-top: 160px; padding-bottom: 80px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: var(--maxw); }
.hero-content { max-width: 580px; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(90px); z-index: -1;
  animation: float 18s ease-in-out infinite;
}
.hero-orb.a { width: 500px; height: 500px; top: -80px; left: -120px; background: rgba(34,211,238,0.18); }
.hero-orb.b { width: 560px; height: 560px; top: 20px; right: -150px; background: rgba(20,184,166,0.14); animation-delay: -9s; }
.hero-orb.c { width: 320px; height: 320px; bottom: -60px; left: 30%; background: rgba(129,140,248,0.10); animation-delay: -5s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -28px) scale(1.05); }
  66% { transform: translate(-18px, 18px) scale(0.97); }
}
.hero h1 { font-size: clamp(2.3rem, 5.5vw, 3.9rem); font-weight: 800; margin: 20px 0 22px; }
.hero p.lead { font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 520px; margin-top: 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 36px;
  margin-top: 56px; padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; }
.stat .lbl { font-size: 0.84rem; color: var(--muted); line-height: 1.4; }

/* Hero visual */
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-visual-inner {
  position: relative; width: 100%; max-width: 480px;
  background: var(--surface); border: 1px solid var(--border-2);
  border-radius: 24px; overflow: hidden; padding: 0;
}
.hero-visual-inner::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-hero); z-index: 0;
}
.hero-code-window {
  position: relative; z-index: 1;
}
.code-titlebar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  background: rgba(6,9,16,0.5);
}
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-dot.r { background: #ff5f57; }
.code-dot.y { background: #febc2e; }
.code-dot.g { background: #28c840; }
.code-filename { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); margin-left: 8px; }
.code-body {
  padding: 20px 22px; font-family: var(--font-mono); font-size: 0.82rem; line-height: 1.8;
  background: rgba(6,9,16,0.4);
}
.code-line { display: flex; gap: 16px; }
.code-ln { color: var(--faint); user-select: none; min-width: 18px; text-align: right; }
.c-kw  { color: #818cf8; }
.c-fn  { color: #22d3ee; }
.c-str { color: #86efac; }
.c-cm  { color: #4a6070; font-style: italic; }
.c-num { color: #f9a8d4; }
.c-pr  { color: #67e8f9; }
/* Floating badges on hero visual */
.hero-badge {
  position: absolute; padding: 10px 14px;
  background: rgba(6,9,16,0.92); backdrop-filter: blur(12px);
  border: 1px solid var(--border-2); border-radius: 12px;
  font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  animation: badge-float 6s ease-in-out infinite;
  z-index: 2;
}
.hero-badge.b1 { top: -16px; right: -20px; animation-delay: 0s; }
.hero-badge.b2 { bottom: -14px; left: -20px; animation-delay: -3s; }
.hero-badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(20,184,166,0.6); animation: pulse 2.4s infinite; }
.hero-badge .badge-icon { font-size: 1rem; }
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Trust strip ---------- */
.trust { padding: 0 0 12px; }
.trust-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px;
  font-family: var(--font-mono); font-size: 0.80rem; color: var(--faint);
}
.trust-row .dot { width: 5px; height: 5px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--teal)); }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 22px; }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s, box-shadow 0.4s;
  overflow: hidden;
}
/* Spotlight effect */
.card::before {
  content: ""; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,0.15) 0%, transparent 70%);
  left: calc(var(--mx, 50%) - 100px);
  top: calc(var(--my, 0px) - 100px);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.5), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.card:hover { transform: translateY(-8px); border-color: var(--border-2); background: var(--surface-2); box-shadow: 0 24px 60px -20px rgba(34,211,238,0.15); }
.card:hover::before { opacity: 1; }
.card:hover::after { opacity: 1; }

.card .ic {
  width: 56px; height: 56px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(150deg, rgba(34,211,238,0.18), rgba(20,184,166,0.06));
  border: 1px solid var(--border-2);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.card:hover .ic { box-shadow: 0 0 24px -6px rgba(34,211,238,0.35); border-color: var(--border-3); }
.card .ic svg { width: 26px; height: 26px; stroke: var(--cyan); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card .num-tag {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--faint);
}
.card ul.mini { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.card ul.mini li { display: flex; gap: 9px; font-size: 0.9rem; color: var(--muted); }
.card ul.mini li::before { content: "▹"; color: var(--cyan); flex-shrink: 0; }

/* ---------- Process / Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: ""; position: absolute;
  top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2) 20%, var(--border-2) 80%, transparent);
  z-index: 0;
}
.step {
  position: relative; padding: 32px 26px 30px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.3s, background 0.3s;
  z-index: 1;
}
.step:hover { border-color: var(--border-2); background: var(--surface-2); }
.step-circle {
  width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--border-2);
  background: var(--bg-2); display: grid; place-items: center;
  margin-bottom: 20px; position: relative;
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--cyan);
  font-weight: 600;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step:hover .step-circle { border-color: var(--cyan); box-shadow: var(--glow-sm); }
.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.about-visual {
  position: relative; border-radius: var(--radius);
  border: 1px solid var(--border-2); overflow: hidden;
  aspect-ratio: 4/3;
}
.about-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-visual:hover img { transform: scale(1.04); }
.about-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,9,16,0.85) 100%);
  pointer-events: none;
}
.about-visual-caption {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  display: flex; gap: 12px;
}
.about-points { display: grid; gap: 20px; margin-top: 30px; }
.about-point { display: flex; gap: 16px; padding: 18px; border-radius: var(--radius-sm); border: 1px solid transparent; transition: border-color 0.3s, background 0.3s; }
.about-point:hover { border-color: var(--border); background: var(--surface); }
.about-point .pic {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(34,211,238,0.18), rgba(20,184,166,0.05));
  border: 1px solid var(--border-2);
}
.about-point .pic svg { width: 21px; height: 21px; stroke: var(--cyan); }
.about-point h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 4px; }
.about-point p { font-size: 0.91rem; color: var(--muted); }

.badge-float {
  position: absolute; padding: 11px 16px;
  background: rgba(6,9,16,0.92); backdrop-filter: blur(12px);
  border: 1px solid var(--border-2); border-radius: 12px;
  font-family: var(--font-mono); font-size: 0.78rem;
  display: flex; align-items: center; gap: 9px;
}
.badge-float .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(20,184,166,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(20,184,166,0.55);} 70%{box-shadow:0 0 0 12px rgba(20,184,176,0);} 100%{box-shadow:0 0 0 0 rgba(20,184,176,0);} }
.badge-float.tr { top: 18px; right: 18px; }
.badge-float.bl { bottom: 18px; left: 18px; }

/* ---------- Réalisations (Work cards) ---------- */
.work-card { padding: 0; overflow: hidden; }
.work-card .work-img {
  height: 200px; position: relative; overflow: hidden;
}
.work-card .work-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.75) saturate(0.9);
}
.work-card:hover .work-img img { transform: scale(1.08); filter: brightness(0.85) saturate(1); }
.work-card .work-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(9,13,22,0.9) 100%);
}
.work-card .work-img-icon {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(6,9,16,0.85); backdrop-filter: blur(8px);
  border: 1px solid var(--border-2);
  display: grid; place-items: center;
}
.work-card .work-img-icon svg { width: 20px; height: 20px; stroke: var(--cyan); }
.work-card .work-body { padding: 22px 26px 26px; }
.work-card .tag {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--cyan);
  letter-spacing: 0.10em; text-transform: uppercase;
  background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.18);
  padding: 3px 10px; border-radius: 100px; display: inline-block; margin-bottom: 10px;
}
.work-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.work-card p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover { border-color: var(--border-2); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars span { color: #fbbf24; font-size: 1rem; }
.testimonial-text { color: var(--ink-2); font-size: 0.97rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: #041418;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { font-size: 0.82rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: var(--border-2); background: var(--surface-2); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1.01rem; color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--cyan-soft); }
.faq-q .chev { width: 22px; height: 22px; flex-shrink: 0; transition: transform 0.35s var(--ease); stroke: var(--cyan); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 26px 22px; color: var(--muted); font-size: 0.97rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; }
.contact-line .pic {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(34,211,238,0.18), rgba(20,184,166,0.05));
  border: 1px solid var(--border-2);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.contact-line:hover .pic { box-shadow: var(--glow-sm); border-color: var(--border-3); }
.contact-line .pic svg { width: 20px; height: 20px; stroke: var(--cyan); }
.contact-line .ct-label { font-size: 0.78rem; color: var(--faint); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 3px; }
.contact-line a, .contact-line span { color: var(--ink); font-weight: 500; }
.contact-line a:hover { color: var(--cyan); }

.form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 34px;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 8px; color: var(--ink-2); }
.field label .req { color: var(--cyan); }
.field input, .field textarea {
  width: 100%; padding: 13px 16px;
  background: var(--bg-2); color: var(--ink);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.97rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.10);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; color: var(--muted); margin-bottom: 22px; }
.consent input { margin-top: 4px; accent-color: var(--cyan); flex-shrink: 0; }
.consent a { color: var(--cyan); text-decoration: underline; }
.form-msg { margin-top: 14px; font-size: 0.92rem; padding: 12px 16px; border-radius: var(--radius-sm); display: none; }
.form-msg.ok { display: block; background: rgba(20,184,166,0.12); border: 1px solid rgba(20,184,166,0.4); color: #5ee7d0; }
.form-msg.err { display: block; background: rgba(255,90,90,0.10); border: 1px solid rgba(255,90,90,0.4); color: #ff9d9d; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border: 1px solid var(--border-2); border-radius: 26px;
  background: linear-gradient(150deg, rgba(34,211,238,0.09), rgba(20,184,166,0.04));
  padding: clamp(44px, 7vw, 72px);
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(600px 300px at 50% -10%, rgba(34,211,238,0.12), transparent);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 16px; position: relative; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 30px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 64px 0 32px; margin-top: 20px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
.footer-brand img { height: 42px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.93rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.92rem; margin-bottom: 18px; color: var(--ink-2); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 0.91rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: 0.83rem; color: var(--faint);
}
.footer-bottom a { color: var(--faint); }
.footer-bottom a:hover { color: var(--cyan); }
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 480px;
  background: rgba(8,12,20,0.97); backdrop-filter: blur(16px);
  border: 1px solid var(--border-2); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
  transform: translateY(150%); transition: transform 0.5s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h3 { font-size: 1.05rem; margin-bottom: 9px; }
.cookie-banner p { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }
.cookie-banner p a { color: var(--cyan); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions .btn { padding: 11px 18px; font-size: 0.88rem; flex: 1; justify-content: center; }
.btn-mini { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.btn-mini:hover { color: var(--ink); border-color: var(--border-2); }
.cookie-prefs { display: none; margin: 4px 0 16px; }
.cookie-prefs.show { display: block; }
.pref-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.pref-row:last-child { border-bottom: none; }
.pref-row .pref-txt strong { font-family: var(--font-display); font-size: 0.92rem; }
.pref-row .pref-txt span { display: block; font-size: 0.8rem; color: var(--faint); }
.switch { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; inset: 0; border-radius: 24px; background: rgba(255,255,255,0.1); border: 1px solid var(--border); transition: background 0.3s; }
.slider::before { content: ""; position: absolute; height: 16px; width: 16px; left: 3px; top: 3px; background: var(--muted); border-radius: 50%; transition: transform 0.3s, background 0.3s; }
.switch input:checked + .slider { background: rgba(34,211,238,0.25); border-color: var(--cyan); }
.switch input:checked + .slider::before { transform: translateX(18px); background: var(--cyan); }
.switch input:disabled + .slider { opacity: 0.55; }

/* ---------- Legal pages ---------- */
.legal-page { padding-top: 150px; padding-bottom: 80px; }
.legal-wrap { max-width: 820px; margin-inline: auto; }
.legal-wrap .eyebrow { margin-bottom: 14px; }
.legal-wrap h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; }
.legal-meta { font-family: var(--font-mono); font-size: 0.82rem; color: var(--faint); margin-bottom: 40px; }
.legal-wrap h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.legal-wrap h3 { font-size: 1.08rem; margin: 24px 0 8px; }
.legal-wrap p { color: var(--muted); margin-bottom: 14px; font-size: 0.98rem; }
.legal-wrap ul.bul { margin: 0 0 14px 4px; display: flex; flex-direction: column; gap: 8px; }
.legal-wrap ul.bul li { color: var(--muted); font-size: 0.98rem; padding-left: 20px; position: relative; }
.legal-wrap ul.bul li::before { content: "▹"; position: absolute; left: 0; color: var(--cyan); }
.legal-wrap a { color: var(--cyan); text-decoration: underline; }
.legal-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; margin: 16px 0; }
.legal-card p { margin-bottom: 6px; }
.legal-card p:last-child { margin-bottom: 0; }
.note-flag { background: rgba(255,190,70,0.07); border: 1px solid rgba(255,190,70,0.32); border-radius: var(--radius-sm); padding: 14px 18px; margin: 16px 0; font-size: 0.9rem; color: #f0c987; }
.note-flag strong { color: #ffd58a; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.17s; }
.reveal[data-d="3"] { transition-delay: 0.26s; }
.reveal[data-d="4"] { transition-delay: 0.35s; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 300;
  background: var(--cyan); color: #04161a; padding: 10px 18px;
  border-radius: 8px; font-weight: 600; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Animated counter ---------- */
.counter { font-variant-numeric: tabular-nums; }

/* ---------- Scrolling trust band ---------- */
.trust-scroll-wrap { overflow: hidden; position: relative; }
.trust-scroll-wrap::before, .trust-scroll-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1; pointer-events: none;
}
.trust-scroll-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.trust-scroll-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.trust-scroll { display: flex; gap: 40px; animation: scroll-x 24s linear infinite; width: max-content; }
@keyframes scroll-x { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.trust-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-family: var(--font-mono); font-size: 0.8rem; color: var(--faint); }
.trust-item .dot { width: 5px; height: 5px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--teal)); flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { display: none; }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed; top: 80px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(6,9,16,0.98); backdrop-filter: blur(16px);
    padding: 18px 24px 28px; border-bottom: 1px solid var(--border);
    transform: translateY(-130%); transition: transform 0.4s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 14px; }
  .nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }
  .burger { display: flex; }
  .grid.cols-4, .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 24px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
  .cookie-actions .btn { flex: 1 1 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
