:root {
  --night: #070b1f;
  --deep: #0f1a3d;
  --nebula: #1a2a63;
  --aqua: #51c6ff;
  --lilac: #a48bff;
  --glow: #f3c969;
  --text: #eef3ff;
  --muted: #b8c5f1;
  --card: rgba(18, 28, 64, 0.85);
  --line: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #1e2b6e, var(--night));
  min-height: 100vh;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.bg-orbit {
  position: fixed;
  inset: -30% 0 0;
  background: radial-gradient(circle at 30% 30%, rgba(81, 198, 255, 0.2), transparent 60%),
    radial-gradient(circle at 70% 20%, rgba(164, 139, 255, 0.15), transparent 55%),
    radial-gradient(circle at 50% 80%, rgba(243, 201, 105, 0.08), transparent 70%);
  z-index: -1;
}

.hero {
  padding: 32px 8vw 80px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.logo-image {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px;
}

.logo-text {
  font-size: 1.05rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.subtitle {
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--glow);
  margin-bottom: 12px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--aqua), var(--lilac));
  color: #06132f;
  box-shadow: 0 12px 24px rgba(81, 198, 255, 0.2);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn.whatsapp {
  background: #25d366;
  color: #051a0c;
  padding: 14px 28px;
  font-weight: 700;
}

.trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust div {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  border-radius: 16px;
  min-width: 160px;
}

.trust strong {
  display: block;
  font-size: 1.1rem;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
}

.glow {
  position: absolute;
  inset: -60% -30% 40% 40%;
  background: radial-gradient(circle, rgba(243, 201, 105, 0.25), transparent 70%);
}

.card-content {
  position: relative;
  z-index: 1;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
}

.icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--aqua);
}

.icon svg {
  width: 100%;
  height: 100%;
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
}

main section {
  padding: 70px 8vw;
}

.section-header {
  max-width: 700px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.benefit-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.gallery {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.gallery img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 16px rgba(5, 10, 30, 0.35);
  display: block;
  flex-shrink: 0;
}

.benefit-grid article {
  background: rgba(8, 16, 40, 0.65);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

.icon.bubble {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(81, 198, 255, 0.12);
  margin-bottom: 16px;
}

.process {
  background: rgba(8, 12, 32, 0.65);
}

.step {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(15, 26, 61, 0.6);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(164, 139, 255, 0.2);
  margin-bottom: 12px;
  font-weight: 600;
}

.center {
  margin-top: 32px;
  text-align: center;
}

.whatsapp-card {
  display: grid;
  gap: 24px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(10, 20, 44, 0.7);
}

.hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq details {
  background: rgba(10, 16, 40, 0.6);
  border: 1px solid var(--line);
  padding: 18px 22px;
  border-radius: 16px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer {
  padding: 32px 8vw 50px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 18, 0.75);
}

.modal-card {
  position: relative;
  background: #0e1637;
  padding: 28px;
  border-radius: 20px;
  width: min(92vw, 440px);
  z-index: 1;
  border: 1px solid var(--line);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

input,
select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
}

select option {
  background: #0e1637;
  color: var(--text);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    gap: 18px;
  }

  .trust {
    flex-direction: column;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}
