*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #060608;
  --bg2: #0d0d12;
  --surface: #12121a;
  --surface2: #1a1a26;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --text: #f0f0f5;
  --text-muted: rgba(240,240,245,0.45);
  --text-dim: rgba(240,240,245,0.25);
  --accent: #4fffb0;
  --accent2: #7b6dff;
  --accent3: #ff6b6b;
  --wa: #25D366;
  --mono: 'JetBrains Mono', monospace;
  --display: 'Bricolage Grotesque', sans-serif;
  --r: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--display);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(79,255,176,0.5);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

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

/* ── GRID BACKGROUND ── */
.grid-bg {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 100%);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 5vw;
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(6,6,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.logo {
  font-family: var(--mono);
  font-size: 1rem; font-weight: 500;
  color: var(--text); text-decoration: none;
  letter-spacing: 1px;
  display: flex; align-items: center; gap: 10px;
}
.logo-dot {
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.nav-center {
  display: flex; align-items: center; gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px;
}
.nav-center a {
  padding: 8px 20px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.nav-center a:hover,
.nav-center a.active { color: var(--text); background: var(--surface2); }
.nav-center a.active { color: var(--accent); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--bg) !important;
  padding: 10px 22px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79,255,176,0.35); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 110;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 105;
  background: rgba(6,6,8,0.97);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-link {
  font-size: 2rem; font-weight: 700;
  color: var(--text-muted); text-decoration: none;
  letter-spacing: -1px;
  padding: 12px 32px;
  transition: color 0.2s, transform 0.2s;
  display: block;
}
.mobile-link:hover { color: var(--accent); transform: translateX(8px); }
.mobile-cta {
  margin-top: 24px;
  background: var(--accent); color: var(--bg) !important;
  padding: 16px 36px; border-radius: 100px;
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0; transform: none !important;
}
.mobile-cta:hover { box-shadow: 0 12px 40px rgba(79,255,176,0.4); transform: translateY(-2px) !important; }

/* ── HERO ── */
.hero {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 140px 5vw 80px;
  overflow: hidden;
}

/* Orb glows */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,255,176,0.12) 0%, transparent 70%);
  top: -10%; left: -15%;
  animation: float1 8s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,109,255,0.1) 0%, transparent 70%);
  top: 20%; right: -10%;
  animation: float2 10s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,255,176,0.06) 0%, transparent 70%);
  bottom: 0; left: 40%;
  animation: float3 12s ease-in-out infinite;
}
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, 30px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 40px); } }
@keyframes float3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px, -30px); } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border2);
  background: var(--surface);
  padding: 8px 18px; border-radius: 100px;
  font-family: var(--mono); font-size: 0.75rem; font-weight: 400;
  color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title .line { display: block; }
.hero-title .line-2 {
  background: linear-gradient(135deg, var(--accent) 0%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line-3 { color: var(--text-muted); font-weight: 300; }

.hero-desc {
  max-width: 540px; margin: 0 auto 44px;
  font-size: 1.1rem; color: var(--text-muted);
  line-height: 1.75; font-weight: 300;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}
.btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--bg);
  padding: 16px 32px; border-radius: 100px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(79,255,176,0.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border2); color: var(--text);
  padding: 16px 32px; border-radius: 100px;
  font-weight: 500; font-size: 0.95rem; text-decoration: none;
  transition: all 0.3s; background: transparent;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-3px); background: var(--surface); }

/* Stats row in hero */
.hero-stats {
  display: flex; gap: 0;
  margin-top: 72px; border-top: 1px solid var(--border);
  padding-top: 48px; width: 100%; max-width: 720px;
  justify-content: space-around;
  animation: fadeUp 0.8s 0.6s ease both;
}
.hstat { text-align: center; }
.hstat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -2px;
  color: var(--text);
  font-family: var(--display);
}
.hstat-num sup { font-size: 0.5em; color: var(--accent); vertical-align: super; }
.hstat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; font-weight: 400; letter-spacing: 0.5px; }
.hstat-divider { width: 1px; background: var(--border); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE ── */
.marquee-wrap {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0; overflow: hidden;
  background: var(--bg2);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.m-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 32px;
  font-family: var(--mono); font-size: 0.78rem;
  color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.m-item span { color: var(--accent); font-size: 0.9rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section { position: relative; z-index: 2; padding: 120px 5vw; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
}
.section-tag::before { content: '//'; color: var(--text-dim); }
h2.heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800; letter-spacing: -3px; line-height: 1.0;
  color: var(--text); margin-bottom: 20px;
}
h2.heading em { font-style: normal; color: var(--accent); }
.sub {
  font-size: 1rem; color: var(--text-muted); line-height: 1.75;
  max-width: 480px; font-weight: 300;
}

/* ── SERVICES ── */
.services-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 80px; align-items: start; margin-top: 80px;
}
.services-list { display: flex; flex-direction: column; gap: 2px; }
.svc-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border: 1px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.svc-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--accent);
  transition: width 0.3s;
  border-radius: 2px;
}
.svc-item:hover, .svc-item.active {
  background: var(--surface);
  border-color: var(--border);
}
.svc-item:hover::before, .svc-item.active::before { width: 3px; }
.svc-item-left { display: flex; align-items: center; gap: 16px; }
.svc-num {
  font-family: var(--mono); font-size: 0.7rem;
  color: var(--text-dim); width: 28px;
}
.svc-name {
  font-size: 1.05rem; font-weight: 600; color: var(--text);
  transition: color 0.3s;
}
.svc-item:hover .svc-name, .svc-item.active .svc-name { color: var(--accent); }
.svc-arrow { color: var(--text-dim); font-size: 1.1rem; transition: transform 0.3s, color 0.3s; }
.svc-item:hover .svc-arrow, .svc-item.active .svc-arrow {
  transform: translateX(4px); color: var(--accent);
}

/* Service detail panel */
.svc-panel {
  position: sticky; top: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px; overflow: hidden;
  transition: opacity 0.25s ease;
}
.svc-panel.updating { opacity: 0; }
.svc-panel::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,255,176,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.panel-icon { font-size: 3rem; margin-bottom: 24px; }
.panel-title {
  font-size: 1.8rem; font-weight: 800; letter-spacing: -1px;
  color: var(--text); margin-bottom: 14px;
}
.panel-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }
.panel-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ptag {
  padding: 6px 14px; border-radius: 100px;
  background: rgba(79,255,176,0.08);
  border: 1px solid rgba(79,255,176,0.15);
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--accent); letter-spacing: 0.5px;
}

/* ── WHATSAPP + AI ── */
.wa-ai-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 80px;
}
.feature-card {
  border-radius: 20px; padding: 44px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-6px); }
.fc-wa {
  background: linear-gradient(135deg, rgba(37,211,102,0.05) 0%, var(--surface) 60%);
  border-color: rgba(37,211,102,0.15);
}
.fc-wa:hover { box-shadow: 0 24px 80px rgba(37,211,102,0.1); }
.fc-ai {
  background: linear-gradient(135deg, rgba(123,109,255,0.06) 0%, var(--surface) 60%);
  border-color: rgba(123,109,255,0.15);
}
.fc-ai:hover { box-shadow: 0 24px 80px rgba(123,109,255,0.12); }
.fc-glow {
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%; filter: blur(60px); pointer-events: none;
}
.fc-wa .fc-glow { background: rgba(37,211,102,0.12); }
.fc-ai .fc-glow { background: rgba(123,109,255,0.12); }
.fc-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.fc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.fc-wa .fc-icon { background: rgba(37,211,102,0.15); }
.fc-ai .fc-icon { background: rgba(123,109,255,0.15); }
.fc-label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.fc-wa .fc-label { color: var(--wa); }
.fc-ai .fc-label { color: var(--accent2); }
.fc-name { font-size: 1.25rem; font-weight: 700; color: var(--text); }
.fc-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.fc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fc-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.88rem; color: var(--text-muted);
}
.fc-check {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; flex-shrink: 0; margin-top: 1px;
}
.fc-wa .fc-check { background: rgba(37,211,102,0.2); color: var(--wa); }
.fc-ai .fc-check { background: rgba(123,109,255,0.2); color: var(--accent2); }

/* ── WORKS ── */
.works-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.works-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.wk {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  cursor: pointer;
  position: relative;
}
.wk:hover { transform: translateY(-8px) scale(1.01); border-color: var(--border2); box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.wk-1 { grid-column: span 5; grid-row: span 2; }
.wk-2 { grid-column: span 7; }
.wk-3 { grid-column: span 7; }
.wk-4 { grid-column: span 4; }
.wk-5 { grid-column: span 4; }
.wk-6 { grid-column: span 4; }
.wk-thumb {
  display: block;
  position: relative; overflow: hidden;
}
.wk-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.wk:hover .wk-thumb img { transform: scale(1.06); }
.wk-1 .wk-thumb { height: 340px; background: linear-gradient(135deg, #0a2a1a, #0d3d26); }
.wk-2 .wk-thumb { height: 180px; background: linear-gradient(135deg, #1a1228, #251a40); }
.wk-3 .wk-thumb { height: 180px; background: linear-gradient(135deg, #2a1a12, #3d2616); }
.wk-4 .wk-thumb { height: 160px; background: linear-gradient(135deg, #0d1a2a, #122040); }
.wk-5 .wk-thumb { height: 160px; background: linear-gradient(135deg, #1a2a0d, #263d12); }
.wk-6 .wk-thumb {
  height: 160px; background: linear-gradient(135deg, #2a0d1a, #401226);
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.wk-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(79,255,176,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.wk-info { padding: 20px 24px 24px; }
.wk-cat {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 6px;
}
.wk-title {
  font-size: 1.05rem; font-weight: 700; color: var(--text);
  margin-bottom: 4px;
}
.wk-desc { font-size: 0.82rem; color: var(--text-muted); }
.wk-hover-arrow {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(79,255,176,0.1); border: 1px solid rgba(79,255,176,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.9rem;
  opacity: 0; transform: translateY(6px);
  transition: all 0.3s;
}
.wk:hover .wk-hover-arrow { opacity: 1; transform: translateY(0); }

/* ── PROCESS ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  margin-top: 72px;
}
.process-step {
  background: var(--bg2); padding: 40px 32px;
  position: relative; transition: background 0.3s;
}
.process-step:hover { background: var(--surface); }
.step-num {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 2px;
  color: var(--text-dim); margin-bottom: 20px; text-transform: uppercase;
}
.step-icon { font-size: 2rem; margin-bottom: 18px; }
.step-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.step-connector {
  position: absolute; top: 40px; right: -1px;
  font-size: 1.2rem; color: var(--accent); z-index: 1;
}

/* ── TEAM GRID ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 64px;
}

/* ── CARD ── */
.founder-card {
  background: #12121a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: static;
  overflow: hidden;
}
.founder-card:hover {
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

/* ── AVATAR ── */
.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 22px;
  flex-shrink: 0;
}

/* ── NAME ── */
.founder-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f0f0f5;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}

/* ── ROLE ── */
.founder-role {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ── BIO — flex:1 pushes divider+stats to bottom ── */
.founder-bio {
  font-size: 0.88rem;
  color: rgba(240,240,245,0.45);
  line-height: 1.78;
  margin-bottom: 20px;
  font-weight: 300;
  flex: 1;
}

/* ── SKILL TAGS ── */
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.stag {
  padding: 5px 13px;
  border-radius: 100px;
  background: #060608;
  border: 1px solid rgba(255,255,255,0.13);
  font-size: 0.72rem;
  color: rgba(240,240,245,0.45);
  font-family: var(--mono);
  white-space: nowrap;
}

/* ── DIVIDER ── */
.stat-divider {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* ── STAT ROW ── */
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-shrink: 0;
  width: 100%;
}
.stat-item {
  text-align: center;
  padding: 4px 8px;
}
.stat-item:first-child {
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-val {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  display: block;
  margin-bottom: 3px;
  line-height: 1.2;
}
.stat-lbl {
  font-size: 0.65rem;
  color: rgba(240,240,245,0.45);
  display: block;
  font-weight: 400;
  white-space: nowrap;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
  margin-top: 80px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.cinfo-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border);
  text-decoration: none; transition: all 0.3s;
}
.cinfo-item:hover { border-color: var(--border2); transform: translateX(6px); }
.cinfo-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  background: var(--bg2); flex-shrink: 0;
}
.cinfo-label { font-size: 0.72rem; color: var(--text-dim); font-family: var(--mono); text-transform: uppercase; letter-spacing: 1px; }
.cinfo-val { font-size: 0.92rem; font-weight: 600; color: var(--text); margin-top: 2px; }
.cinfo-item.wa { border-color: rgba(37,211,102,0.2); }
.cinfo-item.wa:hover { border-color: rgba(37,211,102,0.45); box-shadow: 0 8px 32px rgba(37,211,102,0.08); }
.cinfo-item.wa .cinfo-val { color: var(--wa); }

.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 44px;
}
.form-title { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 28px; letter-spacing: -0.5px; }
.form-group { margin-bottom: 16px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
input, textarea, select {
  width: 100%; padding: 14px 18px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text);
  font-family: var(--display); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input:focus, textarea:focus, select:focus { border-color: rgba(79,255,176,0.4); }
textarea { min-height: 110px; resize: vertical; }
select option { background: var(--bg2); }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--accent); color: var(--bg);
  border: none; border-radius: 10px;
  font-family: var(--display); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s;
  margin-top: 8px; letter-spacing: 0.3px;
}
.form-submit:hover { box-shadow: 0 12px 40px rgba(79,255,176,0.4); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Form status messages */
.form-status {
  display: none;
  padding: 14px 18px; border-radius: 10px;
  font-size: 0.88rem; font-weight: 500;
  margin-top: 12px; text-align: center;
}
.form-status.success {
  display: block;
  background: rgba(79,255,176,0.08);
  border: 1px solid rgba(79,255,176,0.25);
  color: var(--accent);
}
.form-status.error {
  display: block;
  background: rgba(255,107,107,0.08);
  border: 1px solid rgba(255,107,107,0.25);
  color: var(--accent3);
}

/* ── FLOATING WHATSAPP BUTTON ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 40px rgba(37,211,102,0.6); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ── FOOTER ── */
footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  padding: 64px 5vw 36px;
  background: var(--bg2);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .footer-logo {
  font-family: var(--mono); font-size: 1rem; font-weight: 500;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-logo img {
  height: 32px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 240px; }
.footer-col h5 {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 20px;
}
.footer-col a {
  display: block; color: var(--text-muted); text-decoration: none;
  font-size: 0.88rem; margin-bottom: 12px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 32px;
  font-family: var(--mono); font-size: 0.72rem; color: var(--text-dim);
  letter-spacing: 0.5px;
}
.footer-accent { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-layout { grid-template-columns: 1fr; gap: 24px; }
  .svc-panel {
    position: static;
    display: block;
    padding: 32px;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .nav-center { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { letter-spacing: -2px; }
  .works-masonry { grid-template-columns: 1fr 1fr; }
  .wk-1, .wk-2, .wk-3 { grid-column: span 2; }
  .wk-4, .wk-5, .wk-6 { grid-column: span 2; }
  .wk-1 { grid-row: span 1; }
  .wk-1 .wk-thumb { height: 220px; }
  .wa-ai-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .works-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 480px) {
  .works-masonry { grid-template-columns: 1fr; }
  .wk-1, .wk-2, .wk-3, .wk-4, .wk-5, .wk-6 { grid-column: span 1; }
  .wk-1 .wk-thumb { height: 200px; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hstat-divider { display: none; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* ── TEAM: TABLET ── */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .team-grid .founder-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ── TEAM: MOBILE ── */
@media (max-width: 680px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-grid .founder-card:last-child {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }
  .founder-card {
    padding: 28px 22px;
  }
}
