:root {
  --salvia: #15906f;
  --salvia-dark: #087157;
  --salvia-deep: #075f4b;
  --salvia-soft: #e9f8f3;
  --ink: #182230;
  --muted: #687483;
  --line: #e6ebe9;
  --soft: #f6f9f8;
  --purple: #6f5be7;
  --orange: #f0a35b;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(28, 53, 47, .08);
  --shadow-md: 0 25px 70px rgba(20, 54, 46, .12);
  --radius: 26px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.btn {
  font-family: "Manrope", sans-serif;
}

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

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

section[id] {
  scroll-margin-top: 90px;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--salvia), #66d7b6);
  z-index: 2000;
}

.navbar-salvia {
  padding: 18px 0;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px);
  transition: .3s ease;
}

.navbar-salvia.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 30px rgba(20, 55, 47, .07);
}

.navbar-brand strong {
  display: block;
  color: var(--ink);
  font-size: 25px;
  line-height: .85;
  letter-spacing: -.04em;
}

.navbar-brand small {
  display: block;
  margin-top: 5px;
  font-size: 6.5px;
  letter-spacing: .18em;
  color: var(--muted);
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(145deg, var(--salvia), #4fc6a6);
  box-shadow: 0 10px 25px rgba(21, 144, 111, .25);
}

.navbar-nav .nav-link {
  padding: 10px 13px !important;
  color: #4f5a66;
  font-weight: 600;
  font-size: 15px;
  transition: .2s ease;
}

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

.phone-link {
  font-size: 14px;
  color: #4f5a66;
  font-weight: 700;
}

.phone-link i {
  color: var(--salvia);
  margin-right: 5px;
}

.btn-salvia {
  color: var(--white);
  background: linear-gradient(135deg, var(--salvia), var(--salvia-dark));
  border: 0;
  box-shadow: 0 12px 25px rgba(21, 144, 111, .2);
  transition: .25s ease;
}

.btn-salvia:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(21, 144, 111, .26);
}

.btn-outline-salvia {
  color: var(--salvia-dark);
  background: transparent;
  border: 1px solid rgba(8, 113, 87, .22);
  transition: .25s ease;
}

.btn-outline-salvia:hover {
  color: var(--salvia-dark);
  background: var(--salvia-soft);
  border-color: rgba(8, 113, 87, .35);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--salvia-dark);
  border: 0;
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  color: var(--salvia-dark);
  transform: translateY(-2px);
}

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

.bg-soft {
  background: var(--soft);
}

.hero-section {
  position: relative;
  min-height: 820px;
  padding-top: 165px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(109, 212, 183, .15), transparent 32%),
    radial-gradient(circle at 85% 30%, rgba(111, 91, 231, .08), transparent 28%),
    linear-gradient(180deg, #fbfefd 0%, #f6fbf9 100%);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-bg-shape-1 {
  width: 430px;
  height: 430px;
  top: 90px;
  right: -180px;
  background: rgba(42, 194, 155, .08);
}

.hero-bg-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
  background: rgba(111, 91, 231, .06);
}

.eyebrow,
.section-kicker {
  color: var(--salvia-dark);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  background: var(--salvia-soft);
  border-radius: 999px;
  margin-bottom: 20px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42c69f;
  box-shadow: 0 0 0 5px rgba(66, 198, 159, .15);
}

.display-title {
  max-width: 650px;
  margin: 0 0 22px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}

.display-title span,
.section-title span {
  color: var(--salvia);
}

.hero-copy {
  max-width: 600px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
}

.hero-trust strong,
.hero-trust small {
  display: block;
}

.hero-trust strong {
  color: var(--ink);
  font-size: 15px;
}

.hero-trust small {
  font-size: 13.5px;
}

.trust-avatars {
  display: flex;
  padding-left: 7px;
}

.trust-avatars span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border-radius: 50%;
  border: 2px solid var(--white);
  color: #fff;
  background: #69b69f;
  font-size: 11px;
}

.trust-avatars span:nth-child(2) { background: #7b74d5; }
.trust-avatars span:nth-child(3) { background: #e89c63; }
.trust-avatars .trust-more {
  background: var(--ink);
  font-weight: 800;
}

.hero-carousel {
  position: relative;
  min-height: 520px;
}

.carousel-inner,
.carousel-item {
  height: 100%;
}

.device-card {
  min-height: 520px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(29, 68, 59, .18);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.device-topbar {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  background: #f9fbfa;
  border-bottom: 1px solid var(--line);
  color: #84908b;
  font-size: 11px;
}

.traffic {
  display: flex;
  gap: 5px;
}

.traffic i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: #dce5e2;
}

.device-url {
  flex: 1;
  text-align: center;
}

.dashboard-ui {
  min-height: 480px;
  display: flex;
  background: #f7faf9;
}

.dash-sidebar {
  width: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 16px 0;
  background: #0b6753;
  color: #c4e7dd;
}

.dash-sidebar span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.dash-sidebar .dash-active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.dash-logo {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 11px;
  background: var(--white);
  color: var(--salvia-dark);
  font-weight: 800;
  font-size: 22px;
}

.dash-main {
  flex: 1;
  padding: 23px;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-header small {
  color: #8b9894;
  font-size: 10px;
}

.dash-header h5 {
  margin: 4px 0 0;
  font-size: 18px;
}

.dash-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--salvia-soft);
  color: var(--salvia-dark);
}

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

.mini-kpi {
  padding: 14px;
  border: 1px solid #e7ecea;
  border-radius: 16px;
  background: #fff;
}

.mini-kpi small,
.mini-kpi strong,
.mini-kpi span {
  display: block;
}

.mini-kpi small {
  font-size: 9px;
  color: #8a9792;
}

.mini-kpi strong {
  margin: 5px 0 3px;
  font-size: 20px;
}

.positive {
  color: #23a67c;
  font-size: 9px;
  font-weight: 800;
}

.dash-panels {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.dash-chart,
.dash-list {
  padding: 15px;
  min-height: 215px;
  background: #fff;
  border: 1px solid #e7ecea;
  border-radius: 16px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 10px;
}

.panel-title i {
  color: #aab4b0;
}

.fake-chart {
  height: 160px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding-top: 20px;
}

.fake-chart span {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #57c8a7, #bfe8dc);
}

.fake-row {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #eef2f1;
}

.fake-row:last-child { border-bottom: 0; }

.fake-row b,
.fake-row small {
  display: block;
}

.fake-row b {
  font-size: 9px;
}

.fake-row small {
  font-size: 8px;
  color: #96a19e;
  margin-top: 2px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot-blue { background: #7e79dc; }
.dot-green { background: #5dc9a8; }
.dot-orange { background: #efa261; }

.device-image-slide {
  height: 520px;
  min-height: 520px;
}

.device-image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 25px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8, 35, 29, .12), rgba(8, 35, 29, .86));
  backdrop-filter: blur(10px);
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  color: var(--salvia-dark);
  border-radius: 999px;
  background: var(--salvia-soft);
  font-size: 12.5px;
  font-weight: 800;
}

.badge-soft-light {
  color: #d9fff2;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.1);
}

.image-overlay h2,
.image-overlay h4 {
  max-width: 500px;
  margin: 13px 0 8px;
  font-size: 26px;
  line-height: 1.15;
}

.image-overlay p {
  max-width: 500px;
  margin: 0;
  color: rgba(255,255,255,.78);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 1;
}

.carousel-control-prev { left: 14px; }
.carousel-control-next { right: 14px; }

.carousel-control-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  box-shadow: 0 10px 25px rgba(0,0,0,.09);
}

.carousel-indicators {
  margin-bottom: -22px;
}

.carousel-indicators [data-bs-target] {
  width: 30px;
  height: 3px;
  border: 0;
  border-radius: 10px;
  background-color: #aabeb8;
}

.carousel-indicators .active {
  background-color: var(--salvia);
}

.floating-stat {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  animation: floaty 4.5s ease-in-out infinite;
}

.floating-stat strong,
.floating-stat small {
  display: block;
}

.floating-stat strong {
  font-size: 15px;
}

.floating-stat small {
  color: #7b8783;
  font-size: 9px;
}

.floating-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--salvia-dark);
  background: var(--salvia-soft);
}

.floating-icon.purple {
  color: #5b4ccc;
  background: #f0edff;
}

.floating-stat-1 {
  left: -26px;
  bottom: 42px;
}

.floating-stat-2 {
  right: -20px;
  top: 62px;
  animation-delay: -1.8s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.platform-strip {
  position: relative;
  z-index: 5;
  margin-top: -15px;
  margin-bottom: 20px;
}

.platform-strip .container {
  padding: 0 20px;
}

.metric {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  border: 1px solid #e7edeb;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.metric:first-child { border-radius: 20px 0 0 20px; }
.metric:last-child { border-radius: 0 20px 20px 0; }

.metric strong {
  color: var(--salvia-dark);
  font-size: 32px;
  font-weight: 800;
}

.metric span {
  color: var(--muted);
  font-size: 13.5px;
}

.section-title {
  margin: 13px 0 20px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.07;
  letter-spacing: -.045em;
  font-weight: 800;
}

.section-lead {
  font-size: 19px;
  color: var(--muted);
}

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

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.visual-stack {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding-bottom: 44px;
}

.visual-main {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.visual-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,49,40,.02), rgba(10,49,40,.55));
}

.visual-main img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.visual-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 17px;
  color: var(--white);
  background: rgba(8, 40, 32, .55);
  backdrop-filter: blur(12px);
}

.visual-caption i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #b8f6e2;
  background: rgba(255,255,255,.12);
}

.visual-caption strong,
.visual-caption small {
  display: block;
}

.visual-caption strong { font-size: 14.5px; }
.visual-caption small { font-size: 12px; color: rgba(255,255,255,.7); }

.visual-card {
  position: absolute;
  right: -26px;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 275px;
  padding: 17px;
  border: 1px solid #e8eeec;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.visual-card strong,
.visual-card small { display: block; }
.visual-card strong { font-size: 14px; }
.visual-card small { color: var(--muted); font-size: 12px; margin-top: 2px; }

.mini-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  color: var(--salvia-dark);
  background: var(--salvia-soft);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.role-grid > div {
  padding: 16px 10px;
  text-align: center;
  border: 1px solid #e9eeec;
  border-radius: 16px;
  background: #fff;
}

.role-grid i {
  display: block;
  margin-bottom: 7px;
  color: var(--salvia);
  font-size: 20px;
}

.role-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.feature-card {
  position: relative;
  height: 100%;
  padding: 30px;
  border: 1px solid #e8eeec;
  border-radius: 24px;
  background: #fff;
  transition: .3s ease;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  background: rgba(21, 144, 111, .04);
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(21,144,111,.22);
  box-shadow: var(--shadow-sm);
}

.feature-card-highlight {
  border-color: rgba(21,144,111,.2);
  background: linear-gradient(180deg, #f8fffc 0%, #fff 100%);
}

.feature-number {
  position: absolute;
  right: 24px;
  top: 21px;
  color: #c7d1ce;
  font-size: 11px;
  font-weight: 800;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 15px;
  color: var(--salvia-dark);
  background: var(--salvia-soft);
  font-size: 22px;
}

.feature-card h3,
.reason-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-card p,
.reason-card p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 18px;
}

.feature-card a {
  color: var(--salvia-dark);
  font-weight: 800;
  font-size: 13.5px;
}

.feature-card a i { margin-left: 4px; }

.module-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 32px;
  border-radius: 27px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 15%, rgba(99,225,187,.25), transparent 28%),
    linear-gradient(135deg, #0a7660, #075441);
  box-shadow: 0 25px 50px rgba(6, 83, 66, .18);
}

.module-banner h3 {
  margin: 7px 0 4px;
  font-size: 25px;
}

.module-banner p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
}

.benefits-section {
  background:
    radial-gradient(circle at 12% 25%, rgba(86, 207, 173, .08), transparent 25%),
    #fff;
}

.benefits-visual {
  min-height: 460px;
  position: relative;
  display: grid;
  place-items: center;
}

.benefit-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,144,111,.12), rgba(21,144,111,0) 70%);
}

.analytics-card {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  padding: 24px;
  border: 1px solid #e9efed;
  border-radius: 25px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-md);
}

.analytics-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.analytics-top span,
.analytics-top strong {
  display: block;
}

.analytics-top span {
  color: var(--muted);
  font-size: 11px;
}

.analytics-top strong {
  font-size: 28px;
  margin-top: 3px;
}

.analytics-top i {
  color: #9ca7a4;
}

.line-chart {
  height: 240px;
  margin-top: 20px;
}

.line-chart svg {
  width: 100%;
  height: 100%;
}

.grid-line {
  fill: none;
  stroke: #edf2f0;
  stroke-width: 1;
}

.chart-fill {
  fill: rgba(21, 144, 111, .08);
}

.chart-line {
  fill: none;
  stroke: var(--salvia);
  stroke-width: 4;
  stroke-linecap: round;
}

.benefit-pill {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid #edf1ef;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 12.5px;
  font-weight: 800;
}

.benefit-pill i { color: var(--salvia); }

.pill-one { top: 40px; left: 20px; }
.pill-two { right: 5px; top: 130px; }
.pill-three { left: 25px; bottom: 55px; }

.benefit-item {
  display: flex;
  gap: 13px;
  margin-bottom: 22px;
}

.benefit-check {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--salvia-dark);
  background: var(--salvia-soft);
}

.benefit-item h4 {
  font-size: 17px;
  margin: 2px 0 3px;
}

.benefit-item p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.reason-card {
  position: relative;
  height: 100%;
  padding: 32px;
  border: 1px solid #e7edeb;
  border-radius: 24px;
  background: #fff;
  transition: .3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.reason-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--salvia-dark);
  background: var(--salvia-soft);
  border-radius: 16px;
  font-size: 22px;
}

.reason-icon.purple {
  color: #5f50d0;
  background: #f0edff;
}

.reason-icon.orange {
  color: #b86d22;
  background: #fff1e4;
}

.reason-number {
  position: absolute;
  right: 27px;
  top: 23px;
  color: #cfd8d5;
  font-size: 11px;
  font-weight: 800;
}

.cta-section {
  padding: 50px 0 20px;
}

.cta-shell {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 60px;
  overflow: hidden;
  border-radius: 35px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 46%, rgba(102, 226, 191, .17), transparent 28%),
    radial-gradient(circle at 3% 95%, rgba(113, 89, 230, .18), transparent 24%),
    linear-gradient(135deg, #0a5f4c, #073f34);
}

.cta-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.cta-copy h2 {
  max-width: 650px;
  margin: 16px 0 13px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.cta-copy p {
  max-width: 600px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-orbit {
  position: absolute;
  width: 410px;
  height: 410px;
  right: 20px;
  top: 0;
}

.orbit-circle {
  position: absolute;
  inset: 0;
  margin: auto;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}

.orbit-circle-1 { width: 260px; height: 260px; }
.orbit-circle-2 { width: 370px; height: 370px; }

.orbit-center {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 85px;
  height: 85px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #d8fff2;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  font-size: 27px;
  box-shadow: 0 20px 40px rgba(0,0,0,.16);
}

.orbit-icon {
  position: absolute;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #d8fff2;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
}

.oi-1 { top: 30px; left: 178px; }
.oi-2 { left: 10px; top: 180px; }
.oi-3 { right: 10px; bottom: 55px; }

.contact-section {
  background: #fff;
}

.contact-points > div {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 12px;
}

.contact-points span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--salvia-dark);
  background: var(--salvia-soft);
}

.contact-points p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 12px 15px;
  border: 1px solid #e8eeec;
  border-radius: 16px;
  background: #fbfdfc;
}

.phone-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--salvia-dark);
  background: var(--salvia-soft);
}

.contact-phone small,
.contact-phone strong {
  display: block;
}

.contact-phone small {
  color: var(--muted);
  font-size: 11px;
}

.contact-phone strong {
  margin-top: 1px;
  font-size: 17px;
}

.form-card {
  position: relative;
  padding: 32px;
  border: 1px solid #e5ebe8;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.form-label {
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
  color: #58645f;
}

.form-control,
.form-select {
  min-height: 50px;
  padding: 12px 14px;
  border-color: #e3eae7;
  border-radius: 13px;
  font-size: 16px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(21,144,111,.45);
  box-shadow: 0 0 0 .2rem rgba(21,144,111,.10);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #87928e;
  font-size: 12px;
}

.form-success {
  display: none;
  min-height: 420px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.form-success.show {
  display: flex;
}

.success-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  color: var(--salvia-dark);
  background: var(--salvia-soft);
  border-radius: 22px;
  font-size: 31px;
}

.form-success h3 {
  font-size: 26px;
}

.form-success p {
  max-width: 390px;
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 15px;
}

.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-line {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 29px;
  height: 1px;
  background: #dfe7e4;
}

.step-item {
  position: relative;
  text-align: center;
}

.step-bubble {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 7px solid var(--soft);
  border-radius: 50%;
  color: var(--salvia-dark);
  background: var(--white);
  box-shadow: 0 0 0 1px #dfe7e4;
  font-size: 11px;
  font-weight: 800;
}

.step-item h3 {
  font-size: 17.5px;
  margin-bottom: 7px;
}

.step-item p {
  color: var(--muted);
  font-size: 14px;
  max-width: 240px;
  margin: 0 auto;
}

.salvia-accordion {
  border-top: 1px solid #e6ecea;
}

.salvia-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #e6ecea;
  background: transparent;
}

.salvia-accordion .accordion-button {
  padding: 23px 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-weight: 800;
  font-size: 17.5px;
}

.salvia-accordion .accordion-button::after {
  background-size: 17px;
}

.salvia-accordion .accordion-body {
  padding: 0 0 23px;
  color: var(--muted);
  font-size: 15.5px;
}

.footer-salvia {
  padding: 70px 0 25px;
  color: #c1d0cb;
  background: #09231f;
}

.footer-salvia .navbar-brand strong {
  color: #fff;
}

.footer-salvia .navbar-brand small {
  color: #93a9a3;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr 1fr;
  gap: 35px;
  padding-bottom: 50px;
}

.footer-main > div:first-child p {
  max-width: 420px;
  color: #93a7a2;
  font-size: 14.5px;
  margin: 0;
}

.footer-main h4 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-main a {
  display: block;
  width: fit-content;
  margin-bottom: 9px;
  color: #93a7a2;
  font-size: 14px;
}

.footer-main a:hover { color: #fff; }

.footer-note {
  display: block;
  margin-top: 14px;
  color: #657c76;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #657c76;
  font-size: 13px;
}

.footer-bottom strong {
  color: #a2b9b2;
}

.footer-bottom > a {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: #d6e7e2;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1500;
}

.floating-whatsapp a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 15px 35px rgba(37,211,102,.28);
  font-size: 24px;
  transition: .25s ease;
}

.floating-whatsapp a:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.03);
}

@media (max-width: 1199.98px) {
  .hero-section {
    min-height: 760px;
  }

  .display-title {
    font-size: 62px;
  }

  .floating-stat-1 { left: -12px; }
  .floating-stat-2 { right: -8px; }

  .module-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 991.98px) {
  .navbar-salvia {
    background: rgba(255,255,255,.95);
  }

  .navbar-collapse {
    padding: 15px 0 5px;
  }

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

  .hero-carousel {
    margin-top: 25px;
    min-height: 460px;
  }

  .device-card,
  .device-image-slide {
    min-height: 460px;
  }

  .visual-main img {
    height: 460px;
  }

  .steps-track {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }

  .step-line {
    display: none;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-orbit {
    opacity: .45;
    right: -90px;
  }
}

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

  .display-title {
    font-size: 50px;
  }

  .hero-copy {
    font-size: 17.5px;
  }

  .hero-section .btn-lg {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
  }

  .hero-carousel {
    min-height: 360px;
  }

  .device-card,
  .device-image-slide {
    min-height: 360px;
    transform: none;
  }

  .dashboard-ui {
    min-height: 320px;
  }

  .dash-sidebar {
    width: 48px;
    gap: 8px;
  }

  .dash-main {
    padding: 13px;
  }

  .kpi-grid {
    gap: 6px;
  }

  .mini-kpi {
    padding: 8px;
  }

  .mini-kpi strong {
    font-size: 14px;
  }

  .dash-panels {
    gap: 6px;
  }

  .dash-chart,
  .dash-list {
    min-height: 165px;
    padding: 10px;
  }

  .fake-chart {
    height: 110px;
  }

  .fake-row {
    padding: 8px 0;
  }

  .device-image-slide img {
    height: 360px;
  }

  .floating-stat {
    display: none;
  }

  .metric {
    min-height: 95px;
  }

  .metric:first-child { border-radius: 16px 0 0 0; }
  .metric:nth-child(2) { border-radius: 0 16px 0 0; }
  .metric:nth-child(3) { border-radius: 0 0 0 16px; }
  .metric:last-child { border-radius: 0 0 16px 0; }

  .metric strong {
    font-size: 25px;
  }

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

  .visual-card {
    right: 10px;
  }

  .benefits-visual {
    min-height: 350px;
  }

  .analytics-card {
    padding: 18px;
  }

  .line-chart {
    height: 170px;
  }

  .pill-two { right: 0; }
  .pill-three { left: 0; }

  .cta-shell {
    min-height: 480px;
    padding: 38px 28px;
  }

  .cta-orbit {
    transform: scale(.72);
    transform-origin: center right;
    right: -130px;
    top: 170px;
  }

  .form-card {
    padding: 20px;
  }

  .steps-track {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  .container {
    --bs-gutter-x: 1.2rem;
  }

  .display-title {
    font-size: 43px;
  }

  .section-title {
    font-size: 38px;
  }

  .hero-section {
    padding-top: 130px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .device-topbar {
    height: 34px;
  }

  .dash-sidebar span:nth-last-child(-n+2) {
    display: none;
  }

  .dash-header h5 {
    font-size: 14px;
  }

  .mini-kpi small {
    font-size: 8px;
  }

  .mini-kpi strong {
    font-size: 11px;
  }

  .mini-kpi .positive {
    font-size: 8px;
  }

  .dash-chart,
  .dash-list {
    min-height: 140px;
  }

  .fake-chart {
    height: 90px;
    gap: 5px;
  }

  .fake-row b {
    font-size: 8px;
  }

  .fake-row small {
    font-size: 7px;
  }

  .image-overlay {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 17px;
  }

  .image-overlay h2,
  .image-overlay h4 {
    font-size: 20px;
  }

  .visual-main img {
    height: 400px;
  }

  .visual-card {
    max-width: 240px;
  }

  .module-banner {
    padding: 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}


/* ==========================================================================
   AJUSTES 2024 — Loader, logotipos, formulario, cobertura y accesibilidad
   ========================================================================== */

/* --------------------------------------------------------------------------
   1) LOADER (se muestra una única vez por visitante)
   -------------------------------------------------------------------------- */
html.loader-active,
html.loader-active body {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: linear-gradient(160deg, #ffffff 0%, #f2fbf8 55%, #e9f8f3 100%);
  transition: opacity .5s ease, visibility .5s ease;
}

html.loader-off .page-loader {
  display: none;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-inner {
  position: relative;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
}

.page-loader-inner img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  animation: loaderPulse 1.6s ease-in-out infinite;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(21, 144, 111, .14);
  border-top-color: var(--salvia);
  animation: loaderSpin 1s linear infinite;
}

.loader-text {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--salvia-dark);
}

.loader-dots i {
  font-style: normal;
  opacity: 0;
  animation: loaderDots 1.2s infinite;
}

.loader-dots i:nth-child(2) { animation-delay: .2s; }
.loader-dots i:nth-child(3) { animation-delay: .4s; }

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.07); }
}

@keyframes loaderDots {
  0%, 100% { opacity: 0; }
  40%      { opacity: 1; }
}

/* --------------------------------------------------------------------------
   2) LOGOTIPOS
   -------------------------------------------------------------------------- */
.navbar-brand {
  padding: 0;
}

.brand-logo {
  width: auto;
  height: 46px;
  transition: height .3s ease;
}

.navbar-salvia.scrolled .brand-logo {
  height: 40px;
}

.brand-logo-footer {
  height: 56px;
}

.footer-studiox {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #657c76;
}

.footer-studiox a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  opacity: .85;
  transition: opacity .25s ease;
}

.footer-studiox a:hover {
  opacity: 1;
}

.studiox-logo {
  width: 100px;
  height: auto;
  max-width: 100px;
}

/* --------------------------------------------------------------------------
   3) ACCESIBILIDAD Y NAVEGACIÓN
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 3000;
  padding: 12px 20px;
  color: #fff;
  background: var(--salvia-dark);
  border-radius: 0 0 12px 0;
  font-weight: 700;
  font-size: 14.5px;
}

.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
  outline: 3px solid rgba(21, 144, 111, .45);
  outline-offset: 2px;
}

/* Títulos convertidos a párrafo / etiquetas semánticas nuevas */
.eyebrow {
  margin-bottom: 20px;
}

.section-kicker {
  margin-bottom: 10px;
}

/* Nota: el estilo de .image-overlay h2 vive junto a la regla original
   (.image-overlay h2, .image-overlay h4) para que la media query de
   ≤575px que la reduce siga ganando en la cascada. */

.benefit-item h3 {
  font-size: 17px;
  margin: 2px 0 3px;
}

.footer-main .footer-title {
  margin-bottom: 16px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   4) SECCIÓN COBERTURA (Argentina + Latinoamérica)
   -------------------------------------------------------------------------- */
.coverage-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(21, 144, 111, .07), transparent 45%),
    radial-gradient(circle at 88% 78%, rgba(111, 91, 231, .06), transparent 45%),
    var(--white);
}

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

.coverage-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.coverage-card p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 20px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.country-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 600;
  transition: .25s ease;
}

.country-grid li:hover {
  border-color: rgba(21, 144, 111, .35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.country-grid i {
  color: var(--salvia);
  font-size: 13px;
}

.coverage-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 22px 0 0;
  padding: 15px 18px;
  border-radius: 16px;
  background: var(--salvia-soft);
  color: #3f6a5e;
  font-size: 14.5px;
}

.coverage-note i {
  margin-top: 3px;
  color: var(--salvia-dark);
}

/* --------------------------------------------------------------------------
   5) FORMULARIO — validación, alertas y estado de envío
   -------------------------------------------------------------------------- */
.form-label .req {
  color: #d9534f;
  font-weight: 800;
}

/* Honeypot: invisible para personas, alcanzable por bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field-error {
  display: none;
  margin-top: 6px;
  color: #d9534f;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
}

.field-error.show {
  display: block;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #e39c99;
  background-image: none;
  padding-right: 14px;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  border-color: #d9534f;
  box-shadow: 0 0 0 .2rem rgba(217, 83, 79, .12);
}

.char-counter {
  flex-shrink: 0;
  margin-top: 6px;
  color: #98a2a8;
  font-size: 11.5px;
  white-space: nowrap;
}

.form-alert {
  display: none;
  padding: 13px 16px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
}

.form-alert.show {
  display: block;
}

.form-alert.is-error {
  color: #a53f3b;
  background: #fdeceb;
  border: 1px solid #f5d2d0;
}

.form-alert.is-success {
  color: #1d6a54;
  background: var(--salvia-soft);
  border: 1px solid #c6ebdd;
}

#btnEnviar {
  position: relative;
}

#btnEnviar .btn-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

#btnEnviar.is-loading .btn-label {
  display: none;
}

#btnEnviar.is-loading .btn-loading {
  display: inline-flex;
}

#btnEnviar:disabled {
  opacity: .75;
  cursor: not-allowed;
}

.spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  animation: loaderSpin .7s linear infinite;
}

.recaptcha-wrap {
  display: flex;
  justify-content: flex-start;
}

.recaptcha-wrap .g-recaptcha {
  transform-origin: 0 0;
}

.form-note {
  margin: 0;
}

/* --------------------------------------------------------------------------
   6) RESPONSIVE — ajustes de los bloques nuevos
   -------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .country-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Los textos de botones y del menú nunca deben partirse en dos líneas */
.btn,
.navbar-nav .nav-link,
.phone-link {
  white-space: nowrap;
}

@media (max-width: 1399.98px) {
  /* Compactamos el menú y ocultamos el teléfono para que entre en una línea */
  .navbar-nav .nav-link {
    padding: 10px 8px !important;
    font-size: 14px;
  }

  .phone-link {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .phone-link {
    display: inline-flex;
  }

  .navbar-nav .nav-link {
    padding: 10px 0 !important;
    font-size: 17px;
  }

  .brand-logo {
    height: 42px;
  }

  .navbar-salvia.scrolled .brand-logo {
    height: 38px;
  }

  .coverage-card {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .page-loader-inner {
    width: 110px;
    height: 110px;
  }

  .page-loader-inner img {
    width: 64px;
    height: 64px;
  }

  .country-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .country-grid li {
    padding: 11px 12px;
    font-size: 13.5px;
  }

  .brand-logo-footer {
    height: 48px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
  }

  /* El widget de reCAPTCHA (302px) no entra en pantallas chicas */
  .recaptcha-wrap .g-recaptcha {
    transform: scale(.86);
  }

  .recaptcha-wrap {
    height: 66px;
    overflow: hidden;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    height: 38px;
  }

  .navbar-salvia.scrolled .brand-logo {
    height: 34px;
  }

  .form-card {
    padding: 18px 16px;
    border-radius: 22px;
  }

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

  .coverage-note {
    font-size: 13.5px;
    padding: 13px 15px;
  }

  .recaptcha-wrap .g-recaptcha {
    transform: scale(.78);
  }

  .recaptcha-wrap {
    height: 60px;
  }

  .studiox-logo {
    width: 110px;
  }
}

/* --------------------------------------------------------------------------
   7) PREFERENCIA DE MOVIMIENTO REDUCIDO
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
