:root {
  --bg: #07111f;
  --surface: rgba(12, 24, 39, 0.88);
  --text: #edf3ff;
  --muted: #a7b7d0;
  --line: rgba(255, 255, 255, 0.08);
  --brand: #2ee6c6;
  --brand-alt: #72f1b8;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --content-width: 1180px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(46, 230, 198, 0.18), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(114, 241, 184, 0.12), transparent 24%),
    linear-gradient(180deg, #050c16 0%, #091423 45%, #07111f 100%);
  font-family: "Segoe UI Variable Text", "Trebuchet MS", system-ui, sans-serif;
  line-height: 1.65;
}

img {
  max-width: 100%;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
  opacity: 0.4;
  z-index: -1;
}

.container {
  max-width: var(--content-width);
}

.site-main {
  padding-top: 5.5rem;
}

.app-navbar {
  padding: 1rem 0;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.app-navbar.is-scrolled {
  background: rgba(7, 17, 31, 0.85);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 24rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, #18a2ff 100%);
  color: #041018;
  font-family: "Bahnschrift", "Arial Nova", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
  color: var(--text);
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-link {
  color: rgba(237, 243, 255, 0.88);
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand-alt);
}

.navbar-toggler {
  background: rgba(255, 255, 255, 0.82);
}

.hero-section,
.inner-page {
  padding: 3rem 0 5rem;
}

.display-title,
.page-title,
.section-heading h2,
.status-shell h1,
.cta-banner h2 {
  font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
  letter-spacing: -0.03em;
}

.display-title {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.95;
  max-width: 12ch;
  margin: 1rem 0 1.2rem;
}

.hero-copy,
.section-heading p,
.page-copy,
.status-shell p {
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow,
.info-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand-alt);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.info-kicker::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.hero-actions,
.status-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand) 0%, #17a7f6 100%);
  border: 0;
  color: #07111f;
  box-shadow: 0 16px 35px rgba(23, 167, 246, 0.25);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #07111f;
  box-shadow: 0 18px 40px rgba(23, 167, 246, 0.36);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--text);
}

.hero-stats,
.business-grid,
.contact-cards {
  display: grid;
  gap: 1rem;
}

.hero-stats {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 2.4rem;
}

.stat-card,
.info-card,
.service-card,
.contact-card,
.status-shell,
.cta-banner,
.about-card,
.process-card,
.contact-form-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
}

.stat-card strong {
  display: block;
  font-size: 1rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual-card {
  padding: 1.2rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-visual {
  border-radius: 1.5rem;
}

.section-shell {
  padding: 4.5rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.page-title,
.status-shell h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0.75rem 0 1rem;
}

.service-card {
  height: 100%;
  padding: 1.7rem;
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-card-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(46, 230, 198, 0.14);
  color: var(--brand-alt);
  font-weight: 700;
}

.service-summary,
.service-description,
.service-benefits,
.footer-links,
.contact-meta,
.process-card p,
.about-card p,
.request-id {
  color: var(--muted);
}

.service-benefits {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.service-benefits li + li {
  margin-top: 0.45rem;
}

.info-card,
.about-card,
.process-card,
.contact-card {
  padding: 1.5rem;
}

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

.business-pill {
  padding: 1rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-align: center;
}

.cta-banner {
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(46, 230, 198, 0.22), transparent 65%);
  pointer-events: none;
}

.cta-banner p {
  max-width: 45rem;
  color: var(--muted);
}

.inner-page .page-header {
  max-width: 46rem;
  margin-bottom: 2.8rem;
}

.page-copy {
  max-width: 43rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.about-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.contact-form-card,
.contact-card {
  padding: 2rem;
}

.form-label {
  margin-bottom: 0.45rem;
  color: var(--text);
  font-weight: 600;
}

.form-control {
  min-height: 3.3rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.form-control::placeholder {
  color: rgba(167, 183, 208, 0.8);
}

.form-control:focus {
  border-color: rgba(46, 230, 198, 0.7);
  box-shadow: 0 0 0 0.2rem rgba(46, 230, 198, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

textarea.form-control {
  min-height: 10rem;
}

.field-validation-error,
.validation-summary-errors {
  color: #ffb3b3;
}

.alert-success {
  border: 1px solid rgba(114, 241, 184, 0.25);
  background: rgba(114, 241, 184, 0.1);
  color: #d9ffe7;
  border-radius: 1rem;
}

.contact-meta {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(3, 9, 18, 0.8);
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.65rem;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--brand-alt);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1050;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #8ef0a3 100%);
  color: #04220f;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
}

.status-shell {
  padding: 3rem;
  text-align: center;
}

.request-id {
  margin-top: 1.5rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 991.98px) {
  .brand-text small {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .app-navbar {
    background: rgba(7, 17, 31, 0.86);
    backdrop-filter: blur(18px);
  }
}

@media (max-width: 767.98px) {
  .site-main {
    padding-top: 4.8rem;
  }

  .hero-section,
  .inner-page,
  .section-shell {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

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

  .btn,
  .floating-whatsapp {
    width: 100%;
    text-align: center;
  }

  .status-shell,
  .contact-form-card,
  .contact-card {
    padding: 1.5rem;
  }
}
