:root {
  --red: #cf102d;
  --red2: #ff2449;
  --dark: #08090d;
  --panel: #12141d;
  --muted: #a8adbb;
  --white: #f7f7fb;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.07);
  --radius: 24px;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(207, 16, 45, 0.25), transparent 35%),
    linear-gradient(135deg, #08090d 0%, #111522 55%, #05060a 100%);
  color: var(--white);
  line-height: 1.55;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22180%22 height=%22180%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%22.85%22 numOctaves=%222%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23n)%22 opacity=%22.6%22/%3E%3C/svg%3E");
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 64px);
  backdrop-filter: blur(18px);
  background: rgba(8, 9, 13, 0.72);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.brand-logo {
  height: 50px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #dce0ea;
}
.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red2));
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 750;
  box-shadow: 0 14px 40px rgba(207, 16, 45, 0.28);
}
.nav-toggle {
  display: none;
}
.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 44px;
  padding: 90px clamp(18px, 6vw, 90px);
}
.eyebrow {
  color: #ff8b9c;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92;
  margin: 18px 0;
  letter-spacing: -0.07em;
}
.hero p,
.page-hero p {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: #c5cad7;
  max-width: 760px;
}
.hero-panel {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: var(--shadow);
}
.hero-panel img,
.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  opacity: 0.8;
}
.scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(207, 16, 45, 0.16),
    transparent
  );
  animation: scan 5s linear infinite;
}
@keyframes scan {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.floating-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(8, 9, 13, 0.72);
  backdrop-filter: blur(14px);
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn-secondary {
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}
section {
  padding: 70px clamp(18px, 6vw, 90px);
}
.section-title {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}
.muted {
  color: var(--muted);
}
.grid {
  display: grid;
  gap: 22px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  transition: 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 36, 73, 0.45);
}
.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.service-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  z-index: 0;
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-card h3 {
  font-size: 1.45rem;
  margin: 0 0 8px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.step {
  padding: 24px;
  border-top: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
}
.page-hero {
  padding: 90px clamp(18px, 6vw, 90px) 40px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.visual {
  height: 430px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form {
  display: grid;
  gap: 14px;
  max-width: 900px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.form textarea {
  min-height: 140px;
}
.form button {
  border: 0;
  color: white;
  cursor: pointer;
}
.notice {
  padding: 18px;
  border-radius: 18px;
  background: rgba(50, 210, 120, 0.12);
  border: 1px solid rgba(50, 210, 120, 0.25);
}
.site-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 46px clamp(18px, 6vw, 90px);
  border-top: 1px solid var(--line);
  background: #06070a;
  color: #cbd0dc;
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  background: #25d366;
  color: #04130a;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 850;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
}
@media (max-width: 900px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .grid-4,
  .timeline,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: #10121a;
    border: 1px solid var(--line);
    border-radius: 20px;
  }
  .site-nav.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
    background: transparent;
    color: white;
    border: 0;
    font-size: 1.6rem;
  }
  .hero-panel {
    min-height: 380px;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
}
