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

:root {
  --bg:      #080e09;
  --accent:  #4ade80;
  --accent2: #16a34a;
  --white:   #f0ede8;
  --muted:   rgba(240,237,232,0.5);
  --dark-card: #0b150c;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: var(--font-body); overflow-x: hidden; }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: rgba(10,10,10,0.0);
  transition: background 0.4s ease;
}
.site-header.scrolled { background: rgba(10,10,10,0.95); }
.logo { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.2em; color: var(--white); }
.logo span { color: var(--accent); }
nav { display: flex; gap: 32px; align-items: center; }
nav a { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--muted); text-decoration: none; transition: color 0.2s; }
nav a:hover { color: var(--white); }
.nav-cta { color: var(--accent) !important; border: 1px solid rgba(74,222,128,0.4); padding: 8px 18px; border-radius: 2px; }
.nav-cta:hover { background: rgba(74,222,128,0.1) !important; }

/* HERO */
.hero { position: relative; height: 100vh; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.1) 50%, rgba(10,10,10,0.7) 100%); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; color: var(--muted);
}
.scroll-line { width: 1px; height: 40px; background: var(--accent); animation: lineGrow 1.5s ease infinite; }
@keyframes lineGrow { 0%,100% { transform: scaleY(0.3); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* PAGE CONTENT */
.page-content { background: var(--bg); }

/* INFO SECTIONS */
.info-section { padding: 100px 8vw; border-bottom: 1px solid rgba(255,255,255,0.06); }
.dark-section { background: var(--dark-card); }

.section-tag {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--accent); opacity: 0.8; margin-bottom: 48px; display: block;
}

.section-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.95; letter-spacing: 0.02em; color: var(--white);
}
.section-heading.centered { text-align: center; margin-bottom: 64px; }

.section-body { font-size: 1rem; line-height: 1.75; color: var(--muted); margin-bottom: 32px; }

.service-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.service-list li {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em;
  color: var(--muted); padding-left: 20px; position: relative;
}
.service-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

/* STATS */
.stats-section {
  display: flex; justify-content: space-around; align-items: center;
  padding: 80px 8vw;
  background: var(--accent);
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 1; color: var(--bg);
}
.stat-suf { font-family: var(--font-display); font-size: 2rem; color: var(--bg); opacity: 0.7; }
.stat-label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--bg); opacity: 0.7; margin-top: 8px; text-transform: uppercase; }

/* THREE COL */
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.col-item { padding: 32px; border: 1px solid rgba(74,222,128,0.15); }
.col-num { font-family: var(--font-display); font-size: 3rem; color: var(--accent); opacity: 0.3; margin-bottom: 16px; }
.col-item h3 { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.05em; color: var(--white); margin-bottom: 12px; }
.col-item p { font-size: 0.9rem; line-height: 1.7; color: var(--muted); }

/* PROCESS */
.process-steps {
  display: flex; align-items: center; gap: 24px;
  padding: 48px 0; flex-wrap: wrap;
}
.step { display: flex; flex-direction: column; gap: 8px; flex: 1; min-width: 120px; }
.step-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--accent); line-height: 1; }
.step-text { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; color: var(--muted); }
.step-arrow { font-size: 1.5rem; color: var(--accent); opacity: 0.4; flex-shrink: 0; }

/* CTA */
.cta-section { padding: 120px 8vw; text-align: center; }
.cta-heading { font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 8rem); line-height: 0.95; color: var(--white); margin: 24px 0 32px; }
.cta-body { font-size: 1rem; line-height: 1.75; color: var(--muted); max-width: 560px; margin: 0 auto 40px; }
.cta-button {
  display: inline-block; padding: 18px 48px;
  background: var(--accent); color: var(--bg);
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.15em;
  text-decoration: none; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.cta-button:hover { background: #86efac; transform: translateY(-2px); }
.cta-note { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; color: rgba(240,237,232,0.25); margin-top: 20px; }

/* ANIMATE CLASS */
.animate { opacity: 0; transform: translateY(40px); }
.animate.in { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease, transform 0.8s ease; }

/* MOBILE */
@media (max-width: 768px) {
  .site-header { padding: 16px 20px; }
  nav a:not(.nav-cta) { display: none; }
  .info-section { padding: 64px 6vw; }
  .section-split { grid-template-columns: 1fr; gap: 32px; }
  .three-col { grid-template-columns: 1fr; gap: 24px; }
  .stats-section { flex-direction: column; gap: 40px; padding: 60px 6vw; }
  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .cta-section { padding: 80px 6vw; }
  .cta-button { width: 100%; text-align: center; }
}

/* CONTACT FORM */
.cta-form { max-width: 560px; margin: 0 auto 24px; }
.cta-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.cta-field {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.cta-field::placeholder { color: var(--muted); }
.cta-field:focus { border-color: #4ade80; }
.cta-textarea { grid-column: 1 / -1; resize: vertical; min-height: 120px; }
.cta-form .cta-button { width: 100%; cursor: pointer; border: none; font-size: 0.85rem; letter-spacing: 0.15em; }
.cta-success {
  display: flex; align-items: center; justify-content: center;
  max-width: 560px; margin: 0 auto 24px;
  padding: 32px; border: 1px solid #4ade80;
  background: rgba(255,255,255,0.03);
  font-family: var(--font-mono); font-size: 0.9rem; letter-spacing: 0.1em; color: #4ade80;
}
@media (max-width: 768px) {
  .cta-form-grid { grid-template-columns: 1fr; }
}
