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

:root {
  --bg: #08080c;
  --bg-soft: #0e0e15;
  --surface: #131320;
  --surface-2: #191928;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(139,92,246,0.4);

  --violet: #8b5cf6;
  --violet-light: #a78bfa;
  --cyan: #22d3ee;
  --gradient: linear-gradient(120deg, var(--violet), var(--cyan));

  --whatsapp: #22c55e;
  --whatsapp-dark: #16a34a;

  --white: #ffffff;
  --ink: #f5f5f7;
  --ink-dim: rgba(245,245,247,0.68);
  --ink-faint: rgba(245,245,247,0.45);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--violet); color: var(--white); }

a { color: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--violet); color: var(--white);
  padding: 0.8rem 1.2rem; border-radius: 0 0 8px 0;
  z-index: 999; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

.icon {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  display: block; flex-shrink: 0;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(8,8,12,0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.nav-logo span { color: var(--violet-light); }
.nav-logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}
.logo-img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }

.nav-right { display: flex; align-items: center; gap: 1.6rem; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.is-active:not(.nav-cta) { color: var(--white); }

.nav-cta {
  background: var(--gradient);
  color: var(--white) !important;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: opacity 0.2s, transform 0.15s !important;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-wa {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.15s, background 0.2s;
}
.nav-wa:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }
.nav-wa .icon { width: 19px; height: 19px; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.25s; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 110px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: -1px;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 90%);
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px);
}
.hero-glow-1 {
  width: 600px; height: 600px; top: -220px; right: -120px;
  background: radial-gradient(circle, rgba(139,92,246,0.35) 0%, transparent 70%);
}
.hero-glow-2 {
  width: 500px; height: 500px; bottom: -220px; left: -100px;
  background: radial-gradient(circle, rgba(34,211,238,0.22) 0%, transparent 70%);
}

.hero-inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--violet-light); text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 26px; height: 2px; background: var(--gradient); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.2vw, 3.8rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-sub {
  font-size: 1.06rem; color: var(--ink-dim);
  line-height: 1.75; max-width: 470px;
  margin-bottom: 2.4rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--whatsapp); color: var(--white);
  font-weight: 600; font-size: 0.95rem;
  padding: 0.9rem 1.8rem; border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }
.btn-whatsapp .icon { width: 19px; height: 19px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.55rem;
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-weight: 500; font-size: 0.95rem;
  padding: 0.9rem 1.8rem; border-radius: 999px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--border-hover); background: rgba(139,92,246,0.08); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gradient); color: var(--white);
  font-weight: 600; font-size: 0.95rem;
  padding: 0.9rem 1.8rem; border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.hero-proof { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.hero-proof-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.82rem; color: var(--ink-faint); font-weight: 500;
}
.hero-proof-item .icon { width: 15px; height: 15px; color: var(--cyan); }

/* Hero visual card cluster */
.hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  perspective: 1200px;
}

.hero-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.3rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, transform 0.15s ease-out, box-shadow 0.15s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-card:hover { border-color: var(--border-hover); box-shadow: 0 20px 50px -14px rgba(139,92,246,0.35); }
.hero-card-lg { grid-column: span 2; }

.hero-card-icon {
  width: 42px; height: 42px;
  background: rgba(139,92,246,0.14);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--violet-light);
  transform: translateZ(20px);
}

.hero-card h3 {
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.3rem;
  transform: translateZ(14px);
}
.hero-card p {
  font-size: 0.8rem; color: var(--ink-faint); line-height: 1.5;
  transform: translateZ(8px);
}

/* ── SECTIONS SHARED ── */
section { padding: 110px 5%; position: relative; }
.section-inner { max-width: 1160px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700; letter-spacing: -0.025em;
  color: var(--white); line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-sub { font-size: 1rem; color: var(--ink-dim); max-width: 560px; line-height: 1.75; }

/* ── SERVICES ── */
.services { background: var(--bg-soft); }
.services-header { margin-bottom: 3.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2.5px; background: var(--gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-3px); border-color: var(--border-hover); box-shadow: 0 16px 40px -18px rgba(139,92,246,0.4); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 46px; height: 46px;
  background: rgba(139,92,246,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--violet-light);
}
.service-card h3 { font-family: var(--font-display); font-size: 1.03rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.875rem; color: var(--ink-dim); line-height: 1.7; }

/* ── PROCESS ── */
.process { background: var(--bg); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3.5rem; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 27px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(to right, transparent, var(--violet), var(--cyan), transparent);
  z-index: 0; opacity: 0.5;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 54px; height: 54px;
  background: var(--surface);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--border);
}
.process-step h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.82rem; color: var(--ink-dim); line-height: 1.65; }

/* ── PROJECTS ── */
.projects { background: var(--bg-soft); }

.project-card-grid {
  display: flex; flex-direction: column; gap: 1.6rem;
  margin-top: 3.5rem;
}

.project-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.project-visual {
  background: radial-gradient(circle at 30% 20%, rgba(139,92,246,0.18), transparent 60%), var(--bg);
  padding: 2.8rem 2.4rem;
  display: flex; align-items: center; justify-content: center;
}

.mock-browser {
  width: 100%; max-width: 380px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.mock-browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 0.7rem 0.9rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.mock-browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.mock-browser-url {
  margin-left: 0.6rem;
  font-size: 0.68rem; color: var(--ink-faint);
  background: rgba(255,255,255,0.04);
  padding: 0.2rem 0.6rem; border-radius: 5px;
}
.mock-browser-body { padding: 1.2rem; }
.mock-hero { margin-bottom: 1.1rem; }
.mock-line { background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 0.5rem; }
.mock-line-lg { height: 12px; width: 80%; background: var(--gradient); opacity: 0.7; }
.mock-line-sm { height: 8px; width: 55%; }
.mock-line-xs { height: 7px; width: 70%; margin-top: 0.6rem; }
.mock-line-xxs { height: 6px; width: 40%; opacity: 0.6; }
.mock-pill {
  display: inline-block; margin-top: 0.7rem;
  font-size: 0.68rem; font-weight: 600; color: var(--white);
  background: var(--gradient);
  padding: 0.4rem 0.9rem; border-radius: 999px;
}
.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 1rem; }
.mock-food-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; padding: 0.5rem; }
.mock-thumb { height: 34px; border-radius: 5px; background: linear-gradient(135deg, rgba(139,92,246,0.35), rgba(34,211,238,0.25)); margin-bottom: 0.4rem; }
.mock-food-card-live .mock-thumb { background: linear-gradient(135deg, rgba(34,211,238,0.4), rgba(139,92,246,0.3)); }
.mock-thumb-car { background: linear-gradient(135deg, rgba(167,139,250,0.4), rgba(34,211,238,0.2)); }
.mock-price { font-size: 0.68rem; font-weight: 700; color: var(--cyan); margin-top: 0.5rem; }
.mock-status { display: flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; color: var(--ink-faint); }
.mock-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 3px rgba(34,211,238,0.2); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.project-info { padding: 2.8rem 2.6rem; display: flex; flex-direction: column; justify-content: center; }
.project-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.tag {
  font-size: 0.72rem; font-weight: 600; color: var(--violet-light);
  background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25);
  padding: 0.3rem 0.7rem; border-radius: 999px;
}
.project-info h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.9rem; }
.project-info > p { font-size: 0.92rem; color: var(--ink-dim); line-height: 1.75; margin-bottom: 1.3rem; }
.project-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.8rem; }
.project-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--ink-dim); }
.project-features .icon { width: 16px; height: 16px; color: var(--cyan); }
.project-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.92rem; color: var(--white);
  text-decoration: none; width: fit-content;
  border-bottom: 1.5px solid var(--violet);
  padding-bottom: 2px;
  transition: gap 0.2s, color 0.2s;
}
.project-link:hover { gap: 0.8rem; color: var(--violet-light); }
.project-link .icon { width: 17px; height: 17px; }

/* ── WHY ── */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3.5rem; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 1.2rem; }
.why-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.3rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.why-item:hover { border-color: var(--border-hover); }
.why-item-dot { width: 8px; height: 8px; background: var(--gradient); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.why-item h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.why-item p { font-size: 0.83rem; color: var(--ink-dim); line-height: 1.6; }

.why-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.highlight-card {
  background: linear-gradient(160deg, rgba(139,92,246,0.1), rgba(34,211,238,0.05));
  border: 1px solid rgba(139,92,246,0.22);
  border-radius: 14px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  color: var(--violet-light);
}
.highlight-card .icon { width: 26px; height: 26px; margin: 0 auto 0.9rem; }
.highlight-card-label { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.35rem; }
.highlight-card-desc { font-size: 0.78rem; color: var(--ink-faint); line-height: 1.5; }

/* ── OVER ONS / TEAM ── */
.team { background: var(--bg-soft); }
.team-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; margin-top: 3.5rem; align-items: start; }

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.4rem 2rem;
  text-align: center;
}
.team-avatar-wrap { position: relative; width: 108px; height: 108px; margin: 0 auto 1.4rem; }
.team-avatar {
  width: 108px; height: 108px;
  border-radius: 24px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--white);
  box-shadow: 0 14px 34px -10px rgba(139,92,246,0.55);
}
.team-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.team-role { font-size: 0.88rem; color: var(--violet-light); font-weight: 600; margin-bottom: 1rem; }
.team-meta { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.6rem; }
.team-meta-item { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.82rem; color: var(--ink-dim); text-align: left; }
.team-meta-item .icon { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; }
.team-linkedin {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid var(--border);
  color: var(--white);
  font-size: 0.85rem; font-weight: 600;
  padding: 0.6rem 1.2rem; border-radius: 999px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.team-linkedin:hover { border-color: var(--border-hover); background: rgba(139,92,246,0.08); }
.team-linkedin .icon { width: 17px; height: 17px; }

.team-bio { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 2.6rem 2.4rem; }
.team-bio-quote { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--white); line-height: 1.5; margin-bottom: 1.4rem; letter-spacing: -0.01em; }
.team-bio p { font-size: 0.92rem; color: var(--ink-dim); line-height: 1.8; margin-bottom: 1rem; }
.team-bio p:last-child { margin-bottom: 0; }

/* ── CONTACT ── */
.contact { background: var(--bg); }
.contact-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.contact-grid {
  max-width: 1000px; margin: 2.8rem auto 0;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 1.4rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.form-row { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; }
.form-row label { font-size: 0.82rem; font-weight: 600; color: var(--ink-dim); }
.form-row input, .form-row textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  resize: vertical;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--violet); }
.form-hint { font-size: 0.76rem; color: var(--ink-faint); text-align: left; }

.contact-options { display: flex; flex-direction: column; gap: 1rem; }
.contact-option {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 1.3rem 1.4rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
  flex: 1;
}
.contact-option:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.contact-option .icon { width: 22px; height: 22px; color: var(--violet-light); margin-bottom: 0.3rem; }
.contact-option-wa { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.3); }
.contact-option-wa .icon { color: var(--whatsapp); }
.contact-option-label { font-size: 0.72rem; font-weight: 600; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.07em; }
.contact-option-value { font-size: 0.92rem; font-weight: 600; color: var(--white); }

.btn-whatsapp-lg {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: var(--gradient);
  color: var(--white); border: none; cursor: pointer;
  font-weight: 700; font-size: 0.98rem;
  font-family: var(--font-body);
  padding: 1rem 2rem; border-radius: 999px;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-whatsapp-lg:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-whatsapp-lg .icon { width: 20px; height: 20px; }

/* ── FOOTER ── */
footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 3.5rem 5% 0; }
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { margin-top: 0.9rem; font-size: 0.87rem; color: var(--ink-faint); max-width: 300px; line-height: 1.6; }
.footer-logo-link { pointer-events: none; }
.footer-links { display: flex; gap: 3.5rem; }
.footer-links h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); margin-bottom: 1rem; }
.footer-links a { display: block; font-size: 0.88rem; color: var(--ink-dim); text-decoration: none; margin-bottom: 0.7rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.6rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.footer-bottom strong { color: var(--ink-dim); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-card { transition: none !important; }
  .mock-dot { animation: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-grid::before { display: none; }
  .project-card { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-highlights { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-options { flex-direction: row; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(8,8,12,0.98);
    flex-direction: column; align-items: flex-start;
    gap: 0; padding: 0.5rem 5% 1rem;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; padding: 0.8rem 0; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; padding-top: 1rem; }
  .nav-cta { display: inline-block; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-highlights { grid-template-columns: 1fr 1fr; }
  .project-info { padding: 2rem 1.5rem; }
  .project-visual { padding: 1.8rem 1.2rem; }
  .team-card, .team-bio { padding: 2rem 1.4rem; }
  .contact-options { flex-direction: column; }
  .hero { padding: 100px 5% 60px; }
  .hero-proof { gap: 1rem 1.4rem; }
  .footer-links { gap: 2rem; flex-wrap: wrap; }
}
