/* =====================
   BASE RESET & TOKENS
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --dark: #0D0D0D;
  --dark-mid: #1A1A1A;
  --green: #BAFF00;
  --green-dim: rgba(186, 255, 0, 0.12);
  --text: #111111;
  --text-muted: #666666;
  --text-dim: #999999;
  --border: #E5E5E0;
  --border-dark: rgba(255,255,255,0.08);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  line-height: 1.1;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }

/* =====================
   TYPOGRAPHY
   ===================== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 3rem;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.logo-text { color: #FFFFFF; }
.logo-accent { color: var(--green); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: #FFFFFF;
  background: rgba(255,255,255,0.07);
}

/* =====================
   HERO
   ===================== */
.hero {
  background: var(--dark);
  color: #FFFFFF;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-bg-text {
  position: absolute;
  bottom: -4rem;
  left: -1rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(10rem, 22vw, 20rem);
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.hero-content {
  padding: 6rem 4rem 6rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--green);
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 2rem;
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--green);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  transition: background 0.15s;
}

.cta-primary:hover { background: #D4FF33; }

.cta-secondary {
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.15s, color 0.15s;
}

.cta-secondary:hover {
  border-color: rgba(255,255,255,0.35);
  color: #FFFFFF;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat-val {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--green);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.12);
}

/* Hero Graphic */
.hero-graphic {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.hg-block {
  position: absolute;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

.hg-1 {
  width: 280px;
  height: 360px;
  background: linear-gradient(145deg, rgba(186,255,0,0.08) 0%, transparent 60%);
  top: 15%;
  right: 15%;
}

.hg-2 {
  width: 180px;
  height: 240px;
  background: rgba(186,255,0,0.05);
  border-color: rgba(186,255,0,0.2);
  bottom: 20%;
  right: 8%;
}

.hg-3 {
  width: 100px;
  height: 130px;
  background: rgba(255,255,255,0.03);
  top: 30%;
  right: 50%;
}

.hg-accent {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  width: 4px;
  height: 120px;
  background: var(--green);
  border-radius: 2px;
  opacity: 0.7;
}

/* Hero Image */
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 13, 13, 0.82) 0%,
    rgba(13, 13, 13, 0.65) 45%,
    rgba(13, 13, 13, 0.30) 100%
  );
  z-index: 1;
}

/* =====================
   SERVICES
   ===================== */
.services {
  padding: 7rem 4rem;
  background: var(--surface);
}

.services .section-heading {
  max-width: 640px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
}

.svc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}

.svc-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

.svc-icon {
  width: 40px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.svc-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.svc-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================
   PROCESS
   ===================== */
.process {
  padding: 7rem 4rem;
  background: var(--dark);
  color: #FFFFFF;
}

.process .section-label { color: var(--green); }
.process .section-heading { color: #FFFFFF; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1280px;
  margin-top: 3rem;
}

.step {
  flex: 1;
  padding-right: 2rem;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.step-connector {
  width: 48px;
  height: 2px;
  background: rgba(186,255,0,0.3);
  margin-top: 1.5rem;
  flex-shrink: 0;
}

/* =====================
   TRUST
   ===================== */
.trust {
  padding: 7rem 4rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.trust-inner {
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.trust-left .section-heading {
  color: var(--dark);
}

.trust-left > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}

.trust-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.tb-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-aside {
  background: var(--dark);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3.5rem;
}

.aside-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.aside-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.aside-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =====================
   CLOSING
   ===================== */
.closing {
  background: var(--green);
  padding: 7rem 4rem;
}

.closing-inner {
  max-width: 1280px;
}

.closing h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--dark);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing > .closing-inner > p {
  font-size: 1rem;
  color: rgba(13,13,13,0.65);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.closing-asides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.ca-val {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(13,13,13,0.5);
  margin-bottom: 0.5rem;
}

.ca-desc {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
}

.closing-note {
  font-size: 0.8rem;
  color: rgba(13,13,13,0.45);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--dark-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 4rem 2rem;
}

.footer-inner { max-width: 1280px; }

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { font-size: 1.6rem; }
.footer-brand p {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.fc-head {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.fc {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.fc a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
  padding: 0.15rem 0;
}

.fc a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.fb-left {
  display: flex;
  gap: 2rem;
}

.fb-left span, .fb-right span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-graphic { display: none; }
  .hero-content { padding: 4rem 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-aside { margin-top: 0; }
  .process-steps { flex-direction: column; gap: 2rem; }
  .step-connector { display: none; }
  .closing-asides { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .services { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 3rem 1.5rem; }
  .hero-stats { gap: 1.25rem; }
  .process { padding: 5rem 1.5rem; }
  .trust { padding: 5rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .fb-left { flex-direction: column; gap: 0.5rem; }
}