:root {
  --lime: #00FFB9;
  --lime-light: #b3f5dc;
  --mint: #00FFB9;
  --dark: #0a0a0a;
  --dark-card: #141414;
  --gray-text: #9ca3af;
  --white: #ffffff;
  --whatsapp: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Golos Text', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

.landing-page {
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}

.landing-page h1, .landing-page h2, .landing-page h3, .landing-page h4, .landing-page h5, .landing-page h6, .landing-page p {
  color: inherit;
}

.landing-page a { color: inherit; text-decoration: none; }
.landing-page a:hover { text-decoration: none; }

/* ============ UTILITIES ============ */
.gradient-text {
  background: linear-gradient(to right, var(--lime) 12.5%, var(--lime-light) 53.846%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-lime { color: var(--lime); }
.text-mint { color: var(--mint); }
.fw-400 { font-weight: 400; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }

/* ============ SCROLL ANIMATIONS ============ */
[data-anim] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="up"]    { transform: translateY(50px); }
[data-anim="down"]  { transform: translateY(-40px); }
[data-anim="left"]  { transform: translateX(-60px); }
[data-anim="right"] { transform: translateX(60px); }
[data-anim="scale"] { transform: scale(0.88); }
[data-anim="fade"]  { transform: none; }
[data-anim].is-visible {
  opacity: 1;
  transform: none;
}

/* ============ HERO KEYFRAMES ============ */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroBar {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: none; }
}
@keyframes blink-smooth {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes float-bubble {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1) translateY(-15px); }
}
@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 0.8; }
  80%, 100% { transform: scale(3); opacity: 0; }
}

/* ============ HERO SECTION ============ */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.85);
  z-index: -2;
}

.hero-graph-wrap {
  position: absolute;
  top: 35%;
  left: 0;
  width: 100%;
  height: 500px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.9;
}

.hero-graph-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-graph-svg path {
  filter: drop-shadow(0 0 10px rgba(0, 255, 185, 0.7));
}

.graph-bubble {
  opacity: 0;
}

.graph-bubble circle {
  stroke-dasharray: 2;
}

.label-pill {
  fill: #00FFB9;
  rx: 10;
}

.label-text {
  fill: #013220;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.label-title {
  fill: white;
  font-size: 18px;
  font-weight: 600;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.graph-particle {
  opacity: 0.3;
  fill: #00FFB9;
  font-size: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

.hero-inner {
  position: relative;
  z-index: 10;
  padding: 160px 106px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-cta {
  align-self: flex-start;
  margin-top: 50px;
  background-color: var(--mint);
  color: #013220;
  border: none;
  padding: 20px 50px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 25px rgba(0, 255, 185, 0.3);
  display: inline-block;
}

.hero-cta:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 255, 185, 0.5);
  filter: brightness(1.1);
}

.hero-cta:active {
  transform: translateY(-2px) scale(1);
}

.hero-anim {
  opacity: 0;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-anim-h1-1  { animation: heroUp 1s 0.3s both; display: inline-block; }
.hero-anim-h1-2  { animation: heroUp 1s 0.5s both; display: inline-block; }
.hero-anim-sub   { animation: heroUp 0.9s 0.7s both; }
.hero-anim-cta   { animation: heroUp 0.9s 0.8s both; }
.hero-anim-bar   { animation: heroBar 0.8s 0.9s both; }

/* Nav */
.hero-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 106px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
}

.hero-nav.nav-scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  padding: 15px 106px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 255, 185, 0.1);
}

.hero-nav.nav-scrolled .nav-logo {
  height: 50px;
}

.nav-logo {
  height: 70px;
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-pill {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 8px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
  display: inline-flex;
  align-items: center;
}

.nav-pill:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.nav-pill-enter {
  margin-left: 6px;
  border-color: var(--mint);
  background: var(--mint);
  color: #013220;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 255, 185, 0.2);
}

.nav-pill-enter:hover {
  background: var(--lime-light);
  border-color: var(--lime-light);
  color: #013220;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 185, 0.4);
}

/* Hero Text */
.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  padding-bottom: 120px;
}

.hero-title {
  font-size: 130px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: white;
}

.hero-title .typed-content {
  display: inline-block;
  min-height: 1.8em;
}

.hero-subtitle {
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 48px;
  letter-spacing: 8px;
  text-transform: uppercase;
  min-height: 1.2em;
  display: flex;
  align-items: center;
}

.prompt-cursor {
  display: inline-block;
  width: 6px;
  height: 0.8em;
  background: var(--mint);
  margin-left: 8px;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(0, 255, 185, 0.5);
}

.prompt-cursor.blinking {
  animation: blink-smooth 1s infinite;
}

/* Bottom Bar */
.hero-bottom-bar {
  background: var(--mint);
  border-radius: 20px 20px 0 0;
  padding: 16px 40px;
  margin: auto -106px 0;
}

.hero-bottom-bar p {
  color: black;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin: 0;
}

/* ============ SECTION API ============ */
.section-api {
  background: var(--dark);
  padding: 100px 106px;
}

.api-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.api-image-card {
  flex: 0 0 45%;
  background: linear-gradient(to bottom, var(--dark-card) 11.887%, #0f0e0e 68.179%);
  border: 1px solid #9598a0;
  border-radius: 50px;
  padding: 20px;
  display: flex;
  align-items: center;
}

.api-image-inner {
  border-radius: 35px;
  overflow: hidden;
  width: 100%;
  height: 320px;
}

.api-image-inner img { width: 100%; height: 100%; object-fit: cover; }

.api-middle {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.api-heading { max-width: 600px; }
.api-heading h2 { font-size: 45px; line-height: 1.1; margin: 0; }

.api-desc { flex: 1; padding-top: 10px; }
.api-desc p {
  font-size: 24px;
  color: var(--gray-text);
  line-height: 1.4;
  margin: 0;
}

.api-cards {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.api-cards .feature-card {
  flex: 1 1 calc(50% - 10px);
  background: rgba(30, 30, 30, 0.9);
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.api-cards .feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 185, 0.2);
}

.api-cards .feature-card h3 {
  color: white;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
}

.api-cards .feature-card p {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.api-section-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.api-cta {
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(0, 255, 185, 0.2);
  border-radius: 25px;
  padding: 20px 35px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.api-cta .cta-content {
  display: flex;
  flex-direction: column;
}

.api-cta .cta-q {
  color: white;
  font-size: 19px;
  font-weight: 800;
}

.api-cta .cta-t {
  color: var(--gray-text);
  font-size: 15px;
}

.api-cta-btn {
  background: var(--mint);
  color: var(--dark);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.api-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 255, 185, 0.4);
}

/* ============ SECTION COVERAGE (GLOBE) ============ */
.section-coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: radial-gradient(ellipse at 30% 50%, #0d1a14 0%, var(--dark) 70%);
  position: relative;
}

.coverage-globe-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  min-height: 100vh;
}

#globe-container {
  width: 100%;
  height: 80vh;
}

.coverage-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
  background: linear-gradient(to left, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.85) 30%, rgba(10,10,10,0.3) 50%, transparent 70%);
}

.coverage-content {
  position: relative;
  z-index: 10;
  padding: 100px 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.coverage-content .coverage-inner {
  max-width: 520px;
}

.country-domain-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.country-domain-list li a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.country-domain-list li a:hover {
  color: var(--mint);
  background: rgba(0, 255, 185, 0.06);
  padding-left: 20px;
}

.country-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0, 255, 185, 0.5);
  transition: all 0.3s ease;
}

.country-domain-list li a:hover .country-dot {
  box-shadow: 0 0 14px rgba(0, 255, 185, 0.8);
  transform: scale(1.2);
}

.coverage-title {
  color: var(--mint);
  font-size: 30px;
  font-weight: 900;
  margin: 0 0 10px;
  letter-spacing: 2px;
}

.coverage-subtitle {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 40px;
  color: white;
}

.coverage-main-text {
  font-size: 24px;
  line-height: 1.5;
  color: #e5e7eb;
  margin-bottom: 50px;
  font-weight: 300;
  max-width: 90%;
}

.coverage-card {
  background: rgba(60, 60, 60, 0.5);
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.coverage-card .coverage-card-title {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px;
}

.coverage-card .coverage-card-countries {
  color: var(--mint);
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
}

.coverage-card:last-of-type {
  opacity: 0.8;
  background: rgba(40, 40, 40, 0.4);
}

.coverage-footer-note {
  font-size: 22px;
  color: var(--gray-text);
  margin-top: 40px;
  font-weight: 300;
}

.coverage-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  color: white;
}

.dot-white { width: 8px; height: 8px; background: white; border-radius: 50%; flex-shrink: 0; }
.dot-mint { width: 8px; height: 8px; background: var(--mint); border-radius: 50%; flex-shrink: 0; }

/* ============ SECTION MONITORING ============ */
.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-overlay-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 40%, rgba(10,10,10,0.3) 100%);
  z-index: 1;
}

.section-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.92) 40%, rgba(10,10,10,0.1) 80%);
  z-index: 1;
}

.section-monitoring {
  position: relative;
  min-height: 900px;
  overflow: hidden;
}

.monitoring-inner {
  position: relative;
  z-index: 2;
  padding: 50px 106px 80px;
  min-height: 900px;
  display: flex;
  flex-direction: column;
}

.monitoring-logo {
  display: flex;
  justify-content: flex-end;
  margin-bottom: auto;
  padding-top: 20px;
}

.monitoring-logo img { height: 60px; }

.monitoring-content {
  text-align: center;
  margin-top: auto;
}

.monitoring-content h2 {
  font-size: 55px;
  line-height: 1.1;
  margin: 0 0 20px;
}

.monitoring-content .text-smaller { font-size: 50px; }

.monitoring-desc {
  color: rgba(255,255,255,0.8);
  font-size: 28px;
  margin: 0 0 50px;
}

.monitoring-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============ SECTION PAYMENTS ============ */
.section-payments {
  background: #0a0a0a;
  padding: 100px 106px;
  position: relative;
  overflow: hidden;
}

.payments-container {
  max-width: 1400px;
  margin: 0 auto;
}

.payments-header {
  text-align: center;
  margin-bottom: 60px;
}

.payments-header .payments-tag {
  color: var(--mint);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.payments-header h2 {
  font-size: 55px;
  font-weight: 900;
  margin: 0 0 15px;
}

.payments-header p {
  color: var(--gray-text);
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto;
}

.payments-tabs-wrap {
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.payments-tabs-wrap::-webkit-scrollbar { display: none; }

.country-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  min-width: max-content;
}

.country-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.country-tab .country-flag-text {
  font-size: 24px;
}

.country-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--mint);
}

.country-tab.active {
  background: var(--mint);
  color: #013220;
  border-color: var(--mint);
  box-shadow: 0 4px 15px rgba(0, 255, 185, 0.3);
}

.payments-content-wrap {
  min-height: 400px;
}

.payment-content-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.payment-pending {
  text-align: center;
  padding: 60px 20px;
}

.payment-pending p {
  font-size: 24px;
  color: var(--gray-text);
  font-weight: 300;
}

.payment-description {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-description small {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-text);
  max-width: 1000px;
  font-style: italic;
  opacity: 0.7;
}

.payment-types-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  padding: 8px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  width: fit-content;
  overflow-x: auto;
  scrollbar-width: none;
}

.payment-types-bar::-webkit-scrollbar { display: none; }

.payment-types-bar .type-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 40px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.6);
}

.payment-types-bar .type-tab i { font-size: 18px; }
.payment-types-bar .type-tab span { font-size: 14px; font-weight: 700; }

.payment-types-bar .type-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.payment-types-bar .type-tab.active {
  background: var(--mint);
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 255, 185, 0.4);
}

.payment-methods-wrapper {
  position: relative;
  padding: 0 80px;
  margin-top: 40px;
  width: 100%;
}

.payment-methods-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scrollbar-width: none;
}

.payment-methods-carousel::-webkit-scrollbar { display: none; }

.payment-methods-carousel .method-card {
  flex: 0 0 calc(20% - 16px);
  scroll-snap-align: start;
  min-width: 180px;
  background: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  box-shadow: none;
}

.payment-methods-carousel .method-card .method-logo-box {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 12px;
  padding: 8px;
  transition: all 0.4s ease;
}

.payment-methods-carousel .method-card .method-logo-box img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

.payment-methods-carousel .method-card .method-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  opacity: 0.9;
}

.payment-methods-carousel .method-card:hover {
  background: #ffffff;
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 255, 185, 0.4);
}

.payment-methods-carousel .method-card:hover .method-logo-box {
  transform: scale(1.08);
}

.payment-methods-carousel .method-card:hover .method-name {
  color: var(--mint);
  opacity: 1;
}

.payment-methods-carousel .no-methods {
  padding: 40px;
  text-align: center;
  width: 100%;
  color: #6b7280;
  font-style: italic;
}

.carousel-nav-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  font-size: 20px;
}

.carousel-nav-btn:hover:not(:disabled) {
  background: var(--mint);
  border-color: var(--mint);
  color: #000;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 255, 185, 0.3);
}

.carousel-nav-btn:disabled {
  opacity: 0.3;
  background: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
}

.carousel-nav-btn.prev { left: 5px; }
.carousel-nav-btn.next { right: 5px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: var(--mint);
  width: 24px;
  border-radius: 10px;
}

.carousel-dots .dot:hover {
  background: rgba(0, 255, 185, 0.4);
}

.payments-footer-section {
  margin-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.payments-footer-section .footer-text {
  font-size: 19px;
  color: var(--gray-text);
  max-width: 600px;
}

.payments-footer-section .payments-cta {
  background: var(--mint);
  color: #013220;
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payments-footer-section .payments-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 185, 0.4);
  filter: brightness(1.1);
}

/* ============ SECTION SOLUTIONS ============ */
.section-solutions {
  background: var(--dark);
  padding: 100px 106px;
}

.solutions-header {
  text-align: center;
  margin-bottom: 60px;
}

.solutions-header h2 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 15px;
}

.solutions-header p {
  color: var(--gray-text);
  font-size: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.solution-card {
  background: linear-gradient(to bottom, var(--dark-card) 11.887%, #0f0e0e 68.179%);
  border: 1px solid #9598a0;
  border-radius: 50px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.solution-label {
  color: #d9d9d9;
  text-align: center;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.solution-label .solution-title {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: white;
  line-height: 1;
}

.solution-label .label-tag {
  font-size: 16px;
  opacity: 0.7;
  font-weight: 400;
  color: var(--gray-text);
}

.solution-image {
  border-radius: 44px;
  overflow: hidden;
  height: 264px;
}

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

.solution-heading {
  color: #d9d9d9;
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
  text-align: center;
}

.solution-desc {
  color: #d9d9d9;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.info-row {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 18px 0;
}

.info-row p {
  color: white;
  font-size: 18px;
  text-align: center;
  margin: 0;
}

.solution-cta {
  background: var(--lime);
  color: black;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 18px;
  padding: 15px 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-top: auto;
}

.solution-cta:hover {
  background: #b3f5dc;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 185, 0.4);
}

/* ============ BUILDINGS BANNER ============ */
.buildings-banner {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  margin: 40px 106px;
  height: 374px;
}

.buildings-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buildings-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 100%);
}

/* ============ SECTION SECURITY ============ */
.section-security {
  position: relative;
  min-height: 900px;
  overflow: hidden;
}

.security-inner {
  position: relative;
  z-index: 2;
  padding: 100px 106px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.security-flex {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.security-content {
  max-width: 55%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.security-logo {
  height: 50px;
  margin-bottom: 30px;
}

.security-title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 10px;
}

.security-subtitle {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 50px;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin: 40px 0 60px;
  width: 100%;
  max-width: 900px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.stat-box {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
}

.stat-value {
  color: var(--mint);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: -1px;
}

.stat-label {
  color: var(--gray-text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin: 0;
}

.security-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  width: 100%;
}

.security-cards-grid .feature-card {
  text-align: left;
  padding: 30px;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.security-cards-grid .feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 185, 0.2);
}

.security-cards-grid .feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--mint);
}

.security-cards-grid .feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.security-footer-cta {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(0, 255, 185, 0.05);
  border: 1px solid rgba(0, 255, 185, 0.2);
  border-radius: 20px;
  padding: 25px 40px;
  margin-top: 40px;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
}

.security-footer-cta .cta-q {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: white;
  max-width: 300px;
}

.security-cta-btn {
  background: var(--mint);
  color: var(--dark);
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.security-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 185, 0.4);
}

/* ============ FAQ SECTION ============ */
.section-faq {
  background-color: #000;
  color: #fff;
  padding: 80px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 10;
  font-family: 'Inter', sans-serif;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.faq-left {
  flex: 0 0 320px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.faq-left .faq-main-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: #00FFB9;
  margin: -16px 0 12px 0;
  line-height: 1;
  letter-spacing: -0.03em;
  filter: drop-shadow(0 0 10px rgba(0, 255, 185, 0.1));
  text-transform: none;
}

.faq-left .faq-subtitle {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #fff;
}

.faq-left .faq-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #00FFB9;
  opacity: 0.75;
  max-width: 300px;
}

.faq-right {
  flex: 1;
  max-width: 750px;
  padding-top: 10vh;
}

.faq-accordion {
  border-top: 1px solid rgba(0, 255, 185, 0.4);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 255, 185, 0.4);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: rgba(0, 255, 185, 0.02);
}

.faq-item.active {
  background-color: rgba(0, 255, 185, 0.03);
}

.faq-item.active .faq-toggle {
  background: #00FFB9;
  color: #000;
  transform: scale(0.95);
}

.faq-item.active .faq-header .faq-question {
  color: #00FFB9;
}

.faq-item.active .faq-body {
  max-height: 500px;
  padding-bottom: 30px;
  opacity: 1;
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 22px 2em;
  cursor: pointer;
  text-align: left;
  outline: none;
  transition: all 0.3s ease;
}

.faq-header .faq-question {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  flex: 1;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.faq-header:hover .faq-question {
  color: #00FFB9;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  background: #00FFB9;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 400;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  line-height: 1;
  padding-bottom: 3px;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 2em;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  color: #00FFB9;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 95%;
  font-weight: 400;
}

.faq-cta-row {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 255, 185, 0.1);
  padding-top: 30px;
}

.faq-cta-row p {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.faq-btn {
  background: #00FFB9;
  color: #000;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.faq-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 255, 185, 0.3);
}

/* ============ FOOTER ============ */
.landing-footer {
  background: #050505;
  padding: 80px 106px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 60px;
}

.footer-brand { flex: 1; }

.footer-brand .footer-logo {
  height: 45px;
  opacity: 0.9;
}

.footer-links-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul li a {
  color: var(--gray-text);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--mint);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-legal .legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal .legal-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal .legal-links a:hover {
  color: white;
}

.footer-legal .legal-links .dot {
  width: 4px;
  height: 4px;
  background: #374151;
  border-radius: 50%;
}

.footer-legal .copyright {
  color: #4b5563;
  font-size: 14px;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--mint);
  color: #013220;
  transform: translateY(-5px);
  border-color: var(--mint);
  box-shadow: 0 10px 20px rgba(0, 255, 185, 0.2);
}

/* ============ WHATSAPP FAB ============ */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ============ GLOBE MAP ============ */
#globe-container { pointer-events: auto; }

.map-label {
  padding: 6px 14px;
  background: rgba(0, 30, 25, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 185, 0.4);
  border-radius: 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
  pointer-events: none !important;
  white-space: nowrap;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: scale(0.8) translateY(0);
  visibility: hidden;
}

.map-label.visible {
  opacity: 1;
  transform: scale(1) translateY(-60px);
  visibility: visible;
}

.marker-trigger {
  width: 30px;
  height: 30px;
  background: transparent;
  cursor: pointer;
  pointer-events: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.marker-trigger .pulse {
  width: 8px;
  height: 8px;
  background: #00FFB9;
  border-radius: 50%;
  box-shadow: 0 0 10px #00FFB9;
  position: relative;
}

.marker-trigger .pulse::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 2px solid #00FFB9;
  border-radius: 50%;
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1280px) {
  .hero-nav { padding: 30px 60px; }
  .hero-nav.nav-scrolled { padding: 10px 60px; }
  .hero-inner { padding: 120px 60px 30px; }
  .hero-title { font-size: 90px; }
  .hero-subtitle { font-size: 40px; }
  .hero-bottom-bar { margin: auto -60px 0; }
  .section-api,
  .coverage-content,
  .monitoring-inner,
  .section-solutions,
  .section-payments,
  .security-inner,
  .landing-footer { padding-left: 60px; padding-right: 60px; }
  .buildings-banner { margin-left: 60px; margin-right: 60px; }
  .api-image-inner { height: 350px; }
  .api-heading h2 { font-size: 36px; }
  .api-desc p { font-size: 22px; }
  .coverage-desc { font-size: 38px; }
  .coverage-providers { font-size: 28px; }
  .solutions-header h2 { font-size: 42px; }
  .solution-label .solution-title { font-size: 30px; }
  .solution-heading { font-size: 30px; }
}

@media (max-width: 1024px) {
  .hero-nav { padding: 20px 30px; }
  .hero-nav.nav-scrolled { padding: 10px 30px; }
  .hero-inner { padding: 100px 30px 20px; }
  .hero-title { font-size: 70px; }
  .hero-subtitle { font-size: 32px; }
  .hero-bottom-bar { margin: auto -30px 0; }
  .hero-bottom-bar p { font-size: 20px; }
  .nav-links { display: none; }
  .section-api,
  .coverage-content,
  .monitoring-inner,
  .section-solutions,
  .section-payments,
  .security-inner,
  .landing-footer { padding-left: 30px; padding-right: 30px; }
  .buildings-banner { margin-left: 30px; margin-right: 30px; }
  .api-content { flex-direction: column; gap: 30px; }
  .api-middle { flex-direction: column; gap: 20px; }
  .api-cards { flex-direction: column; }
  .api-cards .feature-card { flex: 1 1 auto; }
  .monitoring-cards { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .security-cards-grid { grid-template-columns: 1fr; }
  .coverage-content { justify-content: center; }
  .coverage-subtitle { font-size: 32px; }
  .monitoring-content h2 { font-size: 36px; }
  .monitoring-content .text-smaller { font-size: 32px; }
  .security-title { font-size: 42px; }
  .security-subtitle { font-size: 36px; }
  .stat-value { font-size: 36px; }
  .section-payments { padding: 80px 30px; }
  .payments-header h2 { font-size: 42px; }
  .country-tabs { justify-content: flex-start; }
  .faq-container { flex-direction: column; gap: 40px; padding: 0 25px; }
  .faq-left { position: static; flex: 1; }
  .footer-top { flex-direction: column; gap: 50px; }
  .footer-links-grid { width: 100%; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 50px; }
  .hero-subtitle { font-size: 24px; }
  .hero-text { padding-bottom: 80px; }
  .hero-bottom-bar p { font-size: 16px; }
  .api-image-inner { height: 250px; }
  .api-heading h2 { font-size: 28px; }
  .api-desc p { font-size: 18px; }
  .coverage-subtitle { font-size: 24px; }
  .coverage-title { font-size: 30px; }
  .solutions-header h2 { font-size: 28px; }
  .solution-label .solution-title { font-size: 24px; }
  .solution-heading { font-size: 24px; }
  .solution-card { border-radius: 30px; padding: 24px; }
  .buildings-banner { margin: 20px; height: 200px; border-radius: 20px; }
  .security-title { font-size: 32px; }
  .security-subtitle { font-size: 28px; margin-bottom: 30px; }
  .stats-grid { flex-wrap: wrap; }
  .stat-box { flex: 1 1 50%; padding: 10px; }
  .stat-box:not(:last-child)::after { display: none; }
  .section-payments { padding: 60px 20px; }
  .payments-header h2 { font-size: 32px; }
  .payments-header p { font-size: 18px; }
  .payment-methods-wrapper { padding: 0 40px; }
  .payment-methods-carousel .method-card { flex: 0 0 calc(50% - 10px); min-width: 140px; }
  .faq-container { padding: 0 20px; }
  .faq-left .faq-main-title { font-size: 2.2rem; }
  .faq-header { padding: 15px 1.2em; }
  .faq-header .faq-question { font-size: 0.95rem; }
  .faq-toggle { width: 32px; height: 32px; font-size: 1.2rem; }
  .faq-body { padding: 0 1.2em; }
  .faq-right { padding-top: 20px; }
  .faq-answer { font-size: 0.9rem; }
  .faq-cta-row { flex-direction: column; gap: 20px; text-align: center; }
  .faq-cta-row p { font-size: 1rem; }
  .landing-footer { padding: 60px 30px 30px; }
  .footer-links-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { align-items: center; }
  .footer-legal .legal-links { flex-wrap: wrap; justify-content: center; }
  .security-content { max-width: 100%; }
  .security-flex { justify-content: center; }
  .security-footer-cta { flex-direction: column; text-align: center; gap: 20px; }
  .security-footer-cta .cta-q { max-width: 100%; }
}
