* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(13, 13, 13, 0.94);
  border-bottom: 1px solid rgba(255, 51, 51, 0.25);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.logo {
  color: #ff3333;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: #ff3333;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255, 51, 51, 0.45);
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta {
  background: #ff0033;
  color: white;
  padding: 9px 14px;
  border-radius: 4px;
}

.hero {
  background: linear-gradient(to right, #ff0033, #330000);
  color: white;
  padding: 96px 0 86px;
  text-align: center;
}

.hero-compact {
  padding: 76px 0;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  color: white;
}

.hero-copy {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  background: #ff0033;
  color: white;
  padding: 12px 25px;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #ff0033;
  border-radius: 4px;
  font: inherit;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  background: #ff3333;
  color: white;
  border-color: #ff3333;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: white;
}

.btn-outline {
  background: transparent;
  border-color: white;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: white;
  color: #ff0033;
  border-color: white;
}

.services-btn {
  margin-top: 28px;
}

section {
  padding: 66px 0;
}

h1,
h2,
h3 {
  color: #ff3333;
}

h2 {
  margin-top: 0;
  font-size: 34px;
  line-height: 1.2;
}

h3 {
  margin-bottom: 10px;
}

.split,
.contact-panel,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-grid div,
.feature,
.step,
.proof-grid article {
  background: #1a1a1a;
  border: 1px solid rgba(255, 51, 51, 0.24);
  border-radius: 8px;
  padding: 20px;
}

.stat-grid strong {
  display: block;
  color: #ff3333;
  font-size: 28px;
}

.stat-grid span {
  display: block;
  font-size: 14px;
}

.cards,
.feature-grid,
.steps,
.detail-list,
.proof-grid,
.tag-grid {
  display: grid;
  gap: 20px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-grid,
.steps {
  grid-template-columns: repeat(4, 1fr);
}

.detail-list {
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tag-grid {
  grid-template-columns: repeat(4, 1fr);
}

.tag-grid span {
  background: #1a1a1a;
  border: 1px solid rgba(255, 51, 51, 0.24);
  border-radius: 8px;
  padding: 16px;
  color: #f2f2f2;
  font-weight: 700;
}

.card {
  background: #1a1a1a;
  padding: 22px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

.detail-item {
  background: #1a1a1a;
  border: 1px solid rgba(255, 51, 51, 0.24);
  border-radius: 8px;
  padding: 24px;
}

.detail-item ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.detail-item li {
  margin-bottom: 8px;
}

.legal-panel,
.scanner-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: #1a1a1a;
  border: 1px solid rgba(255, 51, 51, 0.24);
  border-radius: 8px;
  padding: 34px;
}

.legal-panel h2,
.scanner-band h2 {
  margin-bottom: 12px;
}

.legal-panel p,
.scanner-band p {
  margin-bottom: 0;
}

.policy-content {
  max-width: 900px;
}

.policy-content h2 {
  margin-top: 34px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content a {
  color: #ff3333;
}

.service-icon,
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 36px;
  padding: 0 10px;
  background: #330000;
  color: #ff3333;
  border: 1px solid rgba(255, 51, 51, 0.45);
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
}

.step span {
  width: 44px;
  padding: 0;
}

blockquote {
  margin: 0;
  font-style: italic;
  border-left: 5px solid #ff3333;
  padding: 4px 0 4px 18px;
  font-size: 20px;
}

cite {
  display: block;
  margin-top: 12px;
  color: #ff3333;
  font-style: normal;
  font-size: 15px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #1a1a1a;
  border: 1px solid rgba(255, 51, 51, 0.24);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq-list summary {
  color: #ff3333;
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-bottom: 0;
}

.contact-panel {
  background: #1a1a1a;
  border: 1px solid rgba(255, 51, 51, 0.24);
  border-radius: 8px;
  padding: 34px;
}

.contact-actions {
  justify-content: flex-end;
}

.contact-form {
  display: grid;
  gap: 12px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 51, 51, 0.24);
  border-radius: 8px;
  padding: 24px;
}

.contact-form label {
  color: #ff3333;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #0d0d0d;
  color: #f2f2f2;
  border: 1px solid rgba(255, 51, 51, 0.35);
  border-radius: 4px;
  padding: 12px;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #ff0033;
  outline-offset: 2px;
}

footer {
  background: #111;
  padding: 38px 0 20px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
}

.footer-grid strong {
  display: block;
  color: #ff3333;
  margin-bottom: 10px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 6px 0;
  color: #f2f2f2;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #ff3333;
}

.copyright {
  margin: 24px 0 0;
  text-align: center;
  color: #f2f2f2;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #25d366;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  text-decoration: none;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: white;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #1ebe5d;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .split,
  .contact-panel,
  .contact-layout {
    display: block;
  }

  .nav-wrap {
    position: relative;
    min-height: 64px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
    background: #111;
    border: 1px solid rgba(255, 51, 51, 0.24);
    border-top: 0;
    padding: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
  }

  .nav-links.is-open {
    display: grid;
    gap: 8px;
  }

  .nav-links a {
    display: block;
    width: 100%;
    margin: 0;
    padding: 12px;
    border-radius: 4px;
    background: #1a1a1a;
  }

  .nav-links a:hover {
    background: #330000;
    color: white;
  }

  .menu-toggle {
    display: flex;
  }

  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .steps,
  .detail-list,
  .proof-grid,
  .tag-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-panel,
  .scanner-band {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .contact-form {
    margin-top: 24px;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .logo {
    font-size: 19px;
  }

  .hero {
    padding: 58px 0 54px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn,
  .nav-cta {
    width: 100%;
    text-align: center;
  }

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

  .cards,
  .feature-grid,
  .steps,
  .stat-grid,
  .detail-list,
  .proof-grid,
  .tag-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }

  section {
    padding: 50px 0;
  }
}
