*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
:root {
  --ink:    #07080f;
  --ink2:   #0c0d17;
  --surf:   #12131e;
  --surf2:  #191a28;
  --line:   rgba(255,255,255,0.06);
  --line2:  rgba(255,255,255,0.11);
  --text:   #b0b0cc;
  --muted:  #4a4a66;
  --white:  #eeeef8;
  --gold:   #2872a1;
  --gold2:  #CBDDE9;
  --gold3:  rgba(201,168,76,0.12);
  --r:      10px;
  --fh:     'Syne', system-ui, sans-serif;
  --fb:     'Geist', system-ui, sans-serif;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}
 
html { scroll-behavior: smooth; }
body { background: var(--ink); color: var(--text); font-family: var(--fb); font-weight: 300; line-height: 1.65; overflow-x: hidden; cursor: none; }
a { text-decoration: none; color: inherit; }
 
/* ── CURSOR ── */
.cursor {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s var(--ease), opacity 0.3s, width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 56px; height: 56px; background: rgba(201,168,76,0.08); }
 
/* ── LAYOUT ── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section--dark { background: var(--ink2); }
 
/* ── BUTTONS ── */
.btn-fill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #08080f;
  font-family: var(--fb); font-weight: 500; font-size: 14px;
  letter-spacing: 0.03em; padding: 15px 30px; border-radius: 4px;
  border: none; cursor: none; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.btn-fill::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.25));
  transform: translateX(-100%); transition: transform 0.5s var(--ease);
}
.btn-fill:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.3); }
.btn-fill:hover::after { transform: translateX(0); }
 
.btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--white); font-family: var(--fb); font-size: 14px; font-weight: 400;
  padding: 15px 0; border-bottom: 1px solid var(--line2);
  transition: border-color 0.3s, color 0.3s, gap 0.3s;
  cursor: none;
}
.btn-line:hover { border-color: var(--gold); color: var(--gold); gap: 18px; }
.btn-line-arrow { transition: transform 0.3s var(--ease); }
.btn-line:hover .btn-line-arrow { transform: translateX(4px); }
 
/* ── SECTION HEADER ── */
.section-head { margin-bottom: 72px; }
.section-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s, transform 0.6s;
}
.section-label.in { opacity: 1; transform: none; }
.section-title {
  font-family: var(--fh); font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700; color: var(--white); line-height: 1.1;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s 0.1s, transform 0.7s 0.1s;
  letter-spacing: -0.02em;
}
.section-title.in { opacity: 1; transform: none; }
.section-title em { font-style: normal; color: var(--gold); font-weight: 800; }
 
/* ── NAV ── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 500;
  display: flex; align-items: center;
  padding: 28px 48px;
  transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  padding: 16px 48px;
  background: rgba(7,8,15,0.88);
  backdrop-filter: blur(28px) saturate(1.5);
  border-bottom-color: var(--line);
}
.nav-logo {
  font-family: var(--fh); font-size: 22px; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em; cursor: none;
}
.nav-logo span { color: var(--gold); }
.nav-menu { display: flex; list-style: none; gap: 44px; margin: 0 auto; }
.nav-menu a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  color: var(--muted); transition: color 0.2s; cursor: none; position: relative;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-size: 12px; font-weight: 500; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25); padding: 9px 20px; border-radius: 4px;
  transition: background 0.2s, border-color 0.2s; cursor: none;
}
.nav-cta:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.nav-burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: none; padding: 4px; z-index: 600;
}
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--white); transition: transform 0.35s var(--ease), opacity 0.35s; }
 
/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
#canvas { position: absolute; inset: 0; z-index: 0; }
 
.hero-lines {
  position: absolute; inset: 0; z-index: 0;
  display: flex; justify-content: space-between; padding: 0 10%;
  pointer-events: none;
}
.hline {
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--line) 20%, var(--line) 80%, transparent);
  animation: lineFade 3s ease-in-out infinite alternate;
}
.hline:nth-child(2) { animation-delay: 1s; }
.hline:nth-child(3) { animation-delay: 2s; }
@keyframes lineFade { from { opacity: 0.4; } to { opacity: 1; } }
 
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto; padding: 0 40px; padding-top: 130px; width: 100%;
}
 
.hero-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 32px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.hero-title {
  font-family: var(--fh); font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 800; color: var(--white); line-height: 1.0; margin-bottom: 28px;
  letter-spacing: -0.03em;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s 0.5s var(--ease) forwards;
}
.hero-title em { font-style: normal; color: var(--gold); font-weight: 800; }
.hero-sub {
  font-size: 17px; color: var(--muted); max-width: 460px; line-height: 1.75; margin-bottom: 48px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s 0.7s var(--ease) forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s 0.9s var(--ease) forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }
 
.hero-stats {
  position: absolute; bottom: 48px; right: 40px; z-index: 1;
  display: flex; gap: 40px;
}
.hstat {
  text-align: right;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease) forwards;
}
.hstat:nth-child(1) { animation-delay: 1.1s; }
.hstat:nth-child(2) { animation-delay: 1.3s; }
.hstat:nth-child(3) { animation-delay: 1.5s; }
.hstat strong {
  display: inline; font-family: var(--fh); font-size: 36px;
  font-weight: 800; color: var(--white); letter-spacing: -0.02em;
}
.hstat > span { font-family: var(--fh); font-size: 18px; color: var(--gold); margin-left: 2px; font-weight: 700; }
.hstat p { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
 
.hero-scroll-hint {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block; width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
 
/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px 0; background: var(--ink2);
}
.marquee-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-track span { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.marquee-track em { color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
 
/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.scard {
  background: var(--ink); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.4s;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s, background 0.4s;
}
.scard.in { opacity: 1; transform: none; }
.scard:nth-child(2) { transition-delay: 0.1s; }
.scard:nth-child(3) { transition-delay: 0.15s; }
.scard:nth-child(4) { transition-delay: 0.2s; }
.scard:hover { background: var(--surf); }
.scard--gold { background: var(--surf); }
.scard--gold:hover { background: var(--surf2); }
 
.scard-badge {
  display: inline-block; font-size: 9px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3); padding: 3px 10px; border-radius: 2px; margin-bottom: 12px;
}
.scard-num { font-family: var(--fh); font-size: 11px; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 24px; font-weight: 600; }
.scard-icon { color: var(--gold); margin-bottom: 20px; opacity: 0.7; transition: opacity 0.3s; }
.scard:hover .scard-icon { opacity: 1; }
.scard h3 { font-family: var(--fh); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.2; letter-spacing: -0.01em; }
.scard p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.scard-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.scard-tags span {
  font-size: 11px; letter-spacing: 0.04em; color: var(--text);
  background: rgba(255,255,255,0.03); border: 1px solid var(--line2); padding: 4px 10px; border-radius: 2px;
  white-space: nowrap;
}
.scard-hover-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.scard:hover .scard-hover-line { transform: scaleX(1); }
 
/* ── WORKS ── */
.works { display: flex; flex-direction: column; gap: 100px; }
.work-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s, transform 0.7s var(--ease);
}
.work-item.in { opacity: 1; transform: none; }
.work-item--rev { direction: rtl; }
.work-item--rev > * { direction: ltr; }
 
.work-visual {
  height: 380px; border-radius: var(--r); overflow: hidden; position: relative;
  border: 1px solid var(--line2);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.work-item:hover .work-visual { transform: scale(1.02); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.wv-1 { background: radial-gradient(ellipse at 30% 40%, #2a0d4f 0%, #0d0512 100%); }
.wv-2 { background: radial-gradient(ellipse at 70% 30%, #0b1d40 0%, #050b18 100%); }
.wv-3 { background: radial-gradient(ellipse at 50% 60%, #2a200a 0%, #100b03 100%); }
.wv-glow {
  position: absolute; width: 200px; height: 200px;
  border-radius: 50%; filter: blur(80px); top: 20%; left: 30%;
  animation: glowPulse 4s ease-in-out infinite;
}
.wv-1 .wv-glow { background: rgba(120,40,200,0.3); }
.wv-2 .wv-glow { background: rgba(30,80,220,0.3); }
.wv-3 .wv-glow { background: rgba(200,140,20,0.25); }
@keyframes glowPulse { 0%,100%{opacity:.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.15)} }
 
.wv-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.wv-type {
  font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.2); padding: 4px 12px; border-radius: 2px;
  align-self: flex-start; margin-bottom: 12px;
}
.wv-mockup { background: rgba(0,0,0,0.35); backdrop-filter: blur(12px); border-radius: 6px; border: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.wv-bar { display: flex; gap: 6px; padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.wv-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.wv-bar span:first-child { background: rgba(255,80,80,0.4); }
.wv-bar span:nth-child(2) { background: rgba(255,180,0,0.4); }
.wv-bar span:nth-child(3) { background: rgba(60,200,80,0.4); }
.wv-screen { height: 90px; padding: 12px; }
.s1 { background: repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 18px); }
.s2 { background: repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px); }
.s3 { background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%); }
 
.work-tag { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.work-info h3 { font-family: var(--fh); font-size: 26px; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.01em; }
.work-info p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.work-metric { display: flex; align-items: baseline; gap: 12px; margin-bottom: 28px; padding-left: 18px; border-left: 2px solid var(--gold); }
.work-metric strong { font-family: var(--fh); font-size: 28px; font-weight: 800; color: var(--gold); letter-spacing: -0.02em; }
.work-metric span { font-size: 13px; color: var(--muted); }
.work-cta { font-size: 13px; color: var(--text); border-bottom: 1px solid var(--line2); padding-bottom: 2px; display: inline-block; transition: color 0.2s, border-color 0.2s, letter-spacing 0.3s; cursor: none; }
.work-cta:hover { color: var(--gold); border-color: var(--gold); letter-spacing: 0.04em; }
 
/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.pstep {
  background: var(--ink); padding: 40px 28px; position: relative; overflow: hidden;
  transition: background 0.4s;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s var(--ease), background 0.4s;
}
.pstep.in { opacity: 1; transform: none; }
.pstep:hover { background: var(--surf); }
.pstep:nth-child(2) { transition-delay: 0.08s; }
.pstep:nth-child(3) { transition-delay: 0.16s; }
.pstep:nth-child(4) { transition-delay: 0.24s; }
.pstep-num { font-family: var(--fh); font-size: 13px; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 32px; font-weight: 700; }
.pstep-line {
  width: 24px; height: 1px; background: var(--gold); margin-bottom: 20px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s 0.3s var(--ease);
}
.pstep.in .pstep-line { transform: scaleX(1); }
.pstep h3 { font-family: var(--fh); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.3; letter-spacing: -0.01em; }
.pstep p { font-size: 13px; color: var(--muted); line-height: 1.75; }
 
/* ── TESTIMONIALS ── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi {
  background: var(--surf); border: 1px solid var(--line); border-radius: var(--r); padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.4s var(--ease);
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s var(--ease), border-color 0.3s;
}
.testi.in { opacity: 1; transform: none; }
.testi:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }
.testi:nth-child(2) { transition-delay: 0.1s; }
.testi:nth-child(3) { transition-delay: 0.2s; }
.testi::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-family: var(--fh); font-size: 80px; color: rgba(201,168,76,0.06); line-height: 1;
  pointer-events: none; font-weight: 800;
}
.testi-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 20px; }
.testi > p { font-family: var(--fb); font-size: 15px; font-weight: 300; color: var(--white); line-height: 1.75; margin-bottom: 28px; }
.testi footer { display: flex; align-items: center; gap: 14px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold3); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; color: var(--gold);
}
.testi footer strong { display: block; font-size: 13px; font-weight: 500; color: var(--white); font-family: var(--fh); }
.testi footer span { font-size: 11px; color: var(--muted); }
 
/* ── CTA SECTION ── */
.cta-section {
  position: relative; padding: 140px 0; text-align: center; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  animation: ctaPulse 6s ease-in-out infinite;
}
@keyframes ctaPulse { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.05)} }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: var(--fh); font-size: clamp(32px, 5vw, 60px); font-weight: 800;
  color: var(--white); line-height: 1.05; margin-bottom: 20px;
  letter-spacing: -0.03em;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s var(--ease);
}
.cta-inner h2.in { opacity: 1; transform: none; }
.cta-inner h2 em { font-style: normal; color: var(--gold); font-weight: 800; }
.cta-inner p {
  font-size: 16px; color: var(--muted); margin-bottom: 40px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s 0.15s, transform 0.6s 0.15s;
}
.cta-inner p.in { opacity: 1; transform: none; }
.cta-inner a {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s 0.25s, transform 0.6s 0.25s var(--ease), box-shadow 0.3s, transform 0.3s;
}
.cta-inner a.in { opacity: 1; transform: none; }
 
/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 88px; align-items: start; }
.contact-left .section-title { margin-bottom: 16px; }
.contact-sub { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 44px; }
.contact-links { display: flex; flex-direction: column; gap: 20px; }
.clink { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--text); transition: color 0.2s, gap 0.3s; cursor: none; }
.clink:hover { color: var(--gold); gap: 20px; }
.clink-icon { width: 36px; height: 36px; background: var(--gold3); border: 1px solid rgba(201,168,76,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); transition: background 0.3s; flex-shrink: 0; }
.clink:hover .clink-icon { background: rgba(201,168,76,0.2); }
 
.contact-form {
  display: flex; flex-direction: column; gap: 20px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s 0.2s, transform 0.7s 0.2s var(--ease);
}
.contact-form.in { opacity: 1; transform: none; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fgroup { display: flex; flex-direction: column; gap: 8px; }
.fgroup label { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--surf); border: 1px solid var(--line2); border-radius: 4px;
  color: var(--white); font-family: var(--fb); font-size: 14px; font-weight: 300;
  padding: 14px 16px; outline: none; width: 100%;
  transition: border-color 0.3s, background 0.3s; appearance: none; cursor: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(201,168,76,0.45); background: var(--surf2); }
.contact-form select option { background: var(--surf); }
.contact-form button { align-self: flex-start; }
 
/* ── FOOTER ── */
.footer { border-top: 1px solid var(--line); padding: 36px 0; background: var(--ink2); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer p { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: var(--muted); transition: color 0.2s; cursor: none; }
.footer-links a:hover { color: var(--gold); }
 
/* ── RESPONSIVE TABLET (960px) ── */
@media (max-width: 960px) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  .nav { padding: 18px 24px; }
  .nav.stuck { padding: 14px 24px; }
  .nav-menu, .nav-cta { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column; position: fixed; inset: 0;
    background: rgba(7,8,15,0.97); backdrop-filter: blur(20px);
    justify-content: center; align-items: center; gap: 40px; z-index: 550;
  }
  .nav-menu.open a { font-size: 26px; color: var(--white); }
  .nav-burger { display: flex; }
  .hero-stats { position: static; flex-direction: row; justify-content: flex-start; gap: 32px; margin-top: 48px; padding: 0 40px 60px; flex-wrap: wrap; }
  .hstat { text-align: left; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .work-item, .work-item--rev { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
  .work-visual { height: 260px; }
  .testimonials { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 52px; }
  .frow { grid-template-columns: 1fr; }
  .wrap { padding: 0 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-lines { display: none; }
  .contact-form button { width: 100%; align-self: stretch; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .cta-section { padding: 100px 0; }
}

/* ── RESPONSIVE MOBILE (600px) ── */
@media (max-width: 600px) {
  .hero-inner { padding: 0 20px; padding-top: 110px; }
  .hero-title { font-size: clamp(36px, 10vw, 56px); }
  .hero-sub { font-size: 15px; }
  .hero-actions {
    flex-direction: column; align-items: flex-start; gap: 16px; width: 100%;
  }
  .btn-fill { width: 100%; justify-content: center; }
  .btn-line { width: 100%; }
  .hero-stats { padding: 0 20px 48px; gap: 24px; }
  .wrap { padding: 0 18px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 48px; }
  .scard { padding: 32px 24px; }
  .pstep { padding: 28px 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .testi { padding: 28px 22px; }
  .contact-wrap { gap: 36px; }
  .contact-sub { font-size: 14px; }
  .cta-section { padding: 80px 0; }
  .cta-inner h2 { font-size: clamp(26px, 8vw, 40px); }
  .section-title { font-size: clamp(26px, 7vw, 40px); }
  .frow { grid-template-columns: 1fr; }
  .marquee-track { gap: 20px; }
  .footer-inner { gap: 10px; }
  .nav-cta { display: none; }
}
 
/* ── INDISPONÍVEL ── */
.scard.indisponivel-card { border: 2px solid red; }
.scard.indisponivel-card .label-indisponivel {
  position: absolute; top: 10px; right: 10px;
  background: red; color: white;
  font-size: 11px; font-weight: bold;
  padding: 4px 10px; border-radius: 4px; z-index: 10;
}