@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');

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

:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #f4f4f2;
  --border: #e0e0e0;
  --dark-border: #1a1a1a;
}

html { scroll-behavior: smooth; }
body { font-family: 'Figtree', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }

/* NAV */
nav {
  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(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-size: 11px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none; color: var(--black); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 11px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; color: var(--gray); transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }
.nav-cta { font-size: 10px !important; font-weight: 600 !important; color: var(--white) !important; background: var(--black); padding: 12px 24px; transition: opacity 0.2s !important; }
.nav-cta:hover { opacity: 0.75; color: var(--white) !important; }

/* FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid #111;
  padding: 60px 48px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo { font-size: 11px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: #fff; text-decoration: none; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: #444; line-height: 1.6; max-width: 240px; }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #444; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: #333; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #111; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 11px; color: #333; }

/* HERO */
.hero { min-height: 100vh; background: var(--black); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 48px 80px; position: relative; overflow: hidden; }
.hero-eyebrow { font-size: 11px; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray); margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
.hero-title { font-size: clamp(52px, 8vw, 110px); font-weight: 900; line-height: 0.95; color: var(--white); text-transform: uppercase; margin-bottom: 12px; opacity: 0; animation: fadeUp 0.8s 0.35s forwards; }
.hero-title em { font-style: italic; color: var(--gray); }
.hero-rule { width: 48px; height: 2px; background: var(--white); margin: 28px auto; opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
.hero-sub { font-size: clamp(16px, 2vw, 22px); font-weight: 400; color: #aaa; max-width: 560px; line-height: 1.6; margin-bottom: 48px; opacity: 0; animation: fadeUp 0.8s 0.6s forwards; }
.hero-cta { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; color: var(--black); background: var(--white); padding: 18px 40px; transition: opacity 0.2s; opacity: 0; animation: fadeUp 0.8s 0.75s forwards; }
.hero-cta:hover { opacity: 0.8; }
.hero-ghost { position: absolute; bottom: -40px; right: -20px; font-size: 380px; font-weight: 900; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; user-select: none; }

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

/* SECTIONS */
section { padding: 100px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 10px; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; }
.section-rule { width: 36px; height: 2px; background: var(--black); margin-bottom: 24px; }
.section-rule.white { background: var(--white); }
.section-title { font-size: clamp(32px, 5vw, 64px); font-weight: 900; line-height: 1.0; text-transform: uppercase; margin-bottom: 24px; }
.section-title em { font-style: italic; color: var(--gray); }
.section-body { font-size: 18px; font-weight: 400; line-height: 1.7; color: #444; max-width: 580px; }

/* STATS BAR */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); display: flex; align-items: stretch; }
.stat-item { flex: 1; padding: 48px 32px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(36px, 5vw, 56px); font-weight: 900; color: var(--black); line-height: 1; margin-bottom: 8px; }
.stat-number em { font-style: italic; color: var(--gray); }
.stat-label { font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }

/* SERVICES GRID */
.services-section { background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
.service-card { background: var(--black); padding: 44px 36px; border: 1px solid #1a1a1a; transition: border-color 0.2s; }
.service-card:hover { border-color: #333; }
.service-num { font-size: 10px; font-weight: 400; letter-spacing: 0.3em; color: #444; margin-bottom: 20px; }
.service-name { font-size: 20px; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 14px; line-height: 1.1; }
.service-desc { font-size: 14px; font-weight: 400; line-height: 1.65; color: #666; }

/* PROCESS */
.process-section { background: var(--light-gray); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 60px; }
.process-step { position: relative; padding-top: 28px; border-top: 2px solid var(--black); }
.step-num { font-size: 64px; font-weight: 900; color: rgba(0,0,0,0.06); line-height: 1; position: absolute; top: -10px; right: 0; }
.step-title { font-size: 18px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
.step-desc { font-size: 15px; font-weight: 400; line-height: 1.65; color: #555; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* PROBLEM POINTS */
.problem-points { display: flex; flex-direction: column; gap: 28px; }
.problem-point { display: flex; gap: 20px; align-items: flex-start; }
.point-num { font-size: 11px; font-weight: 900; letter-spacing: 0.1em; color: var(--gray); padding-top: 3px; min-width: 28px; }
.point-text { font-size: 16px; font-weight: 400; line-height: 1.6; color: #333; }
.point-text strong { font-weight: 700; color: var(--black); }

/* FOR CARDS */
.for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 60px; }
.for-card { background: var(--light-gray); padding: 48px 44px; }
.for-card-title { font-size: 22px; font-weight: 900; text-transform: uppercase; margin-bottom: 20px; }
.for-card-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.for-card-list li { font-size: 15px; font-weight: 400; line-height: 1.5; color: #444; padding-left: 18px; position: relative; }
.for-card-list li::before { content: '—'; position: absolute; left: 0; color: var(--gray); }

/* DARK LIST */
.dark-list { display: flex; flex-direction: column; }
.dark-list-item { display: flex; align-items: flex-start; gap: 20px; padding: 24px 0; border-bottom: 1px solid #1a1a1a; }
.dark-list-item:first-child { border-top: 1px solid #1a1a1a; }
.dark-dot { width: 6px; height: 6px; background: var(--white); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
.dark-text { font-size: 16px; font-weight: 400; line-height: 1.6; color: #888; }
.dark-text strong { color: var(--white); font-weight: 700; }

/* CTA SECTION */
.cta-section { background: var(--black); text-align: center; padding: 120px 48px; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-eyebrow { font-size: 10px; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; }
.cta-title { font-size: clamp(40px, 6vw, 80px); font-weight: 900; color: var(--white); text-transform: uppercase; line-height: 0.95; margin-bottom: 12px; }
.cta-title em { font-style: italic; color: #555; }
.cta-rule { width: 36px; height: 2px; background: var(--white); margin: 28px auto; }
.cta-body { font-size: 18px; font-weight: 400; color: #777; line-height: 1.6; margin-bottom: 48px; }
.cta-btn { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; color: var(--black); background: var(--white); padding: 20px 48px; transition: opacity 0.2s; }
.cta-btn:hover { opacity: 0.8; }
.cta-url { display: block; font-size: 11px; color: #444; letter-spacing: 0.08em; margin-top: 16px; }

/* BTN */
.btn-white { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; color: var(--black); background: var(--white); padding: 18px 40px; transition: opacity 0.2s; }
.btn-white:hover { opacity: 0.8; }
.btn-black { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; color: var(--white); background: var(--black); padding: 18px 40px; border: 1px solid var(--black); transition: opacity 0.2s; }
.btn-black:hover { opacity: 0.75; }
.btn-outline { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; color: var(--black); border: 1.5px solid var(--black); padding: 18px 40px; transition: all 0.2s; }
.btn-outline:hover { background: var(--black); color: var(--white); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 72px 24px; }
  .hero { padding: 100px 24px 60px; }
  .two-col, .for-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid, .process-steps { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-ghost { display: none; }
  footer { padding: 48px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
