:root {
  --bg: #091315;
  --bg-soft: #0f1d20;
  --panel: rgba(17, 33, 36, 0.82);
  --panel-strong: rgba(21, 42, 45, 0.94);
  --card-border: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f6f1e8;
  --muted: #b6c1bc;
  --title: #fffaf2;
  --primary: #f4c95d;
  --primary-strong: #e7ad23;
  --accent: #78d3bd;
  --accent-soft: rgba(120, 211, 189, 0.18);
  --danger: #ffb4a2;
  --success: #98f5cf;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(120, 211, 189, 0.18), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(244, 201, 93, 0.16), transparent 22%),
    linear-gradient(180deg, #091315 0%, #101d20 46%, #091315 100%);
  overflow-x: hidden;
}

main > .section:not(.hero):not(.page-hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 920px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.55), transparent 82%);
  opacity: 0.35;
  z-index: -2;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bg-blur {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.2;
  z-index: -1;
}

.bg-blur-1 {
  top: -120px;
  left: -120px;
  background: rgba(120, 211, 189, 0.32);
}

.bg-blur-2 {
  right: -120px;
  top: 180px;
  background: rgba(244, 201, 93, 0.28);
}

.bg-blur-3 {
  left: 42%;
  bottom: -180px;
  background: rgba(96, 140, 132, 0.24);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 18, 20, 0.8);
  backdrop-filter: blur(22px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--title);
}

.brand-subtitle {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.22s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--title);
}

.mobile-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #1b1406;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 16px 30px rgba(231, 173, 35, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--title);
}

.btn-link {
  color: var(--accent);
  padding: 0;
  border: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(120, 211, 189, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(244, 201, 93, 0.12);
}

.hero-grid,
.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  align-items: center;
}

.hero {
  padding-top: 72px;
}

.hero h1,
.page-hero h1 {
  margin: 20px 0 18px;
  color: var(--title);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero h2,
.section-heading h2,
.split-layout h2,
.page-section h2,
.page-hero h2,
.cta-box h2 {
  margin: 18px 0 14px;
  color: var(--title);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.accent-text {
  color: var(--primary);
}

.lead,
.section-heading p,
.split-layout p,
.page-section p,
.cta-box p,
.card p,
.contact-card p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.82;
}

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

.glass-card,
.card,
.contact-card,
.faq-item,
.step-card,
.price-card,
.stat-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 30px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-price {
  margin: 18px 0 10px;
  color: var(--title);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-price span {
  color: var(--primary);
}

.hero-note {
  margin: 0 0 24px;
  color: var(--muted);
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  line-height: 1.6;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 5px rgba(120, 211, 189, 0.08);
}

.hero-stats,
.stats-grid,
.cards-grid,
.steps-grid,
.faq-grid,
.pricing-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.hero-stats {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid,
.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.card,
.step-card,
.price-card,
.contact-card,
.faq-item {
  padding: 28px;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--title);
  font-size: 1.8rem;
  font-family: "Segoe UI", system-ui, sans-serif;
}

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

.section-heading {
  margin-bottom: 36px;
  max-width: 760px;
}

.card-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(244, 201, 93, 0.22), rgba(120, 211, 189, 0.18));
  color: var(--title);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.card h3,
.step-card h3,
.price-card h3,
.faq-item h3,
.contact-card h3 {
  margin: 18px 0 12px;
  color: var(--title);
  font-size: 1.45rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(244, 201, 93, 0.16);
  color: var(--primary);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.price-card.featured {
  border-color: rgba(244, 201, 93, 0.44);
  position: relative;
  overflow: hidden;
}

.price-card.featured::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(244, 201, 93, 0.28), transparent 70%);
}

.price-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(244, 201, 93, 0.18);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-amount {
  margin: 18px 0 12px;
  color: var(--title);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
}

.price-amount span {
  color: var(--primary);
}

.detail-box {
  padding: 30px;
}

.detail-grid {
  display: grid;
  gap: 18px;
}

.detail-item {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.detail-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--title);
  font-size: 1.08rem;
}

.quote-box {
  padding: 32px;
}

.quote-box blockquote {
  margin: 0;
  color: var(--title);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.quote-box cite {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

.contact-card a {
  color: var(--primary);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--title);
  padding: 16px 18px;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form select {
  appearance: none;
  color: var(--title);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary) 50%),
    linear-gradient(135deg, var(--primary) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form select:invalid {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form select option {
  color: var(--title);
  background: #122126;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.turnstile-slot {
  min-height: 66px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

.cta-box {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  padding: 34px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 15, 17, 0.7);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.footer-note {
  color: var(--muted);
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.whatsapp-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #0ea34a);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.whatsapp-button img {
  width: 21px;
  height: 21px;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .bg-blur {
    display: none;
  }

  body::before {
    opacity: 0.16;
    background-size: 56px 56px;
  }

  .site-header {
    backdrop-filter: none;
    background: rgba(8, 18, 20, 0.94);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 24px;
    background: rgba(11, 23, 26, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 16px;
  }

  .site-nav a:hover,
  .site-nav a.active {
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--title);
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .contact-layout,
  .stats-grid,
  .cards-grid,
  .steps-grid,
  .faq-grid,
  .pricing-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 74px 0;
  }

  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.8rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-panel,
  .card,
  .step-card,
  .price-card,
  .contact-card,
  .faq-item,
  .detail-box,
  .quote-box {
    padding: 24px;
  }

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