:root {
  --red: #E8000D;
  --red-dark: #b0000a;
  --red-light: #ff2233;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --light-gray: #e8e8e8;
  --mid-gray: #999;
  --dark: #111111;
  --text: #222222;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  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: 22px 60px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,0,13,0.15);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 3px;
}

.nav-logo span { color: var(--red); }

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

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.btn-red {
  background: var(--red);
  color: white;
  border: none;
  padding: 12px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-red::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-light);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.btn-red:hover::before { transform: translateX(0); }
.btn-red:hover { transform: translateY(-2px); }
.btn-red span { position: relative; z-index: 1; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--dark);
}

/* FOOTER */
footer {
  background: #0a0a0a;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

footer .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: white;
  letter-spacing: 3px;
}

footer .logo span { color: var(--red); }

footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* LEARN MORE PAGE CONTENT */
.learn-hero {
  background: #0a0a0a;
  padding: 140px 60px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.learn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,0,13,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,0,13,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.learn-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  color: white;
  letter-spacing: 3px;
  position: relative;
  margin-bottom: 20px;
}

.learn-hero h1 span { color: var(--red); }

.learn-hero p {
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  font-size: 1.05rem;
}

.learn-steps {
  padding: 100px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid var(--light-gray);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
}

.step-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--dark);
}

.step-content p {
  color: #666;
  line-height: 1.8;
  max-width: 600px;
  font-size: 0.95rem;
}

.pricing-section {
  background: #0a0a0a;
  padding: 100px 60px;
  text-align: center;
}

.pricing-section .section-title { color: white; margin-bottom: 16px; }

.pricing-section > p {
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.pricing-card {
  background: #161616;
  border: 1px solid rgba(232,0,13,0.2);
  padding: 60px;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

.pricing-percent {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  color: var(--red);
  line-height: 1;
}

.pricing-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.pricing-card p {
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li i { color: var(--red); font-size: 0.8rem; }

@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  section { padding: 70px 24px; }
  .step { grid-template-columns: 1fr; gap: 16px; }
  .learn-hero { padding: 120px 24px 80px; }
  .learn-steps { padding: 60px 24px; }
  .pricing-section { padding: 80px 24px; }
}
