:root {
  --red: #e31e24;
  --red-dark: #c41a1f;
  --red-soft: #ff6b6f;
  --ink: #171717;
  --muted: #6b7280;
  --soft: #f7f7f8;
  --line: #ececec;
  --night: #0d0000;
  --shadow: 0 22px 60px rgba(20, 0, 0, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
button, input, textarea { font: inherit; }
button { cursor: pointer; border: 0; background: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(960px, calc(100% - 32px)); }
.center { text-align: center; }

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .25s ease, box-shadow .25s ease, border .25s ease;
}
.site-nav.is-scrolled {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #fee2e2;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}
.nav-inner { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 48px; width: auto; }
.desktop-links { display: flex; align-items: center; gap: 30px; }
.desktop-links button, .site-nav .nav-cta + .menu-toggle, .desktop-links button { color: rgba(255,255,255,.9); font-weight: 700; font-size: 14px; }
.site-nav.is-scrolled .desktop-links button { color: #374151; }
.desktop-links button:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  border-radius: 8px;
  padding: 12px 24px;
  box-shadow: 0 12px 30px rgba(227,30,36,.25);
}
.nav-cta:hover { background: var(--red-dark); }
.menu-toggle { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 0 auto; }
.site-nav.is-scrolled .menu-toggle span { background: #111827; }
.mobile-menu { display: none; background: #fff; border-top: 1px solid #fee2e2; box-shadow: var(--shadow); padding: 14px 16px 18px; }
.mobile-menu button { display: block; width: 100%; text-align: left; padding: 13px 14px; border-radius: 8px; color: #374151; font-weight: 800; }
.mobile-menu button:hover { background: #fff1f2; color: var(--red); }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(227,30,36,.16), transparent 34%), linear-gradient(135deg, #1a0000, #0d0000 50%, #000);
  color: #fff;
  padding: 130px 0 70px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 58px; }
.eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow.dark {
  color: var(--red-soft);
  background: rgba(227,30,36,.2);
  border: 1px solid rgba(227,30,36,.3);
  border-radius: 999px;
  padding: 8px 14px;
}
.eyebrow.dark span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 8px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(54px, 7.7vw, 104px);
  line-height: .9;
  letter-spacing: 0;
  font-weight: 900;
  margin-bottom: 26px;
  text-shadow: 0 2px 4px rgba(0,0,0,.3), 0 0 20px rgba(255,255,255,.1);
}
h1 strong, h2 strong {
  display: inline;
  color: transparent;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  -webkit-background-clip: text;
  background-clip: text;
}
h1 strong { display: block; }
.lead { color: rgba(255,255,255,.82); font-size: clamp(18px, 2vw, 21px); font-weight: 700; margin-bottom: 16px; }
.muted { color: rgba(255,255,255,.62); font-size: 18px; margin-bottom: 38px; }
.primary, .final-cta button, .form-card button, .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  padding: 17px 32px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(227,30,36,.28);
}
.primary:hover, .form-card button:hover, .submit:hover { background: var(--red-dark); }
@keyframes pulse { 50% { box-shadow: 0 0 30px rgba(227,30,36,.6); } }
.pulse { animation: pulse 2s ease-in-out infinite; }
.hero-slider {
  position: relative;
  width: min(450px, 100%);
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  filter: drop-shadow(0 22px 50px rgba(0,0,0,.55));
}
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: var(--red);
  border-radius: 34px;
  filter: blur(90px);
  opacity: .18;
}
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(.97);
  transition: opacity .45s ease, transform .45s ease;
}
.slide.is-active { opacity: 1; transform: scale(1); }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 30px;
  backdrop-filter: blur(10px);
}
.slider-btn.prev { left: -50px; }
.slider-btn.next { right: -50px; }
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.45);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.section { position: relative; padding: 112px 0; overflow: hidden; }
.white { background: #fff; }
.soft { background: var(--soft); }
.pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: radial-gradient(circle at 1px 1px, var(--red) 1px, transparent 0);
  background-size: 40px 40px;
}
.section h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 22px;
}
.section-lead, .sub { color: var(--muted); font-size: 18px; line-height: 1.7; font-weight: 500; }
.cards, .pricing, .steps, .stats, .hooks { display: grid; gap: 24px; }
.three { grid-template-columns: repeat(3, 1fr); }
.four { grid-template-columns: repeat(4, 1fr); }
.card, .glass, .price-card, .discount-box, .form-card {
  border-radius: 18px;
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card { background: #fff; border: 2px solid #f1f1f1; }
.pattern .card { background: #f9fafb; }
.card:hover, .price-card:hover, .glass:hover { transform: translateY(-4px); box-shadow: 0 16px 45px rgba(227,30,36,.16); border-color: rgba(227,30,36,.28); }
.icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fff1f2;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 18px;
}
.icon i { font-size: 25px; line-height: 1; }
.card h3 { font-size: 20px; line-height: 1.25; font-weight: 900; }
.card b { display: block; color: var(--red); margin: 8px 0 12px; }
.card p { color: var(--muted); line-height: 1.55; font-size: 14px; }
.signage {
  background: linear-gradient(145deg, #e31e24 0%, #c41a1f 50%, #a8161a 100%) !important;
  border: 3px solid #ff4a4f !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), inset 0 -2px 4px rgba(0,0,0,.2), 0 18px 50px rgba(227,30,36,.28);
  color: #fff;
}
.quote { display: inline-block; margin-top: 44px; padding: 24px 42px; border-radius: 18px; font-size: 20px; font-weight: 900; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.benefits { list-style: none; padding: 0; margin: 34px 0; display: grid; gap: 20px; }
.benefits li { display: flex; align-items: center; gap: 14px; font-size: 19px; font-weight: 900; }
.benefits span { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; background: var(--red); color: #fff; border-radius: 12px; box-shadow: 0 12px 24px rgba(227,30,36,.22); }
.dark-pill { display: inline-block; background: #111827; color: #fff; padding: 22px 28px; border-radius: 16px; font-size: 20px; font-weight: 800; box-shadow: var(--shadow); }
.dark-pill b { color: var(--red-soft); }
.image-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.image-stack img { border-radius: 22px; box-shadow: var(--shadow); object-fit: cover; }
.image-pair img { aspect-ratio: 3 / 4; }
.wide-img { width: 100%; height: 300px; margin-top: 24px; }
.image-badge { position: absolute; right: 5%; bottom: 9%; background: #fff; border: 1px solid #fee2e2; border-radius: 16px; padding: 16px 20px; font-weight: 900; box-shadow: var(--shadow); }
.steps { grid-template-columns: repeat(5, 1fr); margin-top: 55px; }
.steps article { position: relative; }
.step-icon { width: 76px; height: 76px; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center; color: var(--red); background: rgba(227,30,36,.1); border-radius: 20px; font-size: 28px; font-weight: 900; transition: background .25s ease, color .25s ease; }
.steps article:hover .step-icon { background: var(--red); color: #fff; }
.step-icon i { font-size: 30px; line-height: 1; }
.steps span { color: var(--red); background: #f3f4f6; border-radius: 999px; padding: 6px 11px; font-size: 12px; font-weight: 900; }
.steps h3 { font-size: 16px; margin: 14px 0 8px; }
.steps p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.results {
  background: linear-gradient(135deg, rgba(26,0,0,.96), rgba(42,5,5,.92), rgba(13,0,0,.96)), url("assets/results-bg.jpg") center/cover;
  color: #fff;
}
.dark-red { color: var(--red-soft); }
.glass { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); backdrop-filter: blur(8px); }
.glass p { color: rgba(255,255,255,.58); }
.stats { grid-template-columns: repeat(4, 1fr); margin-top: 55px; }
.stats b { color: var(--red-soft); display: block; font-size: 34px; font-weight: 900; }
.stats span { color: rgba(255,255,255,.48); font-size: 13px; }
.pricing { grid-template-columns: repeat(3, 1fr); margin-top: 48px; align-items: stretch; }
.price-card { background: #fff; border: 2px solid #f1f1f1; text-align: left; box-shadow: 0 12px 30px rgba(0,0,0,.04); position: relative; }
.price-card.highlighted { transform: scale(1.04); }
.ribbon { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: #fff; color: var(--red); border-radius: 999px; padding: 8px 15px; font-size: 12px; font-weight: 900; box-shadow: var(--shadow); white-space: nowrap; }
.price-card h3 { font-size: 22px; font-weight: 900; margin-bottom: 4px; }
.panels .price-card h3 { text-align: center; font-size: 64px; }
.price-card p { color: var(--muted); font-weight: 600; }
.highlighted p, .highlighted small, .highlighted li { color: rgba(255,255,255,.78); }
.price { display: flex; align-items: baseline; gap: 4px; font-size: 56px; font-weight: 900; margin: 28px 0; }
.price span, .price small { font-size: 14px; color: #9ca3af; font-weight: 700; }
.highlighted .price span, .highlighted .price small { color: rgba(255,255,255,.72); }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 13px; }
.price-card li::before { content: "✓"; color: var(--red); margin-right: 10px; font-weight: 900; }
.highlighted li::before { color: #fff; }
.price-card button { width: 100%; background: var(--red); color: #fff; font-weight: 900; border-radius: 12px; padding: 14px; }
.highlighted button { background: #fff; color: var(--red); }
.discount-box { background: #fff; border: 1px solid #eee; width: min(680px, 100%); margin: 52px auto 0; box-shadow: 0 8px 20px rgba(0,0,0,.04); }
.discount-box h3 { margin-bottom: 8px; }
.discount-box p { color: var(--red); font-weight: 900; margin: 0; }
.panels small { display: block; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; text-align: left; margin-top: 50px; }
.compare-grid h3 { color: #9ca3af; font-size: 14px; text-transform: uppercase; letter-spacing: .14em; }
.compare-grid h3.red { color: var(--red); }
.compare-row { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid #eee; border-radius: 14px; padding: 18px; margin-bottom: 14px; }
.compare-row span { width: 48px; height: 48px; background: #f3f4f6; color: #9ca3af; border-radius: 12px; display: grid; place-items: center; font-weight: 900; }
.compare-row b { flex: 1; }
.compare-row em { background: #f3f4f6; color: #6b7280; border-radius: 999px; padding: 8px 12px; font-style: normal; font-size: 12px; font-weight: 900; }
.compare-panel { border-radius: 18px; padding: 32px; }
.compare-panel img { height: 42px; width: auto; margin-bottom: 26px; }
.compare-panel p { font-weight: 800; margin: 16px 0; }
.compare-panel small { display: block; border-top: 1px solid rgba(255,255,255,.18); padding-top: 18px; color: rgba(255,255,255,.7); }
.final-cta { position: relative; padding: 115px 0; background: linear-gradient(145deg, #e31e24, #c41a1f 52%, #a8161a); color: #fff; overflow: hidden; }
.final-cta h2 { font-size: clamp(42px, 6vw, 68px); line-height: 1; margin-bottom: 18px; font-weight: 900; text-shadow: 0 2px 4px rgba(0,0,0,.25); }
.final-cta p { color: rgba(255,255,255,.82); font-size: 20px; }
.cta-row { display: flex; justify-content: center; gap: 16px; margin: 38px 0; flex-wrap: wrap; }
.final-cta button { background: #fff; color: var(--red); box-shadow: 0 20px 45px rgba(0,0,0,.18); }
.final-cta a { border: 2px solid rgba(255,255,255,.32); border-radius: 12px; padding: 16px 36px; font-weight: 900; }
.mini-pill { display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 11px 22px; font-weight: 900; }
.hooks { grid-template-columns: repeat(4, 1fr); margin-top: 52px; }
.hooks span { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 14px; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 800; }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; color: var(--muted); font-weight: 700; }
.form-card { background: #fff; border: 1px solid #eee; box-shadow: var(--shadow); text-align: left; }
label, legend { display: grid; gap: 8px; color: #6b7280; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .03em; }
input, textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 12px;
  padding: 14px 15px;
  color: #111827;
  outline: none;
}
input:focus, textarea:focus { border-color: rgba(227,30,36,.45); box-shadow: 0 0 0 4px rgba(227,30,36,.1); }
.form-card form, .form-card { display: grid; gap: 16px; }
.form-card button { width: 100%; margin-top: 6px; }
footer { background: var(--night); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 42px; padding: 70px 0; }
.footer-logo { height: 42px; width: auto; margin-bottom: 18px; }
footer p, footer button { color: rgba(255,255,255,.42); line-height: 1.65; font-size: 14px; }
footer button { display: block; padding: 0; margin: 0 0 12px; }
footer button:hover { color: var(--red-soft); }
footer h3 { font-size: 14px; margin-bottom: 18px; }
.jebo { width: 220px; border-radius: 10px; border: 1px solid rgba(255,255,255,.1); margin-top: 22px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); text-align: center; color: rgba(255,255,255,.32); font-size: 12px; padding: 24px; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 18px; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.62); backdrop-filter: blur(6px); }
.modal-panel { position: relative; width: min(720px, 100%); max-height: 90vh; overflow: auto; background: #fff; border-radius: 20px; box-shadow: 0 28px 90px rgba(0,0,0,.34); }
.modal-head { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; background: #fff; border-bottom: 1px solid #f3f4f6; }
.modal-head h2 { margin: 0; font-size: 22px; font-weight: 900; }
.modal-head button { width: 36px; height: 36px; border-radius: 50%; background: #f3f4f6; font-size: 26px; line-height: 1; }
.modal form { padding: 24px; display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
fieldset { border: 0; padding: 0; margin: 0; }
.radio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.radio-grid label, .inline-radios label {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  color: #374151;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}
.radio-grid input, .inline-radios input { width: auto; }
.inline-radios { display: flex; flex-wrap: wrap; gap: 10px; }
.submit { width: 100%; border: 0; }
.notice { padding: 14px 16px; border-radius: 12px; font-size: 14px; font-weight: 800; }
.notice.success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.notice.error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.modal-success { padding: 58px 24px 64px; text-align: center; }
.modal-success div { width: 64px; height: 64px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: #dcfce7; color: #16a34a; font-size: 34px; font-weight: 900; }
.modal-success h3 { margin-bottom: 8px; font-size: 26px; font-weight: 900; }
.modal-success p { color: var(--muted); margin: 0; }

@media (max-width: 980px) {
  .desktop-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu.is-open { display: block; }
  .hero-grid, .split, .compare-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-slider { width: min(360px, 85vw); }
  .slider-btn { display: none; }
  .three, .four, .pricing, .steps, .stats, .hooks { grid-template-columns: repeat(2, 1fr); }
  .price-card.highlighted { transform: none; }
}

@media (max-width: 640px) {
  .nav-inner { height: 66px; }
  .brand img { height: 38px; }
  .hero { padding-top: 105px; }
  .section { padding: 78px 0; }
  .three, .four, .pricing, .steps, .stats, .hooks, .form-grid, .radio-grid { grid-template-columns: 1fr; }
  .cards, .pricing { gap: 18px; }
  .card, .glass, .price-card, .discount-box, .form-card { padding: 24px; }
  .quote { padding: 20px 22px; font-size: 17px; }
  .image-badge { display: none; }
  .modal { padding: 0; align-items: stretch; }
  .modal-panel { border-radius: 0; max-height: 100vh; }
}
