:root {
  --bg: #090b10;
  --bg-soft: #11151f;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #aeb6c6;
  --line: rgba(255, 255, 255, 0.14);
  --orange: #f58a3d;
  --orange-soft: #ffb06a;
  --green: #25d366;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 26px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(245, 138, 61, 0.18), transparent 32%),
    radial-gradient(circle at 90% 5%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #07090e 0%, #0b0f18 52%, #080a0f 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 72%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(9, 11, 16, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.25rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), #ffcc8a);
  color: #141414;
  display: grid;
  place-items: center;
  font-weight: 950;
  box-shadow: 0 14px 40px rgba(245, 138, 61, .35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: .94rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .22s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: #15100d;
  box-shadow: 0 18px 45px rgba(245, 138, 61, .28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(245, 138, 61, .36);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--green);
  color: #08150d;
  box-shadow: 0 18px 44px rgba(37, 211, 102, .23);
}

.hero {
  padding: 86px 0 54px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(245, 138, 61, .12);
  border: 1px solid rgba(245, 138, 61, .27);
  color: #ffd7b4;
  font-weight: 800;
  font-size: .86rem;
  margin-bottom: 22px;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(245, 138, 61, .16);
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.85rem);
  line-height: .94;
  letter-spacing: -0.075em;
  max-width: 830px;
}

h1 span {
  color: var(--orange-soft);
}

.lead {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  max-width: 650px;
}

.small-lead {
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.mini-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 650px;
}

.mini-trust div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  color: var(--muted);
  font-size: .92rem;
}

.mini-trust strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 3px;
}

.device-card {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.045)),
    radial-gradient(circle at 50% 0%, rgba(245, 138, 61, .35), transparent 34%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 28px;
}

.device-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(245, 138, 61, .2);
  filter: blur(45px);
  right: -160px;
  top: -110px;
}

.scanner {
  position: relative;
  margin: 24px auto 0;
  width: min(360px, 100%);
  min-height: 455px;
  border-radius: 35px;
  background: #10141d;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 0 8px rgba(0,0,0,.22), 0 30px 80px rgba(0,0,0,.38);
  padding: 24px;
  transform: rotate(-3deg);
}

.scanner-screen {
  border-radius: 24px;
  min-height: 315px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    #06080c;
  border: 1px solid rgba(255,255,255,.1);
  padding: 20px;
  overflow: hidden;
}

.screen-top {
  display: flex;
  justify-content: space-between;
  color: #d9e4f5;
  font-weight: 900;
  font-size: .88rem;
  margin-bottom: 20px;
}

.code-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: .9rem;
}

.code-line strong {
  color: var(--text);
}

.status-ok {
  color: #7cf0a3;
  font-weight: 900;
}

.status-warn {
  color: #ffcf7a;
  font-weight: 900;
}

.scanner-button {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  margin: 22px auto 0;
  background: radial-gradient(circle, #ffca86, var(--orange));
  box-shadow: 0 0 0 12px rgba(245,138,61,.12);
}

.floating-badge {
  position: absolute;
  left: 22px;
  bottom: 28px;
  right: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(9, 11, 16, .78);
  backdrop-filter: blur(18px);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.floating-badge span {
  color: var(--muted);
}

.badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(245,138,61,.16);
  color: var(--orange-soft);
  font-size: 1.35rem;
  flex: 0 0 auto;
}

section {
  padding: 70px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--orange-soft);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.06em;
  max-width: 760px;
}

.section-text {
  color: var(--muted);
  max-width: 480px;
}

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

.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
  transition: .22s ease;
}

.card:hover {
  transform: translateY(-4px);
  background: var(--card-strong);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(245,138,61,.14);
  color: var(--orange-soft);
  font-size: 1.45rem;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 9px;
  letter-spacing: -0.025em;
}

.card p,
.card li {
  color: var(--muted);
  font-size: .98rem;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.card li::before {
  content: "✓";
  color: var(--orange-soft);
  font-weight: 900;
  margin-right: 9px;
}

.highlight {
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(245,138,61,.18), rgba(255,255,255,.055)),
    rgba(255,255,255,.045);
  border: 1px solid rgba(245,138,61,.24);
  padding: 34px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow);
}

.highlight-box {
  border-radius: 26px;
  background: rgba(0,0,0,.26);
  border: 1px solid var(--line);
  padding: 25px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
}

.step span {
  color: var(--muted);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 950;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: #15100d;
}

.prices {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(245,138,61,.45);
  background:
    linear-gradient(180deg, rgba(245,138,61,.17), rgba(255,255,255,.06));
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245,138,61,.16);
  color: #ffd7b4;
  font-size: .75rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.price {
  font-size: 2.5rem;
  font-weight: 950;
  letter-spacing: -0.07em;
  margin: 15px 0;
}

.price small {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0;
  font-weight: 700;
}

.note {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cleaning-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, transparent 0%, rgba(9,11,16,.84) 74%),
    radial-gradient(circle at 30% 25%, rgba(245,138,61,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
}

.contact {
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 18%, rgba(37,211,102,.16), transparent 30%),
    linear-gradient(135deg, rgba(245,138,61,.19), rgba(255,255,255,.06));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 42px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted);
}

.contact-list strong {
  color: var(--text);
}

form {
  display: grid;
  gap: 13px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.25);
  color: var(--text);
  border-radius: 18px;
  padding: 16px 17px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(245,138,61,.62);
  box-shadow: 0 0 0 4px rgba(245,138,61,.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

footer {
  padding: 38px 0 80px;
  color: var(--muted);
  font-size: .92rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  min-height: 58px;
  padding: 0 21px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #061109;
  font-weight: 950;
  box-shadow: 0 18px 50px rgba(37,211,102,.3);
  border: 1px solid rgba(255,255,255,.22);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .75s ease forwards;
}

.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .32s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .hero-grid,
  .highlight,
  .contact,
  .split {
    grid-template-columns: 1fr;
  }

  .device-card {
    min-height: 520px;
  }

  .grid-3,
  .prices {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-text {
    margin-top: 14px;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .mini-trust {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact,
  .highlight {
    padding: 24px;
    border-radius: 28px;
  }

  .scanner {
    transform: none;
  }

  .whatsapp-float span:last-child {
    display: none;
  }
}


.form-message {
  border-radius: 18px;
  padding: 15px 17px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  font-weight: 800;
}

.form-message.success {
  background: rgba(37, 211, 102, .13);
  border-color: rgba(37, 211, 102, .38);
  color: #bfffd4;
}

.form-message.error {
  background: rgba(255, 98, 98, .13);
  border-color: rgba(255, 98, 98, .38);
  color: #ffd0d0;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.privacy-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.privacy-check a,
.legal-content a {
  color: var(--orange-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-main {
  padding: 72px 0;
}

.legal-hero {
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 18%, rgba(245,138,61,.18), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 42px;
  margin-bottom: 24px;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-section {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
}

.legal-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 12px;
}

.legal-section h3 {
  margin-top: 18px;
}

.legal-section p {
  color: var(--muted);
  margin-top: 8px;
}

.legal-section address {
  color: var(--muted);
  font-style: normal;
  margin-top: 8px;
}

.todo-box {
  border: 1px solid rgba(245,138,61,.35);
  background: rgba(245,138,61,.1);
  color: #ffd7b4;
  border-radius: 20px;
  padding: 16px;
  margin-top: 16px;
}
