:root {
  --brand: #25d366;
  --brand-dark: #128c4a;
  --brand-deep: #075e54;
  --blue: #1868db;
  --cyan: #0ea5e9;
  --ink: #0b172a;
  --muted: #657386;
  --line: #e6edf3;
  --soft: #f7fbf9;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(16, 32, 51, 0.1);
  --shadow-strong: 0 24px 70px rgba(11, 23, 42, 0.16);
}

* {
  letter-spacing: 0;
}

body {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(37, 211, 102, 0.08), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #fbfefd 100%);
  overflow-x: hidden;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

.site-navbar {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(230, 237, 243, 0.8);
  backdrop-filter: blur(16px);
  min-height: 76px;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-navbar.is-scrolled {
  box-shadow: 0 10px 30px rgba(16, 32, 51, 0.08);
}

.navbar-brand,
.footer-brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 0.82rem;
  height: 36px;
  justify-content: center;
  width: 48px;
}

.brand-text {
  color: var(--ink);
}

.nav-link {
  color: #334155;
  font-size: 0.94rem;
  font-weight: 650;
  padding: 0.55rem 0.75rem !important;
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  color: var(--brand-dark);
}

.nav-link.active::after,
.nav-link:hover::after {
  background: var(--brand);
  border-radius: 999px;
  bottom: 0.18rem;
  content: "";
  height: 3px;
  left: 0.75rem;
  position: absolute;
  right: 0.75rem;
}

.btn {
  border-radius: 8px;
  font-weight: 750;
  padding: 0.78rem 1.08rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-whatsapp {
  background: var(--brand);
  border-color: var(--brand);
  color: #073d21;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1fc15b;
  border-color: #1fc15b;
  color: #052b18;
  transform: translateY(-1px);
}

.btn-outline-business {
  border: 1px solid #b9d4c6;
  color: var(--ink);
  background: #fff;
}

.btn-outline-business:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: #f0fff6;
}

.hero {
  background:
    linear-gradient(110deg, rgba(247, 255, 250, 0.97) 0%, rgba(255, 255, 255, 0.94) 46%, rgba(232, 246, 255, 0.9) 100%),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=80") center/cover;
  min-height: 92vh;
  padding: 145px 0 60px;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, rgba(37, 211, 102, 0.32), rgba(24, 104, 219, 0.28));
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
}

.eyebrow {
  align-items: center;
  color: var(--brand-dark);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  color: #07172a;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  font-weight: 850;
  line-height: 1.04;
  margin: 18px 0;
}

.hero p,
.page-hero p,
.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.dashboard-window {
  background: linear-gradient(145deg, #07172a 0%, #0f3b47 100%);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  color: #fff;
  overflow: hidden;
}

.window-bar {
  align-items: center;
  background: #102942;
  display: flex;
  gap: 7px;
  padding: 14px;
}

.window-dot {
  background: #25d366;
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.window-dot:nth-child(2) {
  background: #42a5ff;
}

.window-dot:nth-child(3) {
  background: #f5c84c;
}

.metric-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 18px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
}

.metric-card strong {
  display: block;
  font-size: 1.55rem;
}

.metric-card span {
  color: #b9c9d9;
  font-size: 0.9rem;
}

.section-padding {
  padding: 88px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, #f8fffb 0%, #f3f8ff 100%);
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 850;
  line-height: 1.08;
}

.section-kicker {
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature-card,
.service-card,
.product-card,
.access-card,
.choice-card {
  background: var(--white);
  border: 1px solid rgba(226, 235, 243, 0.95);
  border-radius: 8px;
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover,
.service-card:hover,
.product-card:hover,
.access-card:hover,
.choice-card:hover {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.feature-card,
.service-card,
.access-card,
.choice-card {
  padding: 26px;
}

.icon-box {
  align-items: center;
  background: linear-gradient(135deg, #eafff1, #eaf5ff);
  border-radius: 8px;
  color: var(--brand-dark);
  display: inline-flex;
  font-size: 1.45rem;
  height: 50px;
  justify-content: center;
  margin-bottom: 18px;
  width: 50px;
}

.service-list {
  color: var(--muted);
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.service-list li {
  margin: 8px 0;
  padding-left: 24px;
  position: relative;
}

.service-list li::before {
  color: var(--brand);
  content: "\F26A";
  font-family: "bootstrap-icons";
  left: 0;
  position: absolute;
}

.product-card {
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  width: 100%;
  transition: transform 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-body {
  padding: 24px;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(246, 255, 249, 0.96) 0%, rgba(236, 247, 255, 0.98) 100%),
    url("https://images.unsplash.com/photo-1559136555-9303baea8ebd?auto=format&fit=crop&w=1600&q=80") center/cover;
  padding: 145px 0 78px;
}

.stats-strip {
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.stat-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
}

.stat-box strong {
  color: var(--brand-dark);
  display: block;
  font-size: 2rem;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.contact-card h2 {
  color: #07172a;
}

.form-control,
.form-select {
  border-color: #dce6ef;
  border-radius: 8px;
  min-height: 50px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.22rem rgba(37, 211, 102, 0.15);
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(7, 23, 42, 0.92), rgba(18, 140, 74, 0.82)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
  padding: 70px 0;
}

.cta-band p {
  color: #d9e8ef;
}

.site-footer {
  background: #07172a;
  color: #bdcad8;
  padding: 70px 0 24px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
}

.site-footer a {
  color: #bdcad8;
  display: block;
  margin: 10px 0;
}

.site-footer a:hover {
  color: var(--brand);
}

.footer-brand {
  color: #fff;
}

.footer-contact {
  color: var(--brand) !important;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 46px;
  padding-top: 22px;
}

.floating-whatsapp {
  align-items: center;
  animation: pulse 1.8s infinite;
  background: var(--brand);
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.4);
  color: #06351d;
  display: inline-flex;
  font-size: 1.9rem;
  height: 62px;
  justify-content: center;
  position: fixed;
  right: 22px;
  width: 62px;
  z-index: 99;
}

.floating-whatsapp:hover {
  color: #06351d;
  transform: translateY(-2px);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.48);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 991px) {
  .site-navbar {
    min-height: 68px;
  }

  .navbar-collapse {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 12px;
    padding: 12px;
  }

  .nav-link {
    border-radius: 8px;
    padding: 0.72rem 0.85rem !important;
  }

  .nav-link.active,
  .nav-link:hover {
    background: #f0fff6;
  }

  .nav-link.active::after,
  .nav-link:hover::after {
    display: none;
  }

  .site-navbar .btn-whatsapp {
    margin: 14px 0 6px;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .page-hero {
    padding-top: 112px;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-mark {
    height: 34px;
    width: 46px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 12vw, 2.85rem);
  }

  .hero p,
  .page-hero p,
  .section-lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero {
    padding-bottom: 46px;
  }

  .stats-strip {
    margin-top: 0;
    padding-top: 18px;
  }

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

  .section-padding {
    padding: 64px 0;
  }

  .feature-card,
  .service-card,
  .access-card,
  .choice-card,
  .contact-card,
  .product-body {
    padding: 20px;
  }

  .stat-box {
    padding: 18px 10px;
  }

  .stat-box strong {
    font-size: 1.55rem;
  }

  .btn {
    padding: 0.82rem 1rem;
    width: 100%;
  }

  .hero .btn,
  .page-hero .btn,
  .cta-band .btn {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    bottom: 16px;
    height: 56px;
    right: 16px;
    width: 56px;
  }
}

@media (max-width: 420px) {
  .brand-text {
    font-size: 0.98rem;
  }

  .hero,
  .page-hero {
    padding-top: 102px;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .metric-card strong {
    font-size: 1.35rem;
  }
}
