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

:root {
  --green: #7ED957;
  --green-glow: rgba(126, 217, 87, 0.5);
  --green-bright: #9eff6e;
  --green-dark: #4CAF30;
  --black: #030303;
  --dark: #080808;
  --dark2: #0d0d0d;
  --card: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --gray: #666;
  --gray-light: #999;
  --white: #eee;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--green) var(--dark);
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  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)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

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

.green { color: var(--green); }

/* ===================== CURSOR GLOW ===================== */
.cursor-glow {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 217, 87, 0.06) 0%, rgba(126, 217, 87, 0.02) 30%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  background: rgba(3, 3, 3, 0.85);
  backdrop-filter: blur(30px) saturate(1.5);
  -webkit-backdrop-filter: blur(30px) saturate(1.5);
  padding: 14px 0;
  border-bottom: 1px solid rgba(126, 217, 87, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 1px;
  padding: 12px 28px;
  background: var(--green);
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 30px rgba(126, 217, 87, 0.2);
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(126, 217, 87, 0.4);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(126, 217, 87, 0.05) 0%, transparent 60%);
}

#heroCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--green);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeDown 1s ease 0.3s forwards;
}

.eyebrow-line {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green));
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -4px;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.glow-text {
  text-shadow:
    0 0 20px rgba(126, 217, 87, 0.6),
    0 0 60px rgba(126, 217, 87, 0.3),
    0 0 120px rgba(126, 217, 87, 0.15);
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green) 50%, var(--green-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.white-bold {
  background: linear-gradient(180deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: #666;
  margin-bottom: 36px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 700;
}

.hero-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  margin: 0 auto 36px;
  opacity: 0;
  animation: scaleX 0.8s ease 1.1s forwards;
}

.hero-tagline {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 56px;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: #444;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.8s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2.5s ease infinite;
}

/* ===================== CTA BUTTON ===================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 22px 52px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.4s forwards;
  box-shadow:
    0 0 30px rgba(126, 217, 87, 0.25),
    0 0 60px rgba(126, 217, 87, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.7s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 0 50px rgba(126, 217, 87, 0.4),
    0 0 100px rgba(126, 217, 87, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.cta-btn.full-width {
  width: 100%;
  justify-content: center;
  opacity: 1;
  animation: none;
}

.cta-arrow {
  transition: transform 0.3s;
}

.cta-btn:hover .cta-arrow {
  transform: translateX(6px);
}

/* ===================== MARQUEE ===================== */
.marquee-strip {
  padding: 18px 0;
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-bright), var(--green), var(--green-dark));
  background-size: 200% 100%;
  animation: gradientShift 4s linear infinite;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 4px;
  padding: 0 18px;
}

.marquee-track .dot {
  font-size: 0.4rem;
  opacity: 0.4;
  padding: 0 6px;
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 140px 0;
  position: relative;
}

.section-accent {
  background: var(--dark);
  position: relative;
}

.section-accent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(126, 217, 87, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 6px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--green);
  transform: translateY(-50%);
}

.section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: 72px;
}

/* ===================== SPLIT SECTION (PROBLEMA) ===================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.problem-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s;
}

.problem-item:hover {
  padding-left: 12px;
  border-color: rgba(126, 217, 87, 0.15);
}

.problem-item:last-child {
  border-bottom: none;
}

.problem-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.4;
  flex-shrink: 0;
  padding-top: 4px;
}

.problem-item p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gray-light);
}

/* ===================== BIG STATEMENT ===================== */
.big-statement {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.big-statement h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -3px;
}

.big-sub {
  font-size: 1.2rem;
  color: var(--gray);
  margin-top: 28px;
  line-height: 1.7;
}

/* ===================== SHOWCASE GRID ===================== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.showcase-card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 28px 32px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.showcase-card:hover {
  border-color: rgba(126, 217, 87, 0.2);
  transform: translateY(-8px);
  background: rgba(126, 217, 87, 0.03);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(126, 217, 87, 0.04);
}

.showcase-card:hover .card-glow {
  opacity: 1;
}

.showcase-card.featured {
  border-color: rgba(126, 217, 87, 0.12);
  background: linear-gradient(160deg, rgba(126, 217, 87, 0.04) 0%, var(--glass) 60%);
}

.showcase-card.featured::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(126, 217, 87, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--green);
  background: rgba(126, 217, 87, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
  border: 1px solid rgba(126, 217, 87, 0.15);
}

.card-sector {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #444;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.showcase-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.showcase-card p {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--green);
  opacity: 0.5;
  letter-spacing: 0.5px;
  font-style: italic;
}

.card-yours {
  border-style: dashed;
  border-color: rgba(126, 217, 87, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 280px;
  background: linear-gradient(160deg, rgba(126, 217, 87, 0.03) 0%, transparent 60%);
}

.card-yours h3 {
  font-size: 1.6rem;
}

.card-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 1px;
  padding: 14px 32px;
  border: 1px solid rgba(126, 217, 87, 0.4);
  border-radius: 8px;
  transition: all 0.4s;
  margin-top: 8px;
}

.card-cta:hover {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 0 30px rgba(126, 217, 87, 0.25);
}

/* ===================== PROCESS TIMELINE ===================== */
.process-timeline {
  max-width: 700px;
  margin: 72px auto 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--green), rgba(126, 217, 87, 0.05));
}

.process-step {
  display: flex;
  gap: 36px;
  padding: 36px 0;
  position: relative;
}

.process-marker {
  flex-shrink: 0;
  width: 64px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.process-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  background: var(--green);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 25px var(--green-glow), 0 0 50px rgba(126, 217, 87, 0.15);
}

.process-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.process-content p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.65;
}

.process-content strong {
  color: var(--white);
}

/* ===================== DIFF GRID ===================== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 72px;
}

.diff-card {
  padding: 36px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 217, 87, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.diff-card:hover {
  border-color: rgba(126, 217, 87, 0.15);
  background: rgba(126, 217, 87, 0.02);
  transform: translateY(-4px);
}

.diff-card:hover::before {
  opacity: 1;
}

.diff-number {
  font-size: 2.2rem;
  margin-bottom: 20px;
  filter: saturate(1.3);
}

.diff-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.diff-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===================== RESULTADOS (ANTES/DEPOIS) ===================== */
.results-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--glass);
}

.result-card:hover {
  border-color: rgba(126, 217, 87, 0.2);
  transform: scale(1.01);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(126, 217, 87, 0.04);
}

.result-before,
.result-after {
  padding: 32px 28px;
}

.result-before {
  background: rgba(255, 50, 50, 0.03);
}

.result-after {
  background: rgba(126, 217, 87, 0.03);
}

.result-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 4px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.before-tag {
  color: #ff5555;
  background: rgba(255, 85, 85, 0.08);
  border: 1px solid rgba(255, 85, 85, 0.15);
}

.after-tag {
  color: var(--green);
  background: rgba(126, 217, 87, 0.08);
  border: 1px solid rgba(126, 217, 87, 0.15);
}

.result-before p,
.result-after p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray);
}

.result-after p {
  color: var(--white);
}

.result-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 1.8rem;
  color: var(--green);
  background: rgba(126, 217, 87, 0.02);
  font-weight: 700;
  text-shadow: 0 0 20px var(--green-glow);
}

.results-cta {
  text-align: center;
  margin-top: 56px;
}

.results-cta p {
  color: var(--gray);
  margin-bottom: 28px;
  font-size: 1rem;
}

.results-cta .cta-btn {
  opacity: 1;
  animation: none;
}

/* ===================== BASTIDORES ===================== */
.bts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 12px;
}

.bts-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 24px;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: var(--glass);
  transition: all 0.4s;
}

.bts-card:hover {
  border-color: rgba(126, 217, 87, 0.15);
  background: rgba(126, 217, 87, 0.02);
  transform: translateX(6px);
}

.bts-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(126, 217, 87, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(126, 217, 87, 0.08);
}

.bts-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bts-content p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ===================== QUEM SOU EU ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.about-role {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.about-text p {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.about-value > span {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-value strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-value p {
  font-size: 0.85rem !important;
  margin-bottom: 0 !important;
  color: var(--gray) !important;
}

.about-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-link {
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.about-link:hover {
  color: var(--green);
  transform: translateX(4px);
}

.about-visual {
  position: sticky;
  top: 120px;
}

.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-floating-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.about-floating-card:hover {
  border-color: rgba(126, 217, 87, 0.2);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(126, 217, 87, 0.06);
}

.about-floating-card.accent {
  background: linear-gradient(160deg, rgba(126, 217, 87, 0.06) 0%, var(--glass) 60%);
  border-color: rgba(126, 217, 87, 0.12);
}

.afc-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 30px var(--green-glow), 0 0 60px rgba(126, 217, 87, 0.1);
}

.afc-label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}

.afc-sublabel {
  display: block;
  font-size: 0.78rem;
  color: #444;
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0;
}

/* ===================== URGENCY ===================== */
.section-urgency {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(126, 217, 87, 0.04) 0%, transparent 60%),
    var(--dark);
  border-top: 1px solid rgba(126, 217, 87, 0.06);
  border-bottom: 1px solid rgba(126, 217, 87, 0.06);
}

.urgency-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.urgency-content h2 {
  margin-bottom: 28px;
}

.urgency-content p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.urgency-big {
  font-size: 1.4rem !important;
  color: var(--white) !important;
  margin-bottom: 44px !important;
}

.urgency-content .cta-btn {
  opacity: 1;
  animation: none;
}

/* ===================== FORM ===================== */
.section-form {
  padding: 140px 0;
  background:
    radial-gradient(ellipse 40% 40% at 70% 50%, rgba(126, 217, 87, 0.03) 0%, transparent 60%),
    var(--dark);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-left h2 {
  margin-bottom: 20px;
}

.form-left p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
}

.form-trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.trust-item {
  font-size: 0.85rem;
  color: var(--gray-light);
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.4s;
  outline: none;
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(126, 217, 87, 0.4);
  box-shadow: 0 0 30px rgba(126, 217, 87, 0.06);
  background: rgba(126, 217, 87, 0.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #333;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===================== FOOTER ===================== */
.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--black);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.footer-tagline {
  font-size: 0.78rem;
  color: #333;
  margin-top: 6px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  color: #333;
  transition: all 0.3s;
}

.footer-social a:hover {
  color: var(--green);
  filter: drop-shadow(0 0 10px rgba(126, 217, 87, 0.3));
}

.footer-copy {
  font-size: 0.72rem;
  color: #222;
}

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== KEYFRAMES ===================== */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(50px) scale(0.97); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

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

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleX {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.4); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .result-card {
    grid-template-columns: 1fr;
  }

  .result-arrow {
    padding: 10px 0;
    font-size: 1.4rem;
    transform: rotate(90deg);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    position: static;
  }

  .about-card-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

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

@media (max-width: 600px) {
  .container { padding: 0 20px; }

  .hero {
    padding: 100px 20px 60px;
    min-height: 100svh;
  }

  .hero h1 {
    font-size: 3rem;
    letter-spacing: -2px;
  }

  .section { padding: 80px 0; }

  .hero-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 3px;
  }

  .eyebrow-line { width: 20px; }

  .cta-btn {
    padding: 18px 36px;
    font-size: 0.82rem;
  }

  .marquee-track span {
    font-size: 0.65rem;
    padding: 0 10px;
    letter-spacing: 3px;
  }

  .form-trust-items { grid-template-columns: 1fr; }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .process-timeline::before { left: 20px; }
  .process-marker { width: 40px; }
  .process-num { width: 34px; height: 34px; font-size: 0.85rem; }

  .hero-scroll { display: none; }
  .cursor-glow { display: none; }
  .nav-links { display: none; }

  .about-card-stack { grid-template-columns: 1fr; }

  .section h2 { font-size: 2rem; letter-spacing: -1px; }

  .big-statement h2 { font-size: 2.2rem; letter-spacing: -1px; }
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--green), var(--green-dark));
  border-radius: 2px;
}
