/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --green:       #22A845;
  --green-light: #2CC954;
  --green-dim:   rgba(34, 168, 69, 0.12);
  --green-glow:  rgba(34, 168, 69, 0.35);

  --black:  #080808;
  --dark:   #0F0F0F;
  --card:   #131313;
  --border: #1E1E1E;
  --border2: #2A2A2A;

  --white:  #F0F0EB;
  --gray:   #777777;
  --muted:  #888888;

  --purple: #7B3CAF;
  --blue:   #3D4BB0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --nav-h: 72px;
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── SKIP LINK ──────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  background: var(--green);
  color: #000;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  z-index: 99999;
  transition: top 0.2s;
}
.skip-link:focus-visible { top: 1rem; }

/* ─── FOCUS VISIBLE ──────────────────────────────────── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 0;
}

/* ─── LAYOUT ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: italic;
  color: var(--green);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(34, 168, 69, 0.3);
  border-radius: 2px;
}
.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-head .section-desc { margin: 0 auto; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-green {
  background: var(--green);
  color: #000;
}
.btn-green:hover { background: var(--green-light); }

.btn-outline {
  border: 1px solid var(--border2);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

.btn-full { width: 100%; justify-content: center; }

.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ─── NAV ────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
#nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(8, 8, 8, 0.96);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-img {
  height: 36px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.nav-kc {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--green);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links li:last-child a,
.nav-links li:last-child a:hover {
  background: var(--green);
  color: #000;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--transition);
}
.nav-links li:last-child a:hover { background: var(--green-light); }
.nav-links li:last-child a::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  gap: 0.25rem;
  background: rgba(8,8,8,0.98);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 1rem 0;
  min-height: 44px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; color: var(--green); }
.nav-mobile a:hover { color: var(--white); }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  padding-top: var(--nav-h);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 168, 69, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 168, 69, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
}

/* Radial vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 60% 50%, transparent 40%, rgba(8,8,8,0.6) 100%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--green-glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.75rem;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--d, 0ms) forwards;
}
.hero-accent { color: var(--green); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--d, 400ms) forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--d, 550ms) forwards;
}

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

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-glow {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(34,168,69,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-cube {
  width: clamp(180px, 36vw, 440px);
  height: auto;
  position: relative;
  z-index: 1;
  animation: floatCube 6s ease-in-out infinite, fadeIn 1s 0.3s both;
  filter: drop-shadow(0 0 50px rgba(34, 168, 69, 0.3));
}
@keyframes floatCube {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(1deg); }
  66% { transform: translateY(-6px) rotate(-0.5deg); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--green));
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── SERVICES ───────────────────────────────────────── */
.services {
  padding: 8rem 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.scard {
  background: var(--card);
  padding: 2.5rem;
  position: relative;
  transition: background var(--transition);
  animation-delay: calc(var(--ri, 0) * 100ms);
}
.scard::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--green);
  transition: height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.scard:hover::before { height: 100%; }
.scard:hover { background: #181818; }

.scard--featured {
  background: #111811;
}
.scard--featured::before { height: 100%; background: var(--green); transition: none; }

.scard-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(34,168,69,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.scard-icon {
  color: var(--green);
  margin-bottom: 1.25rem;
}
.scard-icon svg {
  width: 40px; height: 40px;
}
.scard h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.scard p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.scard-list {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.scard-list li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.scard-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.75rem;
  top: 1px;
}

/* ─── ABOUT ──────────────────────────────────────────── */
.about {
  padding: 8rem 0;
  background: var(--black);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.about-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 320px;
}
.about-glow {
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0,255,140,0.18) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
}
.about-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 32%;
  position: relative;
  z-index: 1;
  border: 2px solid var(--green);
  box-shadow: 0 0 0 6px rgba(0,255,140,0.08), 0 20px 60px rgba(0,0,0,0.55);
  filter: saturate(1.05) contrast(1.02);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.about-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 0 0 8px rgba(0,255,140,0.12), 0 24px 70px rgba(0,0,0,0.6);
}
.about-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: calc(0.85rem - 1px) calc(2rem - 1px);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.65;
  white-space: nowrap;
  transition: var(--transition);
}
.social-link svg {
  width: 16px;
  height: 16px;
}
.social-link:hover {
  color: var(--green);
  border-color: var(--green);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}
.stat {
  background: var(--card);
  padding: 1.5rem 1rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-content p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.about-content .about-lead {
  font-size: 1.1rem;
  color: #aaa;
}
.about-content > .btn { margin-top: 1rem; }

/* ─── CLIENTS ────────────────────────────────────────── */
.clients {
  padding: 8rem 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.clients-grid .client-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 0.75rem);
  margin: 0 auto;
}
.client-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
  cursor: default;
}
.client-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}
.client-icon {
  width: 84px; height: 60px;
  background: var(--green-dim);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  padding: 0.5rem;
  overflow: hidden;
}
.client-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.client-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.client-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.client-type {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.client-arrow {
  color: var(--green);
  font-size: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-8px);
}
.client-card:hover .client-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─── CONTACT ────────────────────────────────────────── */
.contact {
  padding: 8rem 0;
  background: var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: stretch;
}
.contact-info {
  display: flex;
  flex-direction: column;
}
.contact-info .contact-details {
  margin-top: auto;
}
.contact-info p {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.75;
  flex-grow: 1;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color var(--transition);
}
.contact-item:hover { border-color: var(--green); }
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--green-dim);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.contact-item-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.04em;
}
.req { color: var(--green); }
input, textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
input::placeholder, textarea::placeholder { color: var(--gray); }
input:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 168, 69, 0.12);
}
.form-note {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--gray);
  text-align: center;
}
.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(34, 168, 69, 0.1);
  border: 1px solid rgba(34, 168, 69, 0.3);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-success.visible { display: flex; }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo { height: 32px; width: auto; }
.footer-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--green);
  text-transform: uppercase;
}
.footer-nav {
  display: flex;
  gap: 2rem;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
  padding: 0.5rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-nav a:hover { color: var(--white); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: right;
  justify-self: end;
}
.footer-contact a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--green); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
  transition-delay: calc(var(--ri, 0) * 80ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { flex-direction: column; gap: 2rem; }
  .about-content { text-align: center; }
  .about-content .btn { display: inline-flex; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 1.5rem 6rem;
  }
  .hero-visual { order: -1; }
  .hero-cube { width: 200px; }
  .hero-glow { width: 280px; height: 280px; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }

  .clients-grid { grid-template-columns: 1fr; }
  .clients-grid .client-card:last-child:nth-child(odd) { max-width: 100%; margin: 0; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; gap: 1.25rem; }
  .footer-contact { align-items: center; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .about-photo-wrap { width: 220px; height: 220px; }
  .about-photo { width: 200px; height: 200px; }
  .about-glow { width: 260px; height: 260px; }
  .container { padding: 0 1.25rem; }
  .hero-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ─── REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-cube { animation: none; }
  .about-photo { transition: none; }
  .hero-badge-dot { animation: none; }
  .scroll-line { animation: none; }
  .hero-title .line,
  .hero-badge,
  .hero-sub,
  .hero-actions { animation: none; opacity: 1; transform: none; }
  .reveal { transition: none; }
}
