*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --red: #d11c1c; --dark: #0a0a0a; --dark2: #151515; --white: #fff; --gray: #999; }
html { scroll-behavior: smooth; }
body { font-family: "Inter Tight", sans-serif; background: var(--dark); color: var(--white); }

/* NAV */
.lp-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(10,10,10,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid #1a1a1a;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 70px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { height: 42px; width: auto; }
.nav-brand span { font-size: 20px; color: #fff; letter-spacing: -0.5px; }
.nav-back { display: flex; align-items: center; gap: 8px; color: var(--gray); text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.3s; }
.nav-back:hover { color: var(--red); }
.nav-cta { background: var(--red); color: #fff; padding: 10px 22px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 13px; transition: background 0.3s; }
.nav-cta:hover { background: #b01515; }

/* HERO */
.lp-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 70px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
}
.lp-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(209,28,28,0.12), transparent);
}
.lp-hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; padding: 0 20px; }
.lp-badge {
  display: inline-block; background: rgba(209,28,28,0.15); border: 1px solid rgba(209,28,28,0.4);
  color: var(--red); padding: 6px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px;
}
.lp-hero h1 { font-size: clamp(42px,7vw,80px); font-weight: 900; line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px; }
.lp-hero h1 em { color: var(--red); font-style: normal; }
.lp-hero p { font-size: clamp(16px,2vw,20px); color: #aaa; line-height: 1.6; max-width: 600px; margin: 0 auto 40px; }
.lp-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--red); color: #fff; padding: 16px 36px; border-radius: 50px; text-decoration: none; font-weight: 800; font-size: 15px; transition: all 0.3s; }
.btn-primary:hover { background: #b01515; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(209,28,28,0.4); }
.btn-outline { border: 1.5px solid #333; color: #fff; padding: 16px 36px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 15px; transition: all 0.3s; }
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* STATS */
.lp-stats { background: var(--dark2); border-top: 1px solid #1e1e1e; border-bottom: 1px solid #1e1e1e; padding: 50px 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; max-width: 900px; margin: 0 auto; text-align: center; }
.stat-num { font-size: 42px; font-weight: 900; color: var(--red); letter-spacing: -2px; }
.stat-label { font-size: 13px; color: var(--gray); margin-top: 5px; text-transform: uppercase; letter-spacing: 1px; }

/* SECTIONS */
.lp-section { padding: 100px 20px; }
.bg-dark { background: var(--dark); }
.bg-dark2 { background: #0f0f0f; }
.container { max-width: 1100px; margin: 0 auto; }
.section-badge { display: inline-block; color: var(--red); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.section-title { font-size: clamp(32px,4vw,52px); font-weight: 900; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
.section-title em { color: var(--red); font-style: normal; }
.section-sub { font-size: 17px; color: #888; line-height: 1.6; max-width: 580px; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.info-card { background: #151515; border: 1px solid #222; border-radius: 16px; padding: 30px; transition: all 0.4s; }
.info-card:hover { border-color: var(--red); transform: translateY(-5px); }
.info-card-icon { width: 50px; height: 50px; background: rgba(209,28,28,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; }
.info-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.info-card p { font-size: 14px; color: #888; line-height: 1.6; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 60px; }
.step { text-align: center; padding: 20px; }
.step-num { width: 56px; height: 56px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 900; margin: 0 auto 20px; }
.step h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 14px; color: #888; line-height: 1.5; }

/* BENEFITS */
.benefits-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 16px; font-size: 16px; line-height: 1.5; }
.benefit-list li::before { content: ""; flex-shrink: 0; width: 26px; height: 26px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E"); background-size: 16px; background-repeat: no-repeat; background-position: center; }
.benefit-visual { background: linear-gradient(135deg, #1a0505, #2a0808); border: 1px solid #2a1010; border-radius: 24px; padding: 50px; text-align: center; }
.benefit-visual .big-icon { font-size: 80px; margin-bottom: 20px; }
.benefit-visual h3 { font-size: 24px; font-weight: 900; margin-bottom: 10px; }
.benefit-visual p { font-size: 15px; color: #999; }

/* FAQ */
.faq-list { margin: 50px auto 0; display: flex; flex-direction: column; gap: 12px; max-width: 780px; text-align: left; }
.faq-item { background: #151515; border: 1px solid #222; border-radius: 12px; overflow: hidden; }
.faq-q { padding: 20px 24px; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
.faq-q:hover { color: var(--red); }
.faq-q .arrow { transition: transform 0.3s; font-size: 12px; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); padding: 0 24px; color: #888; font-size: 15px; line-height: 1.6; opacity: 0; }
.faq-item.open .faq-a { max-height: 500px; padding: 0 24px 20px; opacity: 1; }

/* CTA */
.cta-section { background: linear-gradient(135deg, #1a0000, var(--dark)); text-align: center; padding: 120px 20px; border-top: 1px solid #2a0808; }
.cta-section h2 { font-size: clamp(36px,5vw,62px); font-weight: 900; margin-bottom: 20px; letter-spacing: -1.5px; }
.cta-section h2 em { color: var(--red); font-style: normal; }
.cta-section p { font-size: 18px; color: #888; margin-bottom: 40px; }

/* FOOTER */
.lp-footer { background: var(--dark); border-top: 1px solid #1a1a1a; padding: 40px 20px; text-align: center; }
.lp-footer p { color: #555; font-size: 13px; margin-bottom: 8px; }
.lp-footer a { color: var(--red); text-decoration: none; }

@media(max-width:768px) {
  .lp-nav { padding: 0 20px; }
  .cards-grid, .steps { grid-template-columns: 1fr 1fr; }
  .benefits-split { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .cards-grid, .steps { grid-template-columns: 1fr; }
}
