/* ==========================================
   OMAX TELECOM LANDING PAGE - DARK THEME
   CONVERTED TO MATCH OMAXTELECOM.COM DESIGN
   ========================================== */

/* ==========================================
   CUSTOM FONTS
   ========================================== */

/* font-face removed - loaded globally */

/* font-face removed - loaded globally */

/* font-face removed - loaded globally */

/* font-face removed - loaded globally */

/* ==========================================
   GLOBAL STYLES & RESET
   ========================================== */

.wl-page *,
.wl-page *::before,
.wl-page *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* html { -- scoped out */
/*   scroll-behavior: smooth; */
/*   -webkit-font-smoothing: antialiased; */
/*   -moz-osx-font-smoothing: grayscale; */
/* } */

.wl-page {
  font-family: 'Brockmann', 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background-color: #01010c;
  color: #ffffff;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

.wl-page h1,
.wl-page h2,
.wl-page h3,
.wl-page h4,
.wl-page h5,
.wl-page h6 {
  font-family: 'Brockmann', 'Inter', system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

.wl-page h1 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  line-height: 1.1;
}

.wl-page h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.15;
}

.wl-page h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.wl-page h4 {
  font-size: 1.25rem;
}

.wl-page h5 {
  font-size: 1.125rem;
}

.wl-page h6 {
  font-size: 1rem;
}

.wl-page p {
  line-height: 1.7;
}

.wl-page a {
  color: #a070ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.wl-page a:hover {
  color: #9900ff;
}

.wl-page strong,
.wl-page b {
  font-weight: 600;
}

.wl-page em,
.wl-page i {
  font-style: italic;
}

/* ==========================================
   CONTAINER & SECTION UTILITIES
   ========================================== */

.wl-page .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .wl-page .container {
    padding: 0 1rem;
  }
}

.wl-page .section {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.wl-page .section-white {
  background-color: transparent;
}

.wl-page .section-gray {
  background-color: transparent;
}

/* ==========================================
   FLEXBOX & GRID UTILITIES
   ========================================== */

.wl-page .flex {
  display: flex;
}

.wl-page .flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wl-page .flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wl-page .flex-col {
  flex-direction: column;
}

.wl-page .flex-wrap {
  flex-wrap: wrap;
}

.wl-page .items-center {
  align-items: center;
}

.wl-page .items-start {
  align-items: flex-start;
}

.wl-page .justify-center {
  justify-content: center;
}

.wl-page .justify-between {
  justify-content: space-between;
}

.wl-page .gap-1 { gap: 0.5rem; }
.wl-page .gap-2 { gap: 1rem; }
.wl-page .gap-3 { gap: 1.5rem; }
.wl-page .gap-4 { gap: 2rem; }
.wl-page .gap-5 { gap: 2.5rem; }
.wl-page .gap-6 { gap: 3rem; }
.wl-page .gap-8 { gap: 4rem; }

.wl-page .grid {
  display: grid;
  gap: 1.5rem;
}

.wl-page .grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .wl-page .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wl-page .grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .wl-page .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wl-page .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wl-page .grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .wl-page .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wl-page .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================
   SPACING UTILITIES
   ========================================== */

.wl-page .p-1 { padding: 0.5rem; }
.wl-page .p-2 { padding: 1rem; }
.wl-page .p-3 { padding: 1.5rem; }
.wl-page .p-4 { padding: 2rem; }
.wl-page .p-6 { padding: 3rem; }
.wl-page .p-8 { padding: 2rem; }
.wl-page .p-12 { padding: 3rem; }

.wl-page .px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.wl-page .px-2 { padding-left: 1rem; padding-right: 1rem; }
.wl-page .px-4 { padding-left: 2rem; padding-right: 2rem; }
.wl-page .px-6 { padding-left: 3rem; padding-right: 3rem; }
.wl-page .px-8 { padding-left: 2rem; padding-right: 2rem; }

.wl-page .py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.wl-page .py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.wl-page .py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.wl-page .py-6 { padding-top: 3rem; padding-bottom: 3rem; }
.wl-page .py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.wl-page .py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.wl-page .py-32 { padding-top: 8rem; padding-bottom: 8rem; }

.wl-page .pt-4 { padding-top: 2rem; }
.wl-page .pb-4 { padding-bottom: 2rem; }
.wl-page .mt-2 { margin-top: 1rem; }
.wl-page .mt-4 { margin-top: 2rem; }
.wl-page .mb-2 { margin-bottom: 1rem; }
.wl-page .mb-4 { margin-bottom: 2rem; }
.wl-page .mb-12 { margin-bottom: 3rem; }

/* ==========================================
   TEXT UTILITIES
   ========================================== */

.wl-page .text-center {
  text-align: center;
}

.wl-page .text-left {
  text-align: left;
}

.wl-page .text-right {
  text-align: right;
}

.wl-page .text-white {
  color: #ffffff;
}

.wl-page .text-dark {
  color: #ffffff;
}

.wl-page .text-gray {
  color: rgba(255, 255, 255, 0.75);
}

.wl-page .text-gray-600 {
  color: rgba(255, 255, 255, 0.85);
}

.wl-page .text-gray-500 {
  color: rgba(255, 255, 255, 0.62);
}

.wl-page .text-primary {
  color: #a070ff;
}

.wl-page .text-violet {
  color: #a070ff;
}

.wl-page .text-orange {
  color: #f39100;
}

.wl-page .text-muted {
  color: rgba(255, 255, 255, 0.62);
}

.wl-page .text-sm {
  font-size: 0.875rem;
}

.wl-page .text-lg {
  font-size: 1.125rem;
}

.wl-page .text-xl {
  font-size: 1.25rem;
}

.wl-page .text-2xl {
  font-size: 1.5rem;
}

.wl-page .text-3xl {
  font-size: 1.875rem;
}

.wl-page .text-4xl {
  font-size: 2.25rem;
}

.wl-page .text-5xl {
  font-size: 3rem;
}

.wl-page .text-6xl {
  font-size: 3.75rem;
}

.wl-page .text-7xl {
  font-size: 4.5rem;
}

.wl-page .font-bold {
  font-weight: 700;
}

.wl-page .font-semibold {
  font-weight: 600;
}

.wl-page .font-medium {
  font-weight: 500;
}

.wl-page .font-light {
  font-weight: 300;
}

/* ==========================================
   DISPLAY & VISIBILITY UTILITIES
   ========================================== */

.wl-page .hidden {
  display: none !important;
}

.wl-page .block {
  display: block;
}

.wl-page .inline {
  display: inline;
}

.wl-page .inline-block {
  display: inline-block;
}

.wl-page .opacity-50 {
  opacity: 0.5;
}

.wl-page .opacity-75 {
  opacity: 0.75;
}

.wl-page .opacity-80 {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .wl-page .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .wl-page .hidden-desktop {
    display: none !important;
  }
}

/* ==========================================
   BORDER & RADIUS UTILITIES
   ========================================== */

.wl-page .border {
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.wl-page .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.wl-page .border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.wl-page .border-2 {
  border: 2px solid rgba(255, 255, 255, 0.13);
}

.wl-page .rounded {
  border-radius: 0.5rem;
}

.wl-page .rounded-lg {
  border-radius: 1rem;
}

.wl-page .rounded-2xl {
  border-radius: 1.25rem;
}

.wl-page .rounded-3xl {
  border-radius: 1.5rem;
}

.wl-page .rounded-full {
  border-radius: 9999px;
}

/* ==========================================
   BACKGROUND UTILITIES
   ========================================== */

.wl-page .bg-white {
  background-color: transparent;
}

.wl-page .bg-gray {
  background-color: transparent;
}

.wl-page .bg-gray-50 {
  background-color: transparent;
}

.wl-page .bg-primary {
  background-color: #a070ff;
}

.wl-page .bg-orange {
  background-color: #f39100;
}

.wl-page .bg-violet {
  background-color: #a070ff;
}

/* ==========================================
   SHADOW UTILITIES
   ========================================== */

.wl-page .shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
}

.wl-page .shadow-lg {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.wl-page .shadow-xl {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.wl-page .shadow-2xl {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   BUTTON STYLES
   ========================================== */

.wl-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
  white-space: nowrap;
}

.wl-page .btn-primary {
  background-color: #f39100;
  color: #ffffff;
}

.wl-page .btn-primary:hover {
  background-color: #d97f00;
  color: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(243, 145, 0, 0.3);
}

.wl-page .btn-primary:active {
  transform: scale(1);
}

.wl-page .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.wl-page .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.wl-page .btn-cta {
  background-color: #f39100;
  color: #01010c;
}

.wl-page .btn-cta:hover {
  background-color: #e08500;
  color: #01010c;
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(243, 145, 0, 0.3);
}

.wl-page .btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.wl-page .btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.wl-page .btn-block {
  width: 100%;
}

/* ==========================================
   CARD STYLES
   ========================================== */

.wl-page .card {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wl-page .card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.wl-page .card-md {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wl-page .card-md:hover {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.wl-page .card-lg {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wl-page .card-lg:hover {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-8px);
}

/* ==========================================
   ICON CONTAINER STYLES
   ========================================== */

.wl-page .icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: #a070ff;
  color: #ffffff;
  border-radius: 0.75rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.wl-page .icon-container-sm {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.25rem;
}

.wl-page .icon-container-lg {
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
}

.wl-page .icon-container-secondary {
  background-color: #f39100;
  color: #01010c;
}

.wl-page .icon-container:hover {
  background-color: #a070ff;
  transform: scale(1.1);
}

/* ==========================================
   BADGE STYLES
   ========================================== */

.wl-page .badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wl-page .badge-primary {
  background-color: #a070ff;
  color: #ffffff;
}

.wl-page .badge-orange {
  background-color: #f39100;
  color: #01010c;
}

.wl-page .badge-light {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f39100;
}

.wl-page .badge-outline {
  background-color: transparent;
  color: #a070ff;
  border: 1px solid #a070ff;
}

.wl-page .badge-gradient {
  background: linear-gradient(135deg, #a070ff, #f39100);
  color: #01010c;
}

/* ==========================================
   FORM INPUT STYLES
   ========================================== */

.wl-page input[type="text"],
.wl-page input[type="email"],
.wl-page input[type="password"],
.wl-page input[type="number"],
.wl-page input[type="tel"],
.wl-page input[type="url"],
.wl-page textarea,
.wl-page select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: all 0.3s ease;
}

.wl-page input[type="text"]:focus,
.wl-page input[type="email"]:focus,
.wl-page input[type="password"]:focus,
.wl-page input[type="number"]:focus,
.wl-page input[type="tel"]:focus,
.wl-page input[type="url"]:focus,
.wl-page textarea:focus,
.wl-page select:focus {
  outline: none;
  border-color: #a070ff;
  box-shadow: 0 0 0 3px rgba(160, 112, 255, 0.2), 0 0 12px rgba(160, 112, 255, 0.1);
}

.wl-page textarea {
  resize: vertical;
  min-height: 150px;
}

.wl-page input[type="checkbox"], 
.wl-page input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: #a070ff;
}

.wl-page label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.wl-page .form-group {
  margin-bottom: 1.5rem;
}

.wl-page .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .wl-page .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================
   NAVIGATION
   ========================================== */

.wl-page nav,
.wl-page .navbar {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 2rem;
  transition: padding 0.3s ease;
  pointer-events: none;
}

.wl-page nav.scrolled {
  padding: 0.5rem 2rem;
}

.wl-page nav.scrolled .nav-container {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

.wl-page .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.6rem 1.75rem;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.wl-page .nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #a070ff;
  text-decoration: none;
}

.wl-page .nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wl-page .nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.wl-page .nav-menu {
  display: none;
  list-style: none;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 768px) {
  .wl-page .nav-menu {
    display: flex;
  }
}

.wl-page .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.wl-page .nav-link:hover, 
.wl-page .nav-link.active {
  color: #a070ff;
}

.wl-page .nav-cta-wrapper {
  margin-left: 0.5rem;
}

.wl-page .nav-cta {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #f39100;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  border: 1px solid rgba(243, 145, 0, 0.6);
}

.wl-page .nav-cta:hover {
  background: #d97f00;
  box-shadow: 0 4px 20px rgba(243, 145, 0, 0.4);
}

.wl-page .nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #a070ff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 767px) {
  .wl-page .nav-toggle {
    display: block;
  }
}

.wl-page .nav-menu.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #01010c;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  gap: 0;
}

.wl-page .nav-menu.open li {
  padding: 0.75rem 1rem;
}

.wl-page .nav-menu.open .nav-cta-wrapper {
  padding: 1rem 1rem 0.5rem;
}

.wl-page .nav-menu.open .nav-cta {
  display: block;
  text-align: center;
  padding: 0.75rem 1.25rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.wl-page .hero {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  position: relative;
  background: transparent;
  padding: 0 0 2rem;
  overflow: visible;
}

.wl-page .hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.wl-page .hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.wl-page .hero-content {
  text-align: left;
  padding: 0;
}

/* Hero elements are above the fold — force visible to prevent
   .wl-page animation/transition conflicts from keeping them hidden */
.wl-page .hero .animate-on-scroll {
  opacity: 1;
  transform: none;
}

.wl-page .hero-title {
  font-family: 'Brockmann', 'Inter', system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.wl-page .hero-title .text-violet {
  color: #a070ff;
  display: block;
}

.wl-page .hero-subtitle {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.wl-page .hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 480px;
}

/* Hero feature checklist */
.wl-page .hero-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1.5rem;
  max-width: 480px;
}

.wl-page .hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  line-height: 1.4;
}

.wl-page .hero-feature-item svg {
  color: #22c55e;
  flex-shrink: 0;
}

/* Hero feature pills (legacy) */
.wl-page .hero-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.wl-page .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: rgba(160, 112, 255, 0.12);
  border: 1px solid rgba(160, 112, 255, 0.25);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.wl-page .hero-pill svg {
  color: #a070ff;
  flex-shrink: 0;
}

.wl-page .hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.wl-page .trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.wl-page .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === STOREFRONT BROWSER MOCKUP === */

.wl-page .hero-storefront {
  position: relative;
  perspective: 1200px;
  z-index: 3;
}

.wl-page .storefront-wrapper {
  position: relative;
}

/* Floating badges — hidden */
.wl-page .storefront-badge {
  display: none !important;
}

.wl-page .badge-whitelabel {
  top: -1rem;
  left: 1rem;
  background: rgba(160, 112, 255, 0.2);
  border: 1px solid rgba(160, 112, 255, 0.4);
  color: #c9acff;
}

.wl-page .badge-coverage {
  top: -1rem;
  right: 1rem;
  background: rgba(243, 145, 0, 0.15);
  border: 1px solid rgba(243, 145, 0, 0.35);
  color: #f39100;
}

.wl-page .badge-activation {
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

/* Browser frame */
.wl-page .browser-frame {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6),
              0 0 60px rgba(160, 112, 255, 0.08),
              0 0 120px rgba(160, 112, 255, 0.04);
}

.wl-page .browser-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wl-page .browser-dots {
  display: flex;
  gap: 6px;
}

.wl-page .browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.wl-page .dot-red { background: #ff5f57; }
.wl-page .dot-yellow { background: #febc2e; }
.wl-page .dot-green { background: #28c840; }

.wl-page .browser-url {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.wl-page .browser-url svg {
  color: #28c840;
  flex-shrink: 0;
}

/* Browser content / storefront */
.wl-page .browser-content {
  padding: 1.25rem;
}

.wl-page .sf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.wl-page .sf-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
}

.wl-page .sf-logo-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #a070ff, #f39100);
  border-radius: 6px;
}

.wl-page .sf-nav-pills {
  display: flex;
  gap: 0.25rem;
}

.wl-page .sf-pill {
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.wl-page .sf-pill.active {
  background: rgba(160, 112, 255, 0.2);
  color: #a070ff;
  font-weight: 600;
}

.wl-page .sf-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}

/* Country cards grid */
.wl-page .sf-countries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.wl-page .sf-country {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.75rem;
  text-align: center;
  transition: all 0.2s ease;
}

.wl-page .sf-country:hover, 
.wl-page .sf-country.featured {
  border-color: rgba(160, 112, 255, 0.4);
  background: rgba(160, 112, 255, 0.1);
}

.wl-page .sf-flag {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.wl-page .sf-country-name {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.125rem;
}

.wl-page .sf-price {
  font-size: 0.625rem;
  color: #f39100;
  font-weight: 500;
}

/* === Hero Store (customer-facing, Tourlink style) === */
.wl-page .sf-store-body {
  padding: 0.65rem 0.85rem 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Search bar */
.wl-page .sf-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.6rem;
}

.wl-page .sf-search-bar svg {
  opacity: 0.4;
  flex-shrink: 0;
}

/* Tabs */
.wl-page .sf-region-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.65rem;
}

.wl-page .sf-region-tab {
  font-size: 0.55rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s;
}

.wl-page .sf-region-tab.active {
  background: rgba(160, 112, 255, 0.15);
  color: #a070ff;
}

/* Country cards grid */
.wl-page .sf-country-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 260px;
  overflow: hidden;
}

.wl-page .sf-country-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
  cursor: pointer;
}

.wl-page .sf-country-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.wl-page .sf-country-card:last-child {
  border-bottom: none;
  opacity: 0.4;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 20%, transparent 100%);
}

.wl-page .sf-cc-flag {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.wl-page .sf-cc-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.wl-page .sf-cc-name {
  font-size: 0.68rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.wl-page .sf-cc-price {
  font-size: 0.58rem;
  color: #f39100;
  font-weight: 500;
  line-height: 1.3;
}

.wl-page .sf-cc-plans {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.3;
}

.wl-page .sf-cc-arrow {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  font-weight: 300;
}

/* View All button */
.wl-page .sf-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0;
  margin-top: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #a070ff;
  cursor: pointer;
  transition: color 0.2s;
}

.wl-page .sf-view-all:hover {
  color: #c4a0ff;
}

.wl-page .sf-view-all svg {
  width: 14px;
  height: 14px;
}

/* === Float cards inside hero === */
.wl-page .hero-storefront {
  position: relative;
  perspective: 1200px;
  z-index: 3;
}

.wl-page .hero-storefront .be-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  color: #fff;
  z-index: 20;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: be-float 4s ease-in-out infinite;
}

.wl-page .hero-storefront .be-float-subscribers {
  top: -30px;
  left: -50px;
  width: 160px;
  animation-delay: 0s;
}

.wl-page .hero-storefront .be-float-payments {
  bottom: -40px;
  right: 80px;
  width: 175px;
  animation-delay: 0.5s;
}

.wl-page .hero-storefront .be-float-card .be-float-card-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .wl-page .hero-storefront .be-float-card {
    display: none;
  }
  .wl-page .sf-country-grid {
    max-height: 200px;
  }
}

/* === HERO DEVICE COMPOSITION (Laptop + Phone) === */

.wl-page .hero-devices {
  position: relative;
  transform: rotateY(-15deg) rotateX(2deg) scale(1.0);
  transition: transform 0.6s ease;
}

.wl-page .hero-devices:hover {
  transform: rotateY(-10deg) rotateX(0.5deg) scale(1.02);
}

/* ── Laptop Mockup ── */
/* ── MacBook Mockup ── */
.wl-page .hero-laptop {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 40px rgba(160, 112, 255, 0.06));
}

/* MacBook Lid (screen housing) */
.wl-page .macbook-lid {
  position: relative;
  background: #080810;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  padding: 8px 8px 0 8px;
}

/* Camera dot */
.wl-page .macbook-camera {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #15152a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 auto 5px;
}

/* Screen area */
.wl-page .macbook-screen {
  position: relative;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  background: #0a0a14;
}

/* Glass reflection overlay */
.wl-page .macbook-screen::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 10;
  border-radius: 4px 4px 0 0;
}

.wl-page .macbook-screen .browser-frame {
  border-radius: 4px 4px 0 0;
  box-shadow: none;
  border: none;
}

/* Hinge */
.wl-page .macbook-hinge {
  width: calc(100% + 10px);
  margin-left: -5px;
  height: 3px;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 100%);
  border-left: 1.5px solid rgba(255, 255, 255, 0.06);
  border-right: 1.5px solid rgba(255, 255, 255, 0.06);
}

/* Base (front lip only) */
.wl-page .macbook-base {
  position: relative;
  width: calc(100% + 20px);
  margin-left: -10px;
  height: 8px;
  background: linear-gradient(to bottom,
    #14142a 0%,
    #0c0c1a 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-top: none;
  border-radius: 0 0 8px 8px;
}

/* Front notch indent */
.wl-page .macbook-notch {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16%;
  height: 2px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 2px 2px 0 0;
}

/* Shadow under base */
.wl-page .macbook-base::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 12%;
  right: 12%;
  height: 5px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

/* ── Phone Mockup ── */
.wl-page .hero-phone {
  position: absolute;
  bottom: -30px;
  right: -40px;
  z-index: 10;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 30px rgba(160, 112, 255, 0.06));
}

.wl-page .hero-phone-frame {
  position: relative;
  width: 160px;
  aspect-ratio: 9 / 19;
  background: #080810;
  border-radius: 2rem;
  padding: 0.35rem;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.wl-page .hero-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 16px;
  background: #080810;
  border-radius: 0 0 0.8rem 0.8rem;
  z-index: 20;
}

.wl-page .hero-phone-screen {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #0d0d1a;
  border-radius: 1.65rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wl-page .hero-phone-screen .be-status-bar {
  padding: 0.3rem 0.75rem;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}

.wl-page .hero-phone-screen .be-time {
  color: rgba(255, 255, 255, 0.6);
}

.wl-page .hero-phone-screen .be-bar {
  background: rgba(255, 255, 255, 0.5);
}

/* ── Mobile Storefront Content ── */
.wl-page .msf-content {
  flex: 1;
  padding: 0.5rem;
  overflow: hidden;
}

.wl-page .msf-header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0;
}

.wl-page .msf-header .sf-logo-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.wl-page .msf-brand {
  font-size: 0.6rem;
  font-weight: 700;
  color: #ffffff;
}

.wl-page .msf-search {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.45rem;
}

.wl-page .msf-search svg {
  opacity: 0.4;
  flex-shrink: 0;
}

.wl-page .msf-tabs {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}

.wl-page .msf-tab {
  font-size: 0.42rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.4);
}

.wl-page .msf-tab.active {
  background: rgba(160, 112, 255, 0.15);
  color: #a070ff;
}

.wl-page .msf-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wl-page .msf-card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wl-page .msf-card--faded {
  opacity: 0.3;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 20%, transparent 100%);
}

.wl-page .msf-flag {
  font-size: 0.9rem;
  line-height: 1;
  flex-shrink: 0;
}

.wl-page .msf-card-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.wl-page .msf-card-name {
  font-size: 0.48rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.wl-page .msf-card-price {
  font-size: 0.4rem;
  color: #f39100;
  font-weight: 500;
  line-height: 1.3;
}

.wl-page .msf-card-arrow {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.wl-page .msf-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
  margin-top: 2px;
  font-size: 0.42rem;
  font-weight: 600;
  color: #a070ff;
}

/* ── Device Responsive ── */
@media (max-width: 1024px) {
  .wl-page .hero-phone-frame {
    width: 130px;
  }
  .wl-page .hero-phone {
    right: -25px;
    bottom: -20px;
  }
}

@media (max-width: 900px) {
  .wl-page .hero-phone {
    display: none;
  }
}

@media (max-width: 768px) {
  .wl-page .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wl-page .hero-content {
    text-align: center;
  }

  .wl-page .hero-features {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .wl-page .hero-pills {
    justify-content: center;
  }

  .wl-page .hero-buttons {
    justify-content: center;
  }

  .wl-page .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .wl-page .hero-devices {
    transform: none;
    max-width: 500px;
    margin: 0 auto;
  }

  .wl-page .hero-devices:hover {
    transform: none;
  }

  .wl-page .storefront-wrapper {
    transform: none;
    max-width: none;
    margin: 0;
  }

  .wl-page .storefront-wrapper:hover {
    transform: none;
  }

  .wl-page .hero-phone {
    display: none;
  }

  .wl-page .badge-whitelabel { left: 0; }
  .wl-page .badge-coverage { right: 0; }
  .wl-page .badge-activation { left: 0; }
}

@media (max-width: 640px) {
  .wl-page .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .wl-page .hero-buttons .btn {
    width: 100%;
  }

  .wl-page .sf-countries {
    grid-template-columns: repeat(2, 1fr);
  }

  .wl-page .storefront-badge {
    display: none;
  }
}

.wl-page .hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  transition: opacity 0.4s ease;
}

.wl-page .hero-scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.wl-page .hero-scroll-indicator p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.wl-page .scroll-dot {
  width: 24px;
  height: 40px;
  border: 2px solid #a070ff;
  border-radius: 12px;
  position: relative;
}

.wl-page .scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: #a070ff;
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 20px; opacity: 0.3; }
}

/* ==========================================
   SECTION HEADER STYLES
   ========================================== */

.wl-page .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.wl-page .section-title {
  font-family: 'Brockmann', 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.wl-page .section-title .text-violet {
  color: #a070ff;
}

.wl-page .section-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.62);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

.wl-page .section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .wl-page .section-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.wl-page .section-text {
  /* text column in two-column layouts */
}

/* ==========================================
   WHAT IS ESIM SECTION — DYNAMIC REDESIGN
   ========================================== */

.wl-page .what-is-esim {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* Ambient orbs — disabled */
.wl-page .esim-orb {
  display: none;
}

.wl-page .what-is-esim .container { position: relative; z-index: 1; }

/* FEATURE ITEMS — glassmorphism cards */
.wl-page .features-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.wl-page .feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.wl-page .feature-item:hover {
  border-color: rgba(160,112,255,0.3);
  background: rgba(160,112,255,0.07);
  box-shadow: 0 8px 28px rgba(160,112,255,0.12);
  transform: translateY(-2px);
}

.wl-page .feature-item h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: #ffffff;
  font-weight: 600;
}

.wl-page .feature-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.5;
}

.wl-page .feature-body { flex: 1; min-width: 0; }

.wl-page .feature-number {
  font-family: 'Brockmann', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(160,112,255,0.15);
  flex-shrink: 0;
  line-height: 1;
}

.wl-page .feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, rgba(160,112,255,0.2), rgba(160,112,255,0.08));
  border: 1px solid rgba(160,112,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a070ff;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.wl-page .feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(135deg, rgba(160,112,255,0.35), rgba(160,112,255,0.15));
  box-shadow: 0 0 16px rgba(160,112,255,0.3);
}

/* ── GLOBE VISUALIZATION ── */
.wl-page .esim-globe-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating orbit circles */
.wl-page .globe-orbits {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: globe-spin 180s linear infinite;
}
@keyframes globe-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.wl-page .globe-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(160,112,255,0.1);
}
.wl-page .globe-orbit--1 { width: 400px; height: 400px; }
.wl-page .globe-orbit--2 { width: 320px; height: 320px; }

/* Connection lines SVG */
.wl-page .globe-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.wl-page .conn-line {
  stroke: #a070ff;
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  stroke-dashoffset: 0;
  opacity: 0;
}
.wl-page .conn-line--1 { animation: conn-draw 2s 0s ease-out infinite; animation-delay: 0s; }
.wl-page .conn-line--2 { animation: conn-draw 2s 0.5s ease-out infinite; }
.wl-page .conn-line--3 { animation: conn-draw 2s 1.0s ease-out infinite; }
.wl-page .conn-line--4 { animation: conn-draw 2s 1.5s ease-out infinite; }
.wl-page .conn-line--5 { animation: conn-draw 2s 2.0s ease-out infinite; }
.wl-page .conn-line--6 { animation: conn-draw 2s 2.5s ease-out infinite; }
@keyframes conn-draw {
  0%   { stroke-dashoffset: 400; opacity: 0; }
  30%  { opacity: 0.4; }
  100% { stroke-dashoffset: 0; opacity: 0.4; }
}

.wl-page .conn-dot {
  fill: #a070ff;
  opacity: 0;
}
.wl-page .conn-dot--1 { animation: conn-pulse 1s 1.5s ease-out infinite; animation-delay: 1.5s; }
.wl-page .conn-dot--2 { animation: conn-pulse 1s 2.0s ease-out infinite; }
.wl-page .conn-dot--3 { animation: conn-pulse 1s 2.5s ease-out infinite; }
.wl-page .conn-dot--4 { animation: conn-pulse 1s 3.0s ease-out infinite; }
.wl-page .conn-dot--5 { animation: conn-pulse 1s 3.5s ease-out infinite; }
.wl-page .conn-dot--6 { animation: conn-pulse 1s 4.0s ease-out infinite; }
@keyframes conn-pulse {
  0%   { opacity: 0; r: 0; }
  50%  { opacity: 1; r: 6; }
  100% { opacity: 0.8; r: 5; }
}

/* Floating emoji icons */
.wl-page .globe-emoji {
  position: absolute;
  font-size: 1.5rem;
  z-index: 2;
  opacity: 0;
}
.wl-page .globe-emoji--1 {
  top: 10%; left: 20%;
  animation: emoji-pop 4s 0s ease-in-out infinite;
}
.wl-page .globe-emoji--2 {
  top: 15%; right: 15%;
  animation: emoji-pop 4s 0.3s ease-in-out infinite;
}
.wl-page .globe-emoji--3 {
  bottom: 25%; left: 10%;
  animation: emoji-pop 4s 0.6s ease-in-out infinite;
}
.wl-page .globe-emoji--4 {
  bottom: 15%; right: 20%;
  animation: emoji-pop 4s 0.9s ease-in-out infinite;
}
@keyframes emoji-pop {
  0%   { opacity: 0; transform: scale(0) translateY(0); }
  15%  { opacity: 1; transform: scale(1.2) translateY(0); }
  30%  { opacity: 1; transform: scale(1) translateY(0); }
  70%  { opacity: 1; transform: scale(1) translateY(-10px); }
  100% { opacity: 0; transform: scale(1) translateY(0); }
}

/* ── Central Phone in eSIM Section ── */
.wl-page .esim-phone-float {
  position: relative;
  z-index: 3;
  animation: esim-phone-hover 4s ease-in-out infinite;
}
@keyframes esim-phone-hover {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-15px); }
}

.wl-page .esim-phone-float .be-phone-frame {
  width: 224px;
  max-width: 224px;
  aspect-ratio: auto;
  height: 460px;
  padding: 0.5rem;
}

.wl-page .esim-phone-float .be-notch {
  width: 120px;
  height: 24px;
}

/* Glow behind phone */
.wl-page .esim-phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(160, 112, 255, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: phone-glow-pulse 3s ease-in-out infinite;
}
@keyframes phone-glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* Coverage badge */
.wl-page .globe-coverage-badge {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(10,10,22,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(160,112,255,0.2);
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 5;
  animation: badge-float-up 0.8s 2s ease-out both;
  white-space: nowrap;
}
.wl-page .globe-coverage-badge span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
}
@keyframes badge-float-up {
  from { opacity: 0; transform: translateX(-50%) scale(0) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) scale(1) translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .wl-page .esim-globe-visual {
    height: 420px;
    max-width: 360px;
  }
  .wl-page .globe-orbit--1 { width: 300px; height: 300px; }
  .wl-page .globe-orbit--2 { width: 240px; height: 240px; }
  .wl-page .esim-phone-float .be-phone-frame { width: 190px; height: 390px; }
  .wl-page .esim-phone-glow { width: 220px; height: 220px; }
}

/* ==========================================
   GLOBAL REACH SECTION
   ========================================== */

.wl-page .global-reach {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background-color: transparent;
}

@media (max-width: 640px) {
  }

/* ==========================================
   COMPETITIVE ADVANTAGE SECTION
   ========================================== */

.wl-page .competitive-advantage {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: transparent;
}

/* ADVANTAGE CARD INTERNAL STRUCTURE */
@media (max-width: 767px) {
  }

/* ==========================================
   REVENUE MODEL SECTION
   ========================================== */

.wl-page .revenue-model {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: transparent;
}

/* REVENUE STEPS */
@media (max-width: 1023px) {
  }

@media (max-width: 640px) {
  }

.wl-page .revenue-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto 3rem;
}

@media (max-width: 1023px) {
  .wl-page .revenue-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .wl-page .revenue-flow {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.wl-page .flow-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.wl-page .flow-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.wl-page .flow-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 600;
}

.wl-page .flow-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.5;
}

.wl-page .flow-card .badge {
  margin-top: 0.75rem;
  display: inline-block;
}

.wl-page .flow-card .badge-gradient {
  background: linear-gradient(135deg, #a070ff, #f39100);
  color: #01010c;
}

.wl-page .flow-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #01010c;
}

.wl-page .flow-icon.bg-violet {
  background-color: #a070ff;
}

.wl-page .flow-icon.bg-orange {
  background-color: #f39100;
}

.wl-page .flow-badge {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a070ff, #f39100);
  color: #01010c;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* WHAT YOU GET CARD */
.wl-page .what-you-get {
  background: linear-gradient(135deg, #a070ff, #f39100);
  border-radius: 1.5rem;
  padding: 3rem;
  color: #01010c;
  max-width: 56rem;
  margin: 0 auto;
}

.wl-page .what-you-get h3, 
@media (max-width: 767px) {
  }

/* ==========================================
   BRANDED ECOSYSTEM SECTION
   ========================================== */

.wl-page .branded-ecosystem {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background-color: transparent;
  background-image: linear-gradient(135deg, rgba(160, 112, 255, 0.05), transparent);
}

/* ── Branded Ecosystem Phone Mockup ── */
.wl-page .branded-ecosystem .phone-header {
  position: relative;
  z-index: 5;
}

/* ==========================================
   DASHBOARD SECTION
   ========================================== */

.wl-page .dashboard {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: transparent;
}

.wl-page .dashboard-container {
  min-height: 400px;
  max-width: 78rem;
  margin: 0 auto 3rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  border: none;
}

/* Old dashboard styles removed — new dashboard uses db-* scoped classes injected by dashboard.js */

.wl-page .dashboard-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .wl-page .dashboard-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .wl-page .dashboard-features {
    grid-template-columns: 1fr;
  }
}

.wl-page .dashboard-feature {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.wl-page .dashboard-feature:hover {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.wl-page .dashboard-feature .feature-icon {
  margin: 0 auto 1rem;
  width: 3rem;
  height: 3rem;
  background-color: rgba(160, 112, 255, 0.2);
}

.wl-page .dashboard-feature h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 600;
}

.wl-page .dashboard-feature p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.wl-page .dashboard-feature:nth-child(even) .feature-icon {
  background-color: rgba(243, 145, 0, 0.2);
  color: #f39100;
}

/* ==========================================
   ROI CALCULATOR SECTION
   ========================================== */

.wl-page .roi-calculator {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background-color: transparent;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.wl-page .testimonials {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: transparent;
}

@media (max-width: 1023px) {
  }

@media (max-width: 640px) {
  }

.wl-page .star {
  color: #f39100;
  font-size: 1.125rem;
}

.wl-page .testimonial-image {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.wl-page .testimonial-info h3 {
  font-size: 1rem;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 600;
}

.wl-page .testimonial-info p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

@media (max-width: 640px) {
  }

.wl-page .gradient-text {
  color: #a070ff;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.wl-page .contact {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: transparent;
}

@media (max-width: 1023px) {
  }

/* Footer styles defined in enhanced footer section below */

/* ==========================================
   TOOLTIP STYLES
   ========================================== */

.wl-page .tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}

.wl-page .tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #a070ff;
  color: #fff;
  text-align: center;
  border-radius: 0.5rem;
  padding: 0.75rem;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 0.875rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.wl-page .tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #a070ff transparent transparent transparent;
}

.wl-page .tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* ==========================================
   SCROLLBAR STYLING
   ========================================== */

.wl-page ::-webkit-scrollbar {
  width: 12px;
}

.wl-page ::-webkit-scrollbar-track {
  background: #01010c;
}

.wl-page ::-webkit-scrollbar-thumb {
  background: #a070ff;
  border-radius: 6px;
}

.wl-page ::-webkit-scrollbar-thumb:hover {
  background: #a070ff;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

.wl-page .animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.wl-page .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.wl-page .delay-1 { animation-delay: 0.1s; }
.wl-page .delay-2 { animation-delay: 0.2s; }
.wl-page .delay-3 { animation-delay: 0.3s; }
.wl-page .delay-4 { animation-delay: 0.4s; }
.wl-page .delay-5 { animation-delay: 0.5s; }

.wl-page .animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.wl-page .animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.wl-page .animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.wl-page .animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.wl-page .animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */

@media (max-width: 768px) {
  .wl-page .nav-container {
    padding: 0 1rem;
  }

  .wl-page .hero {
    padding: 4rem 0;
  }

  .wl-page .hero-scroll-indicator {
    display: none;
  }

  .wl-page .dashboard-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wl-page .container {
    padding: 0 1rem;
  }

  .wl-page h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .wl-page h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .wl-page .hero-title {
    font-size: 2rem;
  }

  .wl-page .section-title {
    font-size: 1.75rem;
  }

  .wl-page .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .wl-page .what-you-get {
    padding: 2rem;
  }

  .wl-page .what-you-get h3 {
    font-size: 1.25rem;
  }

  .wl-page .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }

  .wl-page .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

.wl-page .skip-nav {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: #a070ff;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  z-index: 10000;
  font-weight: 600;
  font-size: 0.875rem;
  transition: top 0.2s ease;
}

.wl-page .skip-nav:focus {
  top: 0;
  color: white;
}

/* Focus styles for keyboard navigation */
.wl-page *:focus-visible {
  outline: 2px solid #a070ff;
  outline-offset: 2px;
  border-radius: 4px;
}

.wl-page button:focus-visible,
.wl-page a:focus-visible {
  outline: 2px solid #a070ff;
  outline-offset: 3px;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */

.wl-page .back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #a070ff;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(160, 112, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 90;
}

.wl-page .back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wl-page .back-to-top:hover {
  background: #a070ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(160, 112, 255, 0.4);
}

/* ==========================================
   ENHANCED FOOTER
   ========================================== */

.wl-page .footer {
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  padding: 3rem 0 0;
}

.wl-page .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wl-page .footer-brand {
  max-width: 280px;
}

.wl-page .footer-logo-img {
  height: 24px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.wl-page .footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 0.75rem;
}

.wl-page .footer-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.wl-page .footer-links h4 {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.wl-page .footer-links li {
  margin-bottom: 0.5rem;
}

.wl-page .footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.wl-page .footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.wl-page .footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}

.wl-page .footer-social-link:hover {
  background: rgba(160, 112, 255, 0.2);
  color: #a070ff;
}

.wl-page .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
}

.wl-page .footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

.wl-page .footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.wl-page .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  transition: color 0.2s ease;
}

.wl-page .footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   HERO ENHANCEMENT - subtle background
   ========================================== */

.wl-page .hero {
  position: relative;
  overflow: visible;
}

.wl-page .hero-radial-overlay {
  display: none;
}

/* hero::after is now used for the conic gradient glow */

/* ==========================================
   OMAX BACKGROUND ASSETS (blur, ray, pattern)
   Matches omaxtelecom.com main site
   ========================================== */

.wl-page .wl-bg-before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/bg/blur_hero.svg');
  background-repeat: no-repeat;
  background-position: 166px -430px;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.wl-page .wl-bg-after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/bg/ray.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.wl-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(220deg, rgba(160, 112, 255, 0.12) 7%, #01010c 50%);
  pointer-events: none;
  z-index: 0;
  display: block;
}

/* Conic gradient glow — subtle purple arc accent */
.wl-page .hero::after {
  content: "";
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 140%;
  background: conic-gradient(from 240deg, rgba(0, 0, 0, 0), rgba(160, 112, 255, 0.5), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  filter: blur(100px);
  display: block;
}

.wl-page .wl-bg-pattern {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('/bg/pattern05.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}

/* Animated network background (nodes + edges) */
.wl-page #bg-network {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.06;
  z-index: 1;
}

.wl-page #bg-network svg {
  width: 100%;
  height: 100%;
}

/* Edges */
.wl-page .net-edge {
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 0.18;
  animation: edgeFade 4s ease-in-out infinite;
}

/* Nodes */
.wl-page .net-node {
  animation: nodePulse 2.5s ease-in-out infinite;
}

.wl-page .net-orange { fill: rgba(255, 255, 255, 0.6); }
.wl-page .net-purple { fill: rgba(255, 255, 255, 0.4); }

/* Staggered animation delays (7 groups) */
.wl-page .net-d0 { animation-delay: 0s; }
.wl-page .net-d1 { animation-delay: 0.4s; }
.wl-page .net-d2 { animation-delay: 0.8s; }
.wl-page .net-d3 { animation-delay: 1.2s; }
.wl-page .net-d4 { animation-delay: 1.6s; }
.wl-page .net-d5 { animation-delay: 2.0s; }
.wl-page .net-d6 { animation-delay: 2.4s; }

/* Vary edge durations per group */
.wl-page .net-edge.net-d1 { animation-duration: 5s; }
.wl-page .net-edge.net-d2 { animation-duration: 3.5s; }
.wl-page .net-edge.net-d3 { animation-duration: 6s; }
.wl-page .net-edge.net-d4 { animation-duration: 4.5s; }
.wl-page .net-edge.net-d5 { animation-duration: 3s; }
.wl-page .net-edge.net-d6 { animation-duration: 5.5s; }

@keyframes edgeFade {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.5; }
}

/* Vary node durations per group */
.wl-page .net-node.net-d1 { animation-duration: 3s; }
.wl-page .net-node.net-d2 { animation-duration: 2s; }
.wl-page .net-node.net-d3 { animation-duration: 3.5s; }
.wl-page .net-node.net-d4 { animation-duration: 2.8s; }
.wl-page .net-node.net-d5 { animation-duration: 4s; }
.wl-page .net-node.net-d6 { animation-duration: 3.2s; }

@keyframes nodePulse {
  0%, 100% { opacity: 0.3; r: 0.3; }
  50% { opacity: 0.7; r: 0.5; }
}

/* Mouse-following glow — disabled */
.wl-page #mouse-glow {
  display: none !important;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.7;
  }
}

/* ==========================================
   MICRO-INTERACTIONS & POLISH
   ========================================== */

/* Smooth card hover lift */
.wl-page .stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(160, 112, 255, 0.2);
}

/* Button press effect */
.wl-page .btn:active {
  transform: scale(0.97);
}

/* Nav link underline animation */
.wl-page .nav-link {
  position: relative;
}

.wl-page .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #a070ff;
  transition: width 0.3s ease;
}

.wl-page .nav-link:hover::after {
  width: 100%;
}

/* Gradient text shimmer for stats */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.wl-page .gradient-text {
  color: #a070ff;
}

/* Smooth image loading */
/* ============================================
   ROI CALCULATOR — dark theme
   ============================================ */

/* ============================================================
   ROI CALCULATOR — DYNAMIC / ANIMATED VERSION
   ============================================================ */

/* --- Section positioning --- */
.wl-page .roi-calculator { position: relative; overflow: hidden; }

/* --- Ambient background orbs --- */
@keyframes roi-orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, 30px) scale(1.08); }
  66%       { transform: translate(-20px, 50px) scale(0.95); }
}

@keyframes roi-orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-50px, -30px) scale(1.1); }
  70%       { transform: translate(20px, -50px) scale(0.92); }
}

@keyframes roi-orb-drift-3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
}

/* Ensure container is above orbs */
.wl-page .roi-calculator .container { position: relative; z-index: 1; }

/* --- Inner layout --- */
.wl-page .roi-inner { width: 100%; }

/* --- Header --- */
.wl-page .roi-header { text-align: center; margin-bottom: 3rem; }

.wl-page .roi-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.375rem 1rem;
  background: rgba(160,112,255,0.12);
  border: 1px solid rgba(160,112,255,0.3);
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; color: #a070ff;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1rem;
  animation: roi-badge-pulse 3s ease-in-out infinite;
}

@keyframes roi-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(160,112,255,0); }
  50%       { box-shadow: 0 0 0 6px rgba(160,112,255,0.12); }
}

.wl-page .roi-badge-icon { font-size: 1rem; animation: roi-lightning 2s ease-in-out infinite; }

@keyframes roi-lightning {
  0%, 90%, 100% { opacity: 1; transform: scale(1); }
  95%           { opacity: 0.4; transform: scale(0.85); }
}

.wl-page .roi-title {
  font-family: 'Brockmann', 'Inter', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500; color: #fff; margin-bottom: 0.75rem;
}

.wl-page .roi-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto;
}

/* --- Grid --- */
.wl-page .roi-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) { .roi-grid { grid-template-columns: 1fr; } }

/* --- Controls panel (subtle float) --- */
.wl-page .roi-controls {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(12px);
  /* float removed */
}

@keyframes roi-panel-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}

/* --- Slider --- */
.wl-page .roi-slider { margin-bottom: 1.5rem; }
.wl-page .roi-slider:last-child { margin-bottom: 0; }

.wl-page .roi-slider-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.45rem;
}

.wl-page .roi-slider-label {
  font-size: 0.6875rem; font-weight: 600; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.07em;
}

.wl-page .roi-slider-value {
  font-family: 'Brockmann', 'Inter', sans-serif;
  font-size: 1.125rem; font-weight: 500; color: #fff;
  transition: color 0.2s ease;
}

.wl-page .roi-slider-value.updating { color: #a070ff; }

.wl-page .roi-track-wrap { position: relative; }

.wl-page .roi-track {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.wl-page .roi-track-fill {
  height: 100%;
  background: linear-gradient(90deg, #a070ff, #f39100);
  border-radius: 3px;
  transition: width 0.08s ease;
}

.wl-page .roi-range {
  width: 100%; margin-top: -4px;
  appearance: none; -webkit-appearance: none;
  background: transparent; cursor: pointer; height: 20px;
}

.wl-page .roi-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: #a070ff; border: 3px solid #01010c;
  box-shadow: 0 0 0 2px #a070ff, 0 2px 10px rgba(160,112,255,0.5);
  cursor: pointer; margin-top: -7px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wl-page .roi-range:hover::-webkit-slider-thumb, 
.wl-page .roi-range:active::-webkit-slider-thumb {
  transform: scale(1.2);
  box-shadow: 0 0 0 3px #a070ff, 0 0 16px rgba(160,112,255,0.7);
}

.wl-page .roi-range::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: #a070ff; border: 3px solid #01010c;
  box-shadow: 0 0 0 2px #a070ff; cursor: pointer;
}

.wl-page .roi-range-limits {
  display: flex; justify-content: space-between;
  font-size: 0.625rem; color: rgba(255,255,255,0.28);
  margin-top: -1px; letter-spacing: 0.03em;
}

/* --- Results --- */
.wl-page .roi-results { display: flex; flex-direction: column; gap: 1rem; }

/* --- Metric cards — each floats at different speed/phase --- */
.wl-page .roi-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.625rem; }

@media (max-width: 640px) { .roi-metrics { grid-template-columns: 1fr; } }

.wl-page .roi-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 1.125rem 1rem;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

/* Individual float animations — offset phases */
/* roi metric floats removed */

@keyframes roi-card-float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
@keyframes roi-card-float-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes roi-card-float-c {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}

.wl-page .roi-metric:hover {
  border-color: rgba(160,112,255,0.35);
  background: rgba(160,112,255,0.08);
  box-shadow: 0 8px 24px rgba(160,112,255,0.15);
  animation-play-state: paused;
}

.wl-page .roi-metric--highlight {
  background: linear-gradient(145deg, rgba(160,112,255,0.2), rgba(160,112,255,0.07));
  border-color: rgba(160,112,255,0.35);
  box-shadow: 0 0 20px rgba(160,112,255,0.08);
}

.wl-page .roi-metric--highlight:hover {
  box-shadow: 0 8px 28px rgba(160,112,255,0.25);
}

.wl-page .roi-metric--profit {
  background: linear-gradient(145deg, rgba(160,112,255,0.1), rgba(243,145,0,0.06));
  border-color: rgba(160,112,255,0.2);
}

/* Metric icons */
.wl-page .roi-metric-icon {
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.5rem;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}
.wl-page .roi-metric:hover .roi-metric-icon { transform: scale(1.15); }

.wl-page .roi-metric-icon--accent { color: #a070ff; opacity: 0.8; }
.wl-page .roi-metric-icon--profit { color: #f39100; opacity: 0.7; }
.wl-page .roi-metric--highlight .roi-metric-icon { color: rgba(160,112,255,0.6); }

.wl-page .roi-metric-label {
  font-size: 0.625rem; font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.wl-page .roi-metric-value {
  font-family: 'Brockmann', 'Inter', sans-serif;
  font-size: 1.4rem; font-weight: 500;
  color: #fff; line-height: 1.1;
  transition: color 0.4s ease;
}

.wl-page .roi-metric-value--accent { color: #a070ff; }
.wl-page .roi-metric-value--profit { transition: color 0.4s ease; }
.wl-page .roi-metric--highlight .roi-metric-value { color: #fff; }

.wl-page .roi-metric-sub {
  font-size: 0.6875rem; color: rgba(255,255,255,0.45); margin-top: 0.3rem;
  transition: opacity 0.3s ease;
}

/* --- Chart box --- */
.wl-page .roi-chart-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 1.375rem 1.25rem 0.875rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  /* float removed */
  animation-delay: -3s;
}

@keyframes roi-chart-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-4px); }
}

.wl-page .roi-chart-box:hover {
  border-color: rgba(160,112,255,0.2);
  box-shadow: 0 8px 24px rgba(160,112,255,0.08);
  animation-play-state: paused;
}

.wl-page .roi-chart-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}

.wl-page .roi-chart-title {
  font-size: 0.6875rem; font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.wl-page .roi-chart-period {
  font-size: 0.625rem; font-weight: 500;
  color: rgba(160,112,255,0.7);
  background: rgba(160,112,255,0.1);
  border: 1px solid rgba(160,112,255,0.2);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: roi-badge-pulse 3s ease-in-out infinite;
  animation-delay: -1.5s;
}

.wl-page .roi-chart-wrap { overflow: hidden; }

/* SVG line draw animation */
.wl-page .roi-line-animated {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: roi-line-draw 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes roi-line-draw {
  to { stroke-dashoffset: 0; }
}

/* Endpoint dot pulse */
.wl-page .roi-endpoint-dot {
  animation: roi-dot-pulse 2s ease-in-out infinite;
  animation-delay: 1.4s;
}

@keyframes roi-dot-pulse {
  0%, 100% { r: 5; opacity: 1; }
  50%       { r: 7; opacity: 0.75; }
}

/* Break-even dot pulse */
.wl-page .roi-breakeven-dot {
  animation: roi-breakeven-pulse 2.5s ease-in-out infinite;
  animation-delay: 1.6s;
}

@keyframes roi-breakeven-pulse {
  0%, 100% { r: 5; }
  50%       { r: 6.5; }
}

/* --- Summary --- */
.wl-page .roi-summary {
  display: flex; gap: 0.875rem; align-items: flex-start;
  background: rgba(160,112,255,0.07);
  border: 1px solid rgba(160,112,255,0.2);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  /* float removed */
  animation-delay: -4s;
}

@keyframes roi-summary-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-3px); }
}

.wl-page .roi-summary:hover {
  border-color: rgba(160,112,255,0.35);
  background: rgba(160,112,255,0.1);
  animation-play-state: paused;
}

.wl-page .roi-summary-icon {
  font-size: 1.125rem; flex-shrink: 0; margin-top: 0.1rem; opacity: 0.85;
  animation: roi-lightbulb 4s ease-in-out infinite;
}

@keyframes roi-lightbulb {
  0%, 80%, 100% { filter: brightness(1); }
  90%           { filter: brightness(1.6) drop-shadow(0 0 6px rgba(243,145,0,0.6)); }
}

.wl-page .roi-summary-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7;
}

.wl-page .roi-summary-text strong { color: #fff; font-weight: 600; }

/* ============================================= */
/* FIGMA INTEGRATION SECTIONS - AUTO-GENERATED   */
/* ============================================= */

/* GlobalReach Dark Theme - All styles prefixed with gr- */

/* ============================================================================
   ANIMATIONS & KEYFRAMES
   ============================================================================ */

@keyframes gr-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes gr-grid-fade-in-lat {
  from {
    stroke-dashoffset: 1000;
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes gr-grid-fade-in-lon {
  from {
    stroke-dashoffset: 500;
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes gr-arc-flow {
  to {
    stroke-dashoffset: -32;
  }
}

@keyframes gr-header-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gr-badge-pop {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gr-map-scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gr-stats-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================================
   MAIN SECTION & LAYOUT
   ============================================================================ */

.wl-page .gr-section {
  position: relative;
  padding: clamp(3rem, 5vw, 5rem) 0;
  background-color: transparent;
  overflow: hidden;
  min-height: 100vh;
}

.wl-page .gr-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wl-page .gr-grid-pattern {
  display: none;
}

.wl-page .gr-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================================
   HEADER SECTION
   ============================================================================ */

.wl-page .gr-header {
  text-align: center;
  margin-bottom: 2.5rem;
  animation: gr-header-fade-in 0.8s ease-out forwards;
}

.wl-page .gr-badge {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, rgba(160, 112, 255, 0.1), rgba(243, 145, 0, 0.1));
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(160, 112, 255, 0.2);
  animation: gr-badge-pop 0.6s ease-out;
  animation-delay: 0.2s;
}

.wl-page .gr-globe-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #a070ff;
  flex-shrink: 0;
}

.wl-page .gr-badge-text {
  color: #a070ff;
  font-weight: 600;
  font-size: 0.875rem;
}

.wl-page .gr-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wl-page .gr-title-accent {
  color: #a070ff;
}

.wl-page .gr-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.625;
  letter-spacing: -0.01em;
}

/* ============================================================================
   MAP WRAPPER & CONTAINER
   ============================================================================ */

.wl-page .gr-map-wrapper {
  max-width: 80rem;
  margin: 0 auto;
}

.wl-page .gr-map-container {
  position: relative;
  width: 100%;
  height: 700px;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02) url('../assets/images/digital-world-map.jpg') center/cover no-repeat;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(160, 112, 255, 0.15);
  padding: 2rem;
  animation: gr-map-scale-in 1s ease-out 0.2s both;
}

/* ============================================================================
   SVG WORLD MAP STYLING
   ============================================================================ */

.wl-page .gr-worldmap-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ============================================================================
   INTERACTIVE WORLD MAP (with country dots + hover tooltips)
   ============================================================================ */

.wl-page .gr-interactive-map-wrapper {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.wl-page .gr-interactive-map {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: 1.25rem;
  overflow: visible;
  background: linear-gradient(135deg, #0d0720 0%, #0a0618 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.wl-page .gr-map-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}

.wl-page .gr-country-dots {
  position: absolute;
  inset: 0;
  z-index: 10;
}

/* Country dot */
.wl-page .gr-dot {
  position: absolute;
  cursor: pointer;
  z-index: 20;
  transform: translate(-50%, -50%);
}

.wl-page .gr-dot-pulse {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(243, 145, 0, 0.5);
  animation: gr-dot-pulse-anim 3s ease-out infinite;
}

@keyframes gr-dot-pulse-anim {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(3.5); opacity: 0; }
}

.wl-page .gr-dot-core {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a070ff, #f39100);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 8px rgba(160, 112, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wl-page .gr-dot:hover .gr-dot-core {
  transform: scale(1.8);
  box-shadow: 0 0 16px rgba(160, 112, 255, 0.8), 0 0 32px rgba(243, 145, 0, 0.4);
}

/* Tooltip */
.wl-page .gr-tooltip {
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  width: 240px;
  background: #160830;
  border: 1px solid rgba(100, 70, 159, 0.4);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 24px rgba(100, 70, 159, 0.2);
  z-index: 100;
  pointer-events: none;
  animation: gr-tt-in 0.25s ease-out;
}

@keyframes gr-tt-in {
  from { opacity: 0; transform: translateX(-50%) translateY(8px) scale(0.95); }
  to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.wl-page .gr-tt-header {
  margin-bottom: 10px;
}

.wl-page .gr-tt-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.wl-page .gr-tt-region {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 999px;
}

.wl-page .gr-tt-region svg {
  opacity: 0.5;
}

.wl-page .gr-tt-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.wl-page .gr-tt-label svg {
  opacity: 0.4;
}

.wl-page .gr-tt-operators {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wl-page .gr-tt-op {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5px 10px;
  border-radius: 8px;
}

.wl-page .gr-tt-op-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(90deg, #64469f, #f39100);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .wl-page .gr-interactive-map {
    aspect-ratio: 16 / 10;
  }
  .wl-page .gr-dot-core {
    width: 6px;
    height: 6px;
  }
  .wl-page .gr-dot-pulse {
    width: 12px;
    height: 12px;
  }
  .wl-page .gr-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .wl-page .gr-interactive-map {
    aspect-ratio: 16 / 12;
  }
}

/* ============================================================================
   CONNECTION ARCS
   ============================================================================ */

.wl-page .gr-arcs-glow {
  pointer-events: none;
}

.wl-page .gr-arcs {
  pointer-events: none;
}

.wl-page .gr-arc {
  fill: none;
  stroke-width: 1.4;
  stroke-dasharray: 10 6;
  animation: gr-arc-flow 1.8s linear infinite;
}

.wl-page .gr-arc-purple {
  stroke: url(#gr-arcGrad1);
}

.wl-page .gr-arc-orange {
  stroke: url(#gr-arcGrad2);
}

/* ============================================================================
   HUB DOTS & LABELS
   ============================================================================ */

.wl-page .gr-hubs {
  pointer-events: none;
}

.wl-page .gr-hub-label {
  fill: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  pointer-events: none;
}

/* ============================================================================
   DATA PACKETS
   ============================================================================ */

.wl-page .gr-packets {
  pointer-events: none;
}

/* ============================================================================
   STATS GRID
   ============================================================================ */

/* Stats grid cards */
.wl-page .gr-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.wl-page .gr-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.wl-page .gr-stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(160, 112, 255, 0.2);
  transform: translateY(-2px);
}

.wl-page .gr-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  border-radius: 0.625rem;
  background: rgba(160, 112, 255, 0.12);
  color: #a070ff;
}

.wl-page .gr-stat-icon svg {
  width: 20px;
  height: 20px;
}

.wl-page .gr-stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.wl-page .gr-stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

.wl-page .gr-stat-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 1024px) {
  .wl-page .gr-title {
    font-size: 2.25rem;
  }

  .wl-page .gr-map-container {
    height: 500px;
    padding: 1.5rem;
  }

}

@media (max-width: 768px) {
  .wl-page .gr-section {
    padding: 3rem 0;
  }

  .wl-page .gr-title {
    font-size: 1.875rem;
  }

  .wl-page .gr-description {
    font-size: 1rem;
  }

  .wl-page .gr-map-container {
    height: 400px;
    padding: 1rem;
  }

  .wl-page .gr-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .wl-page .gr-stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .wl-page .gr-section {
    padding: 2rem 0;
  }

  .wl-page .gr-header {
    margin-bottom: 2rem;
  }

  .wl-page .gr-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .wl-page .gr-description {
    font-size: 0.875rem;
  }

  .wl-page .gr-map-container {
    height: 300px;
    padding: 0.75rem;
  }

  .wl-page .gr-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .wl-page .gr-stat-card {
    padding: 1.25rem 1rem;
  }

  .wl-page .gr-stat-number {
    font-size: 1.25rem;
  }

  .wl-page .gr-stat-desc {
    font-size: 0.75rem;
  }
}

/* ============================================
   GLOBAL VARIABLES & RESET
   .wl-page ============================================ */
.wl-page {
  --primary-color: #a070ff;
  --orange-color: #f39100;
  --dark-bg: #01010c;
  --card-bg: rgba(255, 255, 255, 0.04);
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --border-color: rgba(160, 112, 255, 0.15);
  --blur-amount: 12px;
}

/* Reset scoped to wl-page only */

/* html, body { -- scoped out */
/*   font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif; */
/*   background-color: var(--dark-bg); */
/*   color: var(--text-primary); */
/*   line-height: 1.6; */
/* } */

/* ============================================
   KEYFRAME ANIMATIONS
   .wl-page ============================================ */
@keyframes float-up-down {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progress-fill {
  from {
    width: 0%;
  }
  to {
    width: 75%;
  }
}

@keyframes chart-bar-grow {
  from {
    height: 0%;
  }
  to {
    height: var(--bar-height);
  }
}

/* ============================================
   ANIMATE-ON-SCROLL CLASS
   .wl-page ============================================ */
.wl-page .animate-on-scroll {
  opacity: 0;
  animation: fade-in-up 0.6s ease-out forwards;
}

.wl-page .animate-on-scroll.visible {
  animation: fade-in-up 0.6s ease-out;
}


/* ============================================
   SECTION 2: REVENUE MODEL
   .wl-page ============================================ */
.wl-page .rm-section {
  padding: clamp(3rem, 5vw, 5rem) 2rem;
  background: transparent;
  position: relative;
}

.wl-page .rm-container {
  max-width: 1200px;
  margin: 0 auto;
}

.wl-page .rm-header {
  text-align: center;
  margin-bottom: 4rem;
}

.wl-page .rm-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.wl-page .rm-accent {
  color: var(--primary-color);
}

.wl-page .rm-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 48rem;
  margin: 0 auto;
}

/* Flow Diagram */
.wl-page .rm-flow-diagram {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .wl-page .rm-flow-diagram {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
  }
}

.wl-page .rm-step {
  position: relative;
}

.wl-page .rm-step-card {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  height: 100%;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  overflow: hidden;
}

.wl-page .rm-step-card:hover {
  border-color: rgba(160, 112, 255, 0.3);
  background: rgba(160, 112, 255, 0.07);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(160, 112, 255, 0.12);
}

.wl-page .rm-step-featured {
  padding-top: 2.5rem;
}

.wl-page .rm-step-number {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(160, 112, 255, 0.12);
  line-height: 1;
}

.wl-page .rm-step-badge {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a070ff, #8855ee);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.3rem 0.875rem;
  border-radius: 9999px;
  white-space: nowrap;
  z-index: 10;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(160, 112, 255, 0.3);
}

.wl-page .rm-badge-green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.wl-page .rm-step-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wl-page .rm-step-card:hover .rm-step-icon-box {
  transform: scale(1.1) rotate(-4deg);
}

.wl-page .rm-step-purple {
  background: linear-gradient(135deg, rgba(160, 112, 255, 0.2), rgba(160, 112, 255, 0.08));
  border: 1px solid rgba(160, 112, 255, 0.2);
}

.wl-page .rm-step-card:hover .rm-step-purple {
  box-shadow: 0 0 16px rgba(160, 112, 255, 0.3);
}

.wl-page .rm-step-orange {
  background: linear-gradient(135deg, rgba(243, 145, 0, 0.2), rgba(243, 145, 0, 0.08));
  border: 1px solid rgba(243, 145, 0, 0.2);
}

.wl-page .rm-step-card:hover .rm-step-orange {
  box-shadow: 0 0 16px rgba(243, 145, 0, 0.25);
}

.wl-page .rm-step-green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.08));
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.wl-page .rm-step-card:hover .rm-step-green {
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.25);
}

.wl-page .rm-step-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.wl-page .rm-step-purple .rm-step-icon { color: #a070ff; }
.wl-page .rm-step-orange .rm-step-icon { color: #f39100; }
.wl-page .rm-step-green .rm-step-icon { color: #22c55e; }

.wl-page .rm-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.wl-page .rm-step-subtitle {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

/* Arrows */
.wl-page .rm-arrow {
  display: none;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .wl-page .rm-arrow {
    display: flex;
  }
}

.wl-page .rm-arrow-line {
  width: 2.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

/* Example Calculation */
.wl-page .rm-example {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 3.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.wl-page .rm-example:hover {
  border-color: rgba(160, 112, 255, 0.3);
  background: rgba(160, 112, 255, 0.07);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(160, 112, 255, 0.12);
}

.wl-page .rm-example-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.wl-page .rm-example-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 120px;
}

.wl-page .rm-example-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.wl-page .rm-example-profit .rm-example-value {
  color: #22c55e;
}

.wl-page .rm-example-desc {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.wl-page .rm-example-arrow {
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.wl-page .rm-example-arrow svg {
  width: 32px;
  height: 32px;
}


/* Revenue Model Responsive */

@media (max-width: 768px) {
  .wl-page .rm-title {
    font-size: 2rem;
  }

  .wl-page .rm-header {
    margin-bottom: 3rem;
  }

  .wl-page .rm-flow-diagram {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }


  .wl-page .rm-example-value {
    font-size: 2.5rem;
  }

  .wl-page .rm-example {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 640px) {
  .wl-page .rm-title {
    font-size: 1.5rem;
  }

  .wl-page .rm-subtitle {
    font-size: 1rem;
  }

  .wl-page .rm-flow-diagram {
    grid-template-columns: 1fr;
  }

  .wl-page .rm-example-flow {
    gap: 1rem;
  }

  .wl-page .rm-example-value {
    font-size: 1.75rem;
  }

  .wl-page .rm-example {
    padding: 1.5rem 1rem;
  }

  .wl-page .rm-example-arrow svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   SECTION 3: BRANDED ECOSYSTEM
   .wl-page ============================================ */
.wl-page .be-section {
  padding: clamp(3rem, 5vw, 5rem) 2rem;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.wl-page .be-container {
  max-width: 1400px;
  margin: 0 auto;
}

.wl-page .be-header {
  text-align: center;
  margin-bottom: 5rem;
}

.wl-page .be-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.wl-page .be-accent {
  color: #a070ff;
}

.wl-page .be-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 48rem;
  margin: 0 auto;
}

.wl-page .be-content {
  max-width: 72rem;
  margin: 0 auto;
}

.wl-page .be-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .wl-page .be-features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.wl-page .be-feature-card {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fade-in-up 0.6s ease-out backwards;
}

.wl-page .be-feature-card:nth-child(1) { animation-delay: 0s; }
.wl-page .be-feature-card:nth-child(2) { animation-delay: 0.2s; }
.wl-page .be-feature-card:nth-child(3) { animation-delay: 0.4s; }

.wl-page .be-feature-card.visible {
  animation: fade-in-up 0.6s ease-out forwards;
}

.wl-page .be-feature-card:hover {
  border-color: rgba(160, 112, 255, 0.3);
  background: rgba(160, 112, 255, 0.07);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(160, 112, 255, 0.12);
}

.wl-page .be-feature-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(160, 112, 255, 0.2), rgba(160, 112, 255, 0.08));
  border: 1px solid rgba(160, 112, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wl-page .be-feature-card:nth-child(2) .be-feature-icon-box {
  background: linear-gradient(135deg, rgba(243, 145, 0, 0.2), rgba(243, 145, 0, 0.08));
  border: 1px solid rgba(243, 145, 0, 0.2);
}

.wl-page .be-feature-card:hover .be-feature-icon-box {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 0 16px rgba(160, 112, 255, 0.3);
}

.wl-page .be-feature-card:nth-child(2):hover .be-feature-icon-box {
  box-shadow: 0 0 16px rgba(243, 145, 0, 0.25);
}

.wl-page .be-feature-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: #a070ff;
  stroke-width: 2;
}

.wl-page .be-feature-card:nth-child(2) .be-feature-icon {
  color: #f39100;
}

.wl-page .be-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.wl-page .be-feature-description {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.6;
}


.wl-page .be-phone-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 19;
  background: #080810;
  border-radius: 3rem;
  padding: 0.75rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
              0 0 60px rgba(160, 112, 255, 0.2);
  overflow: hidden;
  z-index: 10;
}

.wl-page .be-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 28px;
  background: #080810;
  border-radius: 0 0 1.5rem 1.5rem;
  z-index: 20;
}

.wl-page .be-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.wl-page .be-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.7rem;
  color: #3f3f46;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.wl-page .be-time {
  font-weight: 600;
}

.wl-page .be-status-icons {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.wl-page .be-signal {
  display: flex;
  gap: 2px;
  align-items: flex-end;
}

.wl-page .be-bar {
  width: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

.wl-page .be-bar:nth-child(1) { height: 3px; }
.wl-page .be-bar:nth-child(2) { height: 6px; }
.wl-page .be-bar:nth-child(3) { height: 9px; }
.wl-page .be-bar:nth-child(4) { height: 12px; }

.wl-page .be-app-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(160, 112, 255, 0.9) 100%);
  color: white;
  padding: 0.75rem 1.25rem 1.5rem;
  text-align: center;
}

.wl-page .be-app-brand {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.wl-page .be-app-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.wl-page .be-balance-card {
  margin: -1rem 0.75rem 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.wl-page .be-balance-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.wl-page .be-balance-label {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0.25rem;
}

.wl-page .be-balance-left .be-balance-label, 
.wl-page .be-balance-right .be-balance-label {
  text-align: left;
}

.wl-page .be-balance-right {
  text-align: right;
}

.wl-page .be-balance-right .be-balance-label {
  text-align: right;
}

.wl-page .be-balance-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f1f1f;
}

.wl-page .be-balance-percent {
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
}

.wl-page .be-progress-section {
  margin-bottom: 0.5rem;
}

.wl-page .be-progress-bar {
  width: 100%;
  height: 0.5rem;
  background: #e5e5e5;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.wl-page .be-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), rgba(160, 112, 255, 0.7));
  border-radius: 9999px;
  animation: progress-fill 1s ease-out forwards;
  animation-delay: 0.8s;
}

.wl-page .be-progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #999;
}

.wl-page .be-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.wl-page .be-action-btn {
  padding: 0.5rem;
  border-radius: 0.75rem;
  border: none;
  font-size: 0.65rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  background: #f5f5f5;
  color: #4a4a4a;
}

.wl-page .be-action-btn:hover {
  background: #e8e8e8;
}

.wl-page .be-action-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 12px rgba(160, 112, 255, 0.3);
}

.wl-page .be-action-primary:hover {
  background: rgba(160, 112, 255, 0.9);
}

.wl-page .be-action-emoji {
  font-size: 1rem;
}

.wl-page .be-action-label {
  display: block;
}

.wl-page .be-usage-chart {
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, rgba(160, 112, 255, 0.05), transparent);
  border-radius: 0.75rem;
  border: 1px solid rgba(160, 112, 255, 0.1);
}

.wl-page .be-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #666;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.wl-page .be-chart-trending {
  color: var(--primary-color);
}

.wl-page .be-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.25rem;
  height: 2.25rem;
  margin-bottom: 0.35rem;
}

.wl-page .be-chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--primary-color), rgba(160, 112, 255, 0.5));
  border-radius: 0.25rem 0.25rem 0 0;
  min-height: 2px;
  animation: chart-bar-grow 0.5s ease-out backwards;
}

.wl-page .be-chart-bar:nth-child(1) { animation-delay: 0.9s; }
.wl-page .be-chart-bar:nth-child(2) { animation-delay: 1s; }
.wl-page .be-chart-bar:nth-child(3) { animation-delay: 1.1s; }
.wl-page .be-chart-bar:nth-child(4) { animation-delay: 1.2s; }
.wl-page .be-chart-bar:nth-child(5) { animation-delay: 1.3s; }
.wl-page .be-chart-bar:nth-child(6) { animation-delay: 1.4s; }
.wl-page .be-chart-bar:nth-child(7) { animation-delay: 1.5s; }

.wl-page .be-chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: #aaa;
}

.wl-page .be-plans-section {
  padding: 0 0.75rem;
  margin-top: 0.5rem;
}

.wl-page .be-plans-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.wl-page .be-plans-header h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f1f1f;
}

.wl-page .be-see-all {
  font-size: 0.7rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.wl-page .be-plans-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wl-page .be-plan-item {
  padding: 0.6rem 0.75rem;
  border-radius: 0.75rem;
  border: 2px solid #e5e5e5;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
}

.wl-page .be-plan-item:hover {
  border-color: rgba(160, 112, 255, 0.3);
}

.wl-page .be-plan-popular {
  border-color: var(--primary-color);
  background: rgba(160, 112, 255, 0.05);
  box-shadow: 0 4px 12px rgba(160, 112, 255, 0.1);
}

.wl-page .be-plan-badge {
  position: absolute;
  top: -0.5rem;
  left: 0.75rem;
  background: var(--primary-color);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  z-index: 5;
}

.wl-page .be-plan-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.wl-page .be-plan-icon {
  font-size: 1.25rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.wl-page .be-plan-icon-popular {
  background: var(--primary-color);
}

.wl-page .be-plan-info {
  flex: 1;
}

.wl-page .be-plan-amount {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1f1f1f;
}

.wl-page .be-plan-details {
  font-size: 0.65rem;
  color: #888;
}

.wl-page .be-plan-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.wl-page .be-plan-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
}

.wl-page .be-plan-btn {
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  background: #f0f0f0;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wl-page .be-plan-btn:hover {
  background: #e0e0e0;
}

.wl-page .be-plan-btn-popular {
  background: var(--primary-color);
  color: white;
}

.wl-page .be-plan-btn-popular:hover {
  background: rgba(160, 112, 255, 0.9);
}


/* --- Float Animation --- */
@keyframes be-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Phone styles removed — storefront now shows customer-facing store */


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .wl-page .rm-title, 
  .wl-page .be-title {
    font-size: 2rem;
  }

  .wl-page .rm-flow-diagram {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wl-page .rm-arrow {
    display: none;
  }

  .wl-page .rm-step-card {
    min-height: auto;
  }

}

@media (max-width: 480px) {
  .wl-page .rm-section, 
  .wl-page .be-section {
    padding: 3rem 1rem;
  }

  .wl-page .rm-title, 
  .wl-page .be-title {
    font-size: 1.75rem;
  }

  .wl-page .rm-subtitle, 
  .wl-page .be-subtitle {
    font-size: 1rem;
  }

  .wl-page .be-balance-top {
    flex-direction: column;
    gap: 0.75rem;
  }

  .wl-page .be-balance-right {
    text-align: left;
  }
}


/* ===== Revenue Calculator ===== */
.wl-page .roi-section { padding: clamp(3rem, 5vw, 5rem) 1.5rem; position: relative; overflow: hidden; }
.wl-page .roi-background { display: none; }
.wl-page .roi-container { max-width: 1060px; margin: 0 auto; }
.wl-page .roi-header { margin-bottom: 28px; }
.wl-page .roi-title { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; margin: 0; line-height: 1.2; color: #fff; }
.wl-page .roi-highlight { color: #a070ff; }
.wl-page .roi-subtitle { font-size: 14px; color: #94A3B8; margin-top: 6px; }

/* Grid */
.wl-page .rc-grid { display: flex; gap: 24px; align-items: flex-start; }
.wl-page .rc-inputs { flex: 0 0 340px; max-width: 360px; }
.wl-page .rc-results { flex: 1; min-width: 0; }

/* Panel */
.wl-page .rc-panel { background: rgba(255,255,255,0.04); border-radius: 16px; padding: 24px; border: 1px solid rgba(255,255,255,0.08); }

/* Sliders */
.wl-page .rc-slider-group { margin-bottom: 24px; }
.wl-page .rc-slider-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.wl-page .rc-slider-label { font-size: 13px; color: #CBD5E1; font-weight: 500; }
.wl-page .rc-slider-value { font-size: 14px; color: #F59E0B; font-weight: 700; }
.wl-page .rc-range { width: 100%; height: 6px; -webkit-appearance: none; appearance: none; border-radius: 3px; background: #1e293b; cursor: pointer; outline: none; }
.wl-page .rc-range::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: #7C3AED; border: 2.5px solid #F1F5F9; cursor: pointer; box-shadow: 0 0 10px rgba(124,58,237,0.4); }
.wl-page .rc-range::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: #7C3AED; border: 2.5px solid #F1F5F9; cursor: pointer; }
.wl-page .rc-slider-limits { display: flex; justify-content: space-between; margin-top: 4px; font-size: 11px; color: #475569; }
.wl-page .rc-slider-hint { font-size: 11px; color: #475569; margin-top: 4px; font-style: italic; }
.wl-page .rc-badge-green { font-size: 10px; color: #10B981; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); border-radius: 4px; padding: 1px 6px; font-weight: 600; white-space: nowrap; }

/* Sales summary */
.wl-page .rc-sales-summary { background: rgba(0,0,0,0.3); border-radius: 12px; padding: 16px; margin-top: 4px; }
.wl-page .rc-sales-row { display: flex; justify-content: space-between; align-items: baseline; }
.wl-page .rc-sales-sublabel { font-size: 11px; color: #64748B; margin-bottom: 2px; }
.wl-page .rc-sales-big { font-size: 28px; font-weight: 800; color: #7C3AED; }
.wl-page .rc-sales-small { font-size: 18px; font-weight: 700; color: #94A3B8; }
.wl-page .rc-sales-note { font-size: 11px; color: #475569; margin-top: 6px; }

/* Tier cards */
.wl-page .rc-tiers { display: flex; gap: 10px; margin-bottom: 12px; }
.wl-page .rc-tier-card { flex: 1; border-radius: 14px; padding: 18px 16px; cursor: pointer; position: relative; background: rgba(255,255,255,0.02); border: 2px solid transparent; transition: all 0.2s; opacity: 0.55; }
.wl-page .rc-tier-card:hover { opacity: 0.8; }
.wl-page .rc-tier-selected { background: rgba(255,255,255,0.04); opacity: 1 !important; border-color: rgba(124,58,237,0.2); }
.wl-page .rc-tier-optimal { border-color: #10B981 !important; }
.wl-page .rc-best-badge { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); background: #10B981; color: #022C22; font-size: 9px; font-weight: 800; padding: 2px 9px; border-radius: 5px; letter-spacing: 0.04em; white-space: nowrap; }
.wl-page .rc-tier-name { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.wl-page .rc-tier-upfront { font-size: 12px; color: #64748B; margin-bottom: 12px; }
.wl-page .rc-tier-breakdown { background: rgba(0,0,0,0.3); border-radius: 8px; padding: 10px 12px; margin-bottom: 12px; }
.wl-page .rc-tier-row { display: flex; justify-content: space-between; font-size: 12px; color: #64748B; margin-bottom: 6px; }
.wl-page .rc-tier-row:last-child { margin-bottom: 0; }
.wl-page .rc-tier-keep { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 6px; font-size: 13px; font-weight: 700; color: #94A3B8; }
.wl-page .rc-tier-keep span:last-child { color: #F1F5F9; font-size: 16px; }
.wl-page .rc-tier-y1-label { font-size: 10px; color: #64748B; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.wl-page .rc-tier-y1-value { font-size: 26px; font-weight: 800; color: #F1F5F9; line-height: 1.1; }
.wl-page .rc-tier-y1-zero { color: #475569; }
.wl-page .rc-tier-warning { font-size: 10px; color: #EF4444; margin-top: 2px; }

/* Recommendation */
.wl-page .rc-recommendation { background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.15); border-radius: 10px; padding: 9px 14px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; font-size: 12px; color: #6EE7B7; }

/* Metric cards */
.wl-page .rc-metrics { display: flex; gap: 10px; }
.wl-page .rc-metric-card { flex: 1; background: rgba(255,255,255,0.04); border-radius: 12px; padding: 16px 14px; border: 1px solid rgba(255,255,255,0.08); }
.wl-page .rc-metric-sup { font-size: 10px; color: #64748B; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-bottom: 2px; }
.wl-page .rc-metric-tier { font-size: 12px; color: #475569; margin-bottom: 6px; }
.wl-page .rc-metric-value { font-size: 28px; font-weight: 800; color: #F1F5F9; }
.wl-page .rc-metric-note { font-size: 11px; color: #475569; margin-top: 4px; }
.wl-page .rc-color-orange { color: #F59E0B; }
.wl-page .rc-color-green { color: #10B981; }
.wl-page .rc-color-red { color: #EF4444; }
.wl-page .rc-color-muted { color: #475569; }

/* Responsive */
@media (max-width: 840px) {
  .wl-page .rc-grid { flex-direction: column; }
  .wl-page .rc-inputs { flex: none; max-width: 100%; width: 100%; }
  .wl-page .rc-tiers { flex-direction: column; }
  .wl-page .rc-metrics { flex-wrap: wrap; }
  .wl-page .rc-metric-card { min-width: calc(50% - 5px); }
}
@media (max-width: 480px) {
  .wl-page .rc-metric-card { min-width: 100%; }
  .wl-page .rc-metric-value { font-size: 22px; }
  .wl-page .rc-tier-y1-value { font-size: 20px; }
}

/* ===== RESET & BASE (scoped) ===== */

/* html, body { -- scoped out */
/*     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; */
/*     line-height: 1.6; */
/* } */

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(160, 112, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(160, 112, 255, 0.5);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(0, -50px);
    }
    75% {
        transform: translate(-30px, -30px);
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.wl-page .ts-section {
    background-color: transparent;
    padding: clamp(3rem, 5vw, 5rem) 1.5rem;
    position: relative;
    overflow: hidden;
}

.wl-page .ts-background-gradient {
    display: none;
}

.wl-page .ts-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.wl-page .ts-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.wl-page .ts-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.wl-page .ts-title .ts-highlight {
    color: #a070ff;
}

.wl-page .ts-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 768px;
    margin: 0 auto;
}

/* Grid */
.wl-page .ts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1344px;
    margin: 0 auto 80px;
}

/* Cards */
.wl-page .ts-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(160, 112, 255, 0.15);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation-delay: var(--delay, 0s);
}

.wl-page .ts-card:hover {
    border-color: rgba(160, 112, 255, 0.3);
    box-shadow: 0 0 40px rgba(160, 112, 255, 0.2);
}

.wl-page .ts-card.in-view {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

.wl-page .ts-card-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    display: none;
}

.wl-page .ts-card-content {
    position: relative;
    z-index: 2;
}

/* Quote Icon */
.wl-page .ts-quote-icon {
    width: 48px;
    height: 48px;
    background-color: #a070ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 24px;
    flex-shrink: 0;
}

/* Stars */
.wl-page .ts-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.wl-page .ts-star {
    color: #f39100;
    font-size: 20px;
    line-height: 1;
}

/* Quote Text */
.wl-page .ts-quote {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Author */
.wl-page .ts-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wl-page .ts-author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.wl-page .ts-author-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.wl-page .ts-author-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Stats */
.wl-page .ts-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.wl-page .ts-stat-item {
    padding: 24px;
}

.wl-page .ts-stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #a070ff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.wl-page .ts-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

/* ===== CONTACT SECTION ===== */
.wl-page .ct-section {
    background-color: transparent;
    padding: clamp(3rem, 5vw, 5rem) 1.5rem;
    position: relative;
    overflow: hidden;
}

.wl-page .ct-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Floating Orbs — disabled */
.wl-page .ct-orb {
    display: none;
}

/* Header */
.wl-page .ct-header {
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.wl-page .ct-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.wl-page .ct-title .ct-highlight {
    color: #a070ff;
}

.wl-page .ct-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 768px;
    margin: 0 auto;
}

/* Card Container */
.wl-page .ct-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .wl-page .ct-card {
        grid-template-columns: 1fr;
    }
}

/* Left Side: Purple Section */
.wl-page .ct-left {
    background: linear-gradient(135deg, #a070ff 0%, #8050e0 100%);
    padding: 48px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wl-page .ct-left-decorative {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.wl-page .ct-left-decorative::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(128px, -128px);
}

.wl-page .ct-left-decorative::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 192px;
    height: 192px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-96px, 96px);
}

.wl-page .ct-left-content {
    position: relative;
    z-index: 2;
}

/* Logo */
.wl-page .ct-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 2px;
}

/* Left Title */
.wl-page .ct-left-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

/* Description */
.wl-page .ct-left-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

/* Benefits List */
.wl-page .ct-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 0 32px;
    padding: 0;
}

.wl-page .ct-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

.wl-page .ct-benefit-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Email Contact */
.wl-page .ct-email-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.85);
}

.wl-page .ct-email-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.wl-page .ct-email-contact a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Right Side: Calendar Embed */
.wl-page .ct-right {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Calendar Header */
.wl-page .ct-calendar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wl-page .ct-calendar-header svg {
    color: #a070ff;
    flex-shrink: 0;
}

/* Cal.com Embed Container */
.wl-page .ct-cal-embed {
    flex: 1;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Style the Cal.com iframe */
.wl-page .ct-cal-embed iframe {
    border-radius: 12px;
    min-height: 400px;
}

/* Placeholder (shown before Cal.com is configured) */
.wl-page .ct-cal-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border: 2px dashed rgba(160, 112, 255, 0.2);
    border-radius: 12px;
    background: rgba(160, 112, 255, 0.03);
    text-align: center;
    padding: 2rem;
}

.wl-page .ct-cal-placeholder-icon {
    color: rgba(160, 112, 255, 0.4);
    margin-bottom: 1rem;
}

.wl-page .ct-cal-placeholder-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.wl-page .ct-cal-placeholder-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    max-width: 280px;
    line-height: 1.5;
}

/* Email Fallback */
.wl-page .ct-email-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 8px;
}

.wl-page .ct-email-fallback a {
    color: #a070ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wl-page .ct-email-fallback a:hover {
    color: #b88fff;
    text-decoration: underline;
}

/* Footer Text (below the card) */
.wl-page .ct-footer-text {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

/* ===== SCROLL ANIMATION CLASSES ===== */
.wl-page .animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

.wl-page .animate-on-scroll.in-view {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .wl-page .ts-section {
        padding: 3rem 1rem;
    }

    .wl-page .ts-title {
        font-size: 36px;
    }

    .wl-page .ts-subtitle {
        font-size: 18px;
    }

    .wl-page .ts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }

    .wl-page .ts-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wl-page .ct-section {
        padding: 3rem 1rem;
    }

    .wl-page .ct-title {
        font-size: 40px;
    }

    .wl-page .ct-left {
        padding: 32px;
    }

    .wl-page .ct-right {
        padding: 24px;
    }

    .wl-page .ct-cal-embed {
        min-height: 350px;
    }

    .wl-page .ct-cal-embed iframe {
        min-height: 350px;
    }

    .wl-page .ct-cal-placeholder {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .wl-page .ts-title {
        font-size: 28px;
    }

    .wl-page .ts-subtitle {
        font-size: 16px;
    }

    .wl-page .ts-card {
        padding: 24px;
    }

    .wl-page .ts-stat-value {
        font-size: 36px;
    }

    .wl-page .ct-title {
        font-size: 32px;
    }

    .wl-page .ct-left-title {
        font-size: 24px;
    }

    .wl-page .ct-left {
        padding: 24px;
    }

    .wl-page .ct-right {
        padding: 20px;
    }

    .wl-page .ct-cal-embed {
        min-height: 320px;
    }

    .wl-page .ct-cal-embed iframe {
        min-height: 320px;
    }

    .wl-page .ct-cal-placeholder {
        min-height: 320px;
        padding: 1.5rem;
    }
}
