/* ============================================================
   CAPITAL MANIFEST — style.css
   Brand: #0A0A0A bg | #00E676 accent | #1E1E1E cards | #F5F5F5 text
   ============================================================ */

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

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

body {
  background-color: #0A0A0A;
  color: #F5F5F5;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: #00E676; }
.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #00E676;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #F5F5F5;
  margin-bottom: 48px;
  line-height: 1.05;
}

/* ─── FADE-UP ANIMATION ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn-primary {
  background: #00E676;
  color: #0A0A0A;
}
.btn-primary:hover {
  background: #00FF84;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,230,118,0.35);
}
.btn-secondary {
  background: transparent;
  color: #F5F5F5;
  border: 1.5px solid rgba(245,245,245,0.35);
}
.btn-secondary:hover {
  border-color: #00E676;
  color: #00E676;
  transform: translateY(-2px);
}
.btn-large {
  padding: 18px 48px;
  font-size: 1rem;
}
.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.4); }
  50% { box-shadow: 0 0 0 16px rgba(0,230,118,0); }
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,230,118,0.12);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-cm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: #00E676;
  color: #0A0A0A;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: 4px;
  letter-spacing: 0;
}
.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #F5F5F5;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245,245,245,0.7);
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.nav-link:hover, .nav-link.active { color: #00E676; }
.nav-link.nav-cta {
  background: #00E676;
  color: #0A0A0A;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.nav-link.nav-cta:hover {
  background: #00FF84;
  color: #0A0A0A;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #F5F5F5;
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,230,118,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,230,118,0.07) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.45);
  margin-bottom: 20px;
}
.hero-heading {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 24px;
  color: #F5F5F5;
}
.hero-heading .accent {
  display: block;
  color: #00E676;
  text-shadow: 0 0 60px rgba(0,230,118,0.3);
}
.hero-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00E676;
  margin-bottom: 24px;
}
.glow-text { text-shadow: 0 0 20px rgba(0,230,118,0.5); animation: glowPulse 3s ease-in-out infinite; }
@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(0,230,118,0.4); }
  50% { text-shadow: 0 0 40px rgba(0,230,118,0.7), 0 0 80px rgba(0,230,118,0.25); }
}
.hero-body {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(245,245,245,0.65);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-indicator span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(245,245,245,0.3);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(0,230,118,0.6), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); }
}

/* ─── PROBLEM STATEMENT ─────────────────────────────────────── */
.problem {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-heading-col .section-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.problem-p {
  font-size: 1.125rem;
  color: rgba(245,245,245,0.75);
  line-height: 1.8;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.problem-p:last-of-type { border-bottom: none; }
.problem-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  padding-top: 16px;
}

/* ─── SERVICES ──────────────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: #0D0D0D;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #1E1E1E;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #00E676;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  border-color: rgba(0,230,118,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,230,118,0.08);
}
.service-card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 48px; height: 48px;
  background: rgba(0,230,118,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #00E676;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card:hover .card-icon { background: rgba(0,230,118,0.2); }
.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #F5F5F5;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.card-desc {
  font-size: 0.875rem;
  color: rgba(245,245,245,0.55);
  line-height: 1.7;
}
/* Cursor spotlight effect */
.service-card .spotlight {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover .spotlight { opacity: 1; }

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.process {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.process-connector {
  flex-shrink: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, #00E676, rgba(0,230,118,0.2));
  margin-top: 60px;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -4px; top: -3px;
  width: 7px; height: 7px;
  background: rgba(0,230,118,0.4);
  border-radius: 50%;
}
.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(0,230,118,0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.05em;
}
.step-icon {
  width: 64px; height: 64px;
  border: 1.5px solid rgba(0,230,118,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #00E676;
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.process-step:hover .step-icon {
  background: rgba(0,230,118,0.1);
  border-color: #00E676;
  box-shadow: 0 0 24px rgba(0,230,118,0.25);
}
.step-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #F5F5F5;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.875rem;
  color: rgba(245,245,245,0.55);
  line-height: 1.75;
}

/* ─── RESULTS ───────────────────────────────────────────────── */
.results {
  padding: 120px 0;
  background: #0D0D0D;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 64px;
}
.stat-box {
  background: #1A1A1A;
  padding: 48px 32px;
  text-align: center;
  transition: background 0.3s;
}
.stat-box:hover { background: #1E1E1E; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #00E676;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(245,245,245,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #1E1E1E;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(0,230,118,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,230,118,0.07);
}
.quote-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  color: #00E676;
  line-height: 0.8;
  margin-bottom: 16px;
  opacity: 0.6;
}
.quote-text {
  font-size: 0.9rem;
  color: rgba(245,245,245,0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00E676, #00BCD4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0A0A0A;
  flex-shrink: 0;
}
.author-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #F5F5F5;
}
.author-title {
  font-size: 0.75rem;
  color: rgba(245,245,245,0.45);
  margin-top: 2px;
}

/* ─── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  padding: 140px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,230,118,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  margin: 16px 0 24px;
  line-height: 1.05;
}
.cta-body {
  font-size: 1.125rem;
  color: rgba(245,245,245,0.65);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-note {
  margin-top: 24px;
  font-size: 0.875rem;
  color: rgba(245,245,245,0.4);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-note i { color: #00E676; margin-right: 6px; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  color: #00E676;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(245,245,245,0.4);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(245,245,245,0.5);
  transition: all 0.2s;
}
.social-link:hover {
  border-color: #00E676;
  color: #00E676;
  background: rgba(0,230,118,0.06);
}
.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.35);
  margin-bottom: 20px;
}
.footer-list { display: flex; flex-direction: column; gap: 12px; }
.footer-list li a {
  font-size: 0.875rem;
  color: rgba(245,245,245,0.55);
  transition: color 0.2s;
}
.footer-list li a:hover { color: #00E676; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(245,245,245,0.55);
}
.contact-list li i { color: #00E676; font-size: 0.75rem; flex-shrink: 0; }
.contact-list li a { transition: color 0.2s; }
.contact-list li a:hover { color: #00E676; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.75rem;
  color: rgba(245,245,245,0.25);
}

/* ─── BACK TO TOP ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: #00E676;
  color: #0A0A0A;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s;
  z-index: 999;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: #00FF84; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .problem-inner { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.25rem; }
  .hamburger { display: flex; z-index: 1000; }

  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .problem-heading-col .section-heading { position: static; }

  .services-grid { grid-template-columns: 1fr; }

  .process-steps { flex-direction: column; gap: 48px; align-items: center; }
  .process-connector { width: 1px; height: 48px; background: linear-gradient(to bottom, #00E676, transparent); margin: 0; }
  .process-connector::after { display: none; }

  .stats-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .back-to-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; }
}
