/* ===== Reset & Tokens ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #060807;
  --bg-2: #0c100d;
  --card: #101512;
  --card-2: #0d120f;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef2ee;
  --muted: #9aa39c;
  --accent: #a3e635;
  --accent-dim: #7fc41c;
  --glow: rgba(132, 204, 22, 0.35);
  --radius: 18px;
  --max: 1240px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo-text { font-family: "Space Grotesk", sans-serif; line-height: 1.05; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.accent { color: var(--accent); }

/* ===== Background glow ===== */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(600px 500px at 10% 0%, rgba(132,204,22,0.10), transparent 60%),
    radial-gradient(700px 600px at 90% 20%, rgba(132,204,22,0.06), transparent 60%),
    radial-gradient(800px 700px at 50% 100%, rgba(132,204,22,0.08), transparent 60%);
}

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dim));
  z-index: 1000; box-shadow: 0 0 12px var(--glow);
}

/* ===== Film grain overlay ===== */
.grain {
  position: fixed; inset: -50%; z-index: 999; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.6s steps(2) infinite;
}
@keyframes grain {
  0% { transform: translate(0,0); } 25% { transform: translate(-5%,3%); }
  50% { transform: translate(4%,-4%); } 75% { transform: translate(-3%,5%); }
  100% { transform: translate(5%,-2%); }
}

/* ===== Layout helpers ===== */
section { position: relative; z-index: 1; padding: 110px 32px; max-width: var(--max); margin: 0 auto; }
.eyebrow { color: var(--accent); font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; }
.section-title { font-size: clamp(30px, 4vw, 52px); font-weight: 700; margin-top: 14px; letter-spacing: -1px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.section-lead { color: var(--muted); max-width: 360px; font-size: 16px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 100px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 1px solid transparent; transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-primary { background: var(--accent); color: #0a0f06; box-shadow: 0 8px 30px rgba(132,204,22,0.25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(132,204,22,0.4); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.btn-whatsapp { background: #25d366; color: #052e16; width: 100%; justify-content: center; box-shadow: 0 8px 30px rgba(37,211,102,0.25); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.4); }

/* contact divider */
.contact-or { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 13px; margin: 22px 0 14px; }
.contact-or::before, .contact-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* Floating WhatsApp button */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 950;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-pulse { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,0.6); animation: wapulse 2s infinite; }
@keyframes wapulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== Navbar ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px; transition: background .3s, backdrop-filter .3s, padding .3s;
}
.nav.scrolled { background: rgba(6,8,7,0.8); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding: 12px 40px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo-text { font-weight: 700; font-size: 17px; letter-spacing: 1px; }
.logo-text span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15px; color: var(--muted); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #0a0f06 !important; padding: 10px 22px; border-radius: 100px;
  font-weight: 700 !important; font-size: 13px !important; letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(132,204,22,0.3); transition: transform .25s;
}
.nav-cta:hover { transform: translateY(-2px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); transition: .3s; }

/* ===== Hero (cinematic full-screen) ===== */
.hero {
  position: relative; min-height: 100vh; max-width: none; width: 100%; margin: 0; padding: 0;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; text-align: left;
  overflow: hidden; background: var(--bg);
}
.hero-video {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.45) saturate(1.12) contrast(1.04);
  opacity: 0; transition: opacity .8s ease;
}
.hero-video.is-ready { opacity: 1; }
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,8,7,0.88) 0%, rgba(6,8,7,0.6) 35%, transparent 75%),
    linear-gradient(180deg, rgba(6,8,7,0.7) 0%, transparent 25%, transparent 55%, var(--bg) 100%),
    radial-gradient(120% 80% at 20% 0%, rgba(132,204,22,0.12), transparent 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 40px 0 7%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 2px;
  color: var(--text); border: 1px solid rgba(255,255,255,0.18); padding: 8px 16px; border-radius: 100px;
  background: rgba(6,8,7,0.4); backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero-title { font-size: clamp(36px, 6.5vw, 76px); font-weight: 700; margin: 26px 0; letter-spacing: -2px; text-shadow: 0 4px 40px rgba(0,0,0,0.6); }
.hero-sub { color: #cdd5cd; font-size: 18px; max-width: 600px; margin: 0 0 36px; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-actions { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted); font-size: 11px; letter-spacing: 3px;
}
.scroll-line { width: 1px; height: 50px; background: linear-gradient(var(--accent), transparent); position: relative; overflow: hidden; }
.scroll-line::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--accent); animation: scrolldot 2s ease-in-out infinite; }
@keyframes scrolldot { 0% { transform: translateY(-100%); } 100% { transform: translateY(250%); } }

/* ===== Why / comparison ===== */
.reel-head { text-align: center; margin-bottom: 48px; }
.compare {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 0;
  max-width: 1000px; margin: 0 auto;
}
.compare-col {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 34px;
  background: var(--card-2); transition: transform .3s, border-color .3s;
}
.compare-col.new {
  background: linear-gradient(165deg, rgba(132,204,22,0.10), var(--card));
  border-color: rgba(132,204,22,0.4); box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.compare-col.old { opacity: 0.82; }
.compare-tag { font-size: 12px; letter-spacing: 3px; color: var(--muted); }
.compare-col.new .compare-tag { color: var(--accent); }
.compare-col h3 { font-size: 26px; margin: 10px 0 24px; font-weight: 700; }
.compare-col ul { list-style: none; display: grid; gap: 14px; }
.compare-col li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--muted); }
.compare-col.new li { color: var(--text); }
.compare-col .x, .compare-col .c { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; margin-top: 1px; }
.compare-col .x { background: rgba(255,82,82,0.15); color: #ff7676; }
.compare-col .c { background: var(--accent); color: #0a0f06; }
.compare-col.new .btn { margin-top: 26px; }
.compare-vs {
  align-self: center; font-family: "Space Grotesk"; font-weight: 700; font-size: 18px; color: var(--accent);
  background: var(--bg); border: 1px solid rgba(132,204,22,0.4); width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 -28px; z-index: 2; box-shadow: 0 0 24px rgba(132,204,22,0.2);
}

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin: 60px auto 0; max-width: 760px;
}
.stat strong { display: block; font-family: "Space Grotesk"; font-size: 38px; color: var(--accent); }
.stat span { color: var(--muted); font-size: 13px; }

/* ===== Clients ===== */
.clients { text-align: center; padding-top: 50px; padding-bottom: 50px; }
.clients-label { color: var(--muted); font-size: 12px; letter-spacing: 3px; margin-bottom: 28px; }
.logo-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logo-track { display: flex; gap: 70px; width: max-content; animation: marquee 30s linear infinite; }
.logo-track span {
  font-family: "Space Grotesk"; font-size: 26px; font-weight: 700; color: var(--muted);
  letter-spacing: 2px; opacity: .55; transition: opacity .3s, color .3s;
}
.logo-track span:hover { opacity: 1; color: var(--text); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Services ===== */
.cards-viewport { overflow: hidden; }
.cards-track { display: flex; gap: 24px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.service-card {
  flex: 0 0 300px; min-height: 290px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s, background .3s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(132,204,22,0.4); }
.service-card.active { background: linear-gradient(160deg, rgba(132,204,22,0.10), var(--card)); border-color: rgba(132,204,22,0.5); }
.card-num { color: var(--accent); font-weight: 600; font-size: 14px; letter-spacing: 1px; }
.service-card h3 { font-size: 23px; margin: 16px 0 12px; font-weight: 600; }
.service-card p { color: var(--muted); font-size: 15px; flex: 1; }
.card-arrow {
  margin-top: 20px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; color: var(--text); font-size: 18px; cursor: pointer; align-self: flex-start;
  transition: background .25s, color .25s, transform .25s;
}
.service-card:hover .card-arrow, .service-card.active .card-arrow { background: var(--accent); color: #0a0f06; border-color: var(--accent); }
.card-arrow:hover { transform: translateX(3px); }

.carousel-nav { display: flex; justify-content: flex-end; gap: 12px; margin-top: 32px; }
.c-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: var(--card);
  color: var(--text); font-size: 18px; cursor: pointer; transition: background .25s, color .25s, border-color .25s;
}
.c-btn:hover { background: var(--accent); color: #0a0f06; border-color: var(--accent); }

/* ===== Work ===== */
.work-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter {
  background: var(--card); border: 1px solid var(--line); color: var(--muted);
  padding: 9px 18px; border-radius: 100px; font-size: 14px; cursor: pointer; transition: .25s;
}
.filter:hover { color: var(--text); border-color: rgba(132,204,22,0.4); }
.filter.active { background: var(--accent); color: #0a0f06; border-color: var(--accent); font-weight: 600; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card {
  position: relative; height: 300px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); cursor: pointer; transition: transform .35s, border-color .35s;
}
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s, filter .4s; filter: brightness(.78) saturate(1.05); }
.work-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; background: linear-gradient(180deg, transparent 40%, rgba(6,8,7,0.85));
}
.work-card::after {
  content: "↗"; position: absolute; top: 20px; right: 20px; font-size: 20px; color: #0a0f06;
  background: var(--accent); width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  opacity: 0; transform: translateY(-6px); transition: .3s;
}
.work-card:hover { transform: translateY(-6px); border-color: rgba(132,204,22,0.45); }
.work-card:hover img { transform: scale(1.08); filter: brightness(.9) saturate(1.2); }
.work-card:hover::after { opacity: 1; transform: translateY(0); }
.work-cat { color: var(--accent); font-size: 12px; letter-spacing: 2px; font-weight: 600; margin-bottom: 8px; }
.work-card h3 { font-size: 22px; font-weight: 600; }
.work-card.hidden { display: none; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-visual { position: relative; }
.about-visual img { width: 100%; height: 460px; object-fit: cover; border-radius: 24px; border: 1px solid var(--line); filter: saturate(1.05); }
.about-badge {
  position: absolute; bottom: -22px; right: -16px; background: var(--accent); color: #0a0f06;
  padding: 18px 22px; border-radius: 16px; box-shadow: 0 14px 40px rgba(132,204,22,0.3); max-width: 200px;
}
.about-badge strong { display: block; font-family: "Space Grotesk"; font-size: 30px; line-height: 1; }
.about-badge span { font-size: 13px; font-weight: 500; }
.about-copy p { color: var(--muted); margin: 18px 0; font-size: 16px; }
.about-points { list-style: none; margin: 24px 0 30px; }
.about-points li { color: var(--muted); padding: 8px 0; font-size: 15px; display: flex; gap: 8px; }

/* ===== Process ===== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 90px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: border-color .3s, transform .3s; }
.step:hover { border-color: rgba(132,204,22,0.4); transform: translateY(-5px); }
.step-num { font-family: "Space Grotesk"; font-size: 30px; color: var(--accent); font-weight: 700; }
.step h4 { font-size: 19px; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* ===== Clients wall ===== */
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.client-card {
  position: relative; min-height: 150px; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,0.03), var(--card-2));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: 24px; overflow: hidden; transition: transform .35s, border-color .35s, background .35s;
}
.client-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s;
  background: radial-gradient(80% 80% at 50% 0%, rgba(132,204,22,0.16), transparent 65%);
}
.client-card:hover { transform: translateY(-6px); border-color: rgba(132,204,22,0.45); }
.client-card:hover::before { opacity: 1; }
.client-name {
  position: relative; font-family: "Space Grotesk"; font-size: 24px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--text); transition: color .3s;
}
.client-card:hover .client-name { color: var(--accent); }
.client-tag { position: relative; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* Fleure logo card */
.client-fleure { gap: 10px; }
.client-watermark {
  position: absolute; right: -18px; bottom: -22px; width: 120px; height: 120px;
  color: var(--accent); opacity: 0.08; transform: rotate(-12deg); pointer-events: none;
  transition: opacity .4s, transform .4s;
}
.client-fleure:hover .client-watermark { opacity: 0.16; transform: rotate(0deg) scale(1.05); }
.fleure-mark { position: relative; width: 38px; height: 38px; color: var(--accent); display: block; }
.fleure-mark svg { width: 100%; height: 100%; filter: drop-shadow(0 0 10px rgba(132,204,22,0.4)); }
.fleure-word {
  font-family: "Space Grotesk", serif; font-style: italic; font-weight: 500;
  letter-spacing: 1px; font-size: 26px;
}

.client-stats {
  display: flex; justify-content: center; gap: 70px; flex-wrap: wrap; margin-top: 60px;
  padding-top: 50px; border-top: 1px solid var(--line);
}
.cs { text-align: center; }
.cs strong { display: block; font-family: "Space Grotesk"; font-size: 44px; color: var(--accent); }
.cs span { color: var(--muted); font-size: 14px; letter-spacing: 1px; }

/* ===== Quote banner ===== */
.quote-banner { max-width: 100%; padding: 90px 32px; }
.quote-inner {
  max-width: var(--max); margin: 0 auto; text-align: center;
  background: linear-gradient(160deg, rgba(132,204,22,0.10), var(--card));
  border: 1px solid rgba(132,204,22,0.25); border-radius: 28px; padding: 60px 40px;
}
.t-stars { color: var(--accent); letter-spacing: 4px; margin-bottom: 22px; font-size: 20px; }
.big-quote { font-family: "Space Grotesk"; font-size: clamp(22px, 3vw, 34px); line-height: 1.35; max-width: 880px; margin: 0 auto 30px; font-weight: 500; }
.quote-author { display: inline-flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim)); color: #0a0f06;
  font-family: "Space Grotesk"; font-weight: 700; font-size: 20px;
}
.quote-author strong { display: block; font-family: "Space Grotesk"; font-size: 17px; text-align: left; }
.quote-author span { color: var(--muted); font-size: 14px; }

/* ===== CTA ===== */
.cta { text-align: center; position: relative; overflow: hidden; border-radius: 0; }
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("assets/cta-bg.jpg") center/cover no-repeat;
  filter: brightness(0.28) saturate(1.1);
}
.cta-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 50%, rgba(132,204,22,0.12), transparent 60%), linear-gradient(180deg, var(--bg), transparent 30%, transparent 70%, var(--bg));
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-title { font-size: clamp(28px, 4vw, 46px); font-weight: 700; margin: 14px 0 10px; letter-spacing: -1px; }
.cta-inner > p { color: var(--muted); margin-bottom: 36px; }
.cta-form { display: grid; gap: 14px; text-align: left; }
.cta-form input, .cta-form textarea {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 15px 18px;
  color: var(--text); font-family: inherit; font-size: 15px; resize: vertical; transition: border-color .2s;
}
.cta-form input:focus, .cta-form textarea:focus { outline: none; border-color: var(--accent); }
.cta-form .btn { justify-content: center; margin-top: 6px; }
.form-note { color: var(--accent); font-size: 14px; text-align: center; min-height: 18px; }

.contact-extra { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 22px; }
.contact-extra a { color: var(--muted); font-size: 15px; transition: color .2s; }
.contact-extra a:hover { color: var(--accent); }
.footer-email { color: var(--muted); transition: color .2s; }
.footer-email:hover { color: var(--accent); }

/* ===== Footer ===== */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--line); padding: 50px 40px 30px; max-width: var(--max); margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.footer-links { display: flex; gap: 26px; }
.footer-links a { color: var(--muted); font-size: 15px; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid;
  place-items: center; font-size: 12px; font-weight: 600; color: var(--muted); transition: .25s;
}
.footer-social a:hover { background: var(--accent); color: #0a0f06; border-color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; color: var(--muted); font-size: 14px; flex-wrap: wrap; gap: 10px; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual img { height: 360px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .client-stats { gap: 40px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .compare { grid-template-columns: 1fr; gap: 18px; }
  .compare-vs { margin: -10px auto; }
}
/* Nav switches to hamburger early so the links never overflow */
@media (max-width: 980px) {
  .nav { padding: 16px 22px; }
  .nav.scrolled { padding: 14px 22px; }
  .nav-links {
    position: fixed; top: 72px; right: 16px; left: 16px; flex-direction: column; gap: 18px; align-items: flex-start;
    background: rgba(10,14,11,0.98); backdrop-filter: blur(14px); border: 1px solid var(--line);
    border-radius: 16px; padding: 24px; transform: translateY(-20px); opacity: 0; pointer-events: none; transition: .3s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-cta { align-self: stretch; text-align: center; }
  .nav-toggle { display: flex; }
}
@media (max-width: 720px) {
  section { padding: 80px 22px; }
  .work-grid, .client-grid, .process { grid-template-columns: 1fr; }
  .client-stats { gap: 30px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .compare { grid-template-columns: 1fr; gap: 18px; }
  .compare-vs { margin: -10px auto; }
}
