/* =========================================================
   WALogic — New Theme  |  Dark Glassmorphism Premium Design
   ========================================================= */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --bg-base: #030b1a;
  --bg-card: rgba(10, 20, 45, 0.72);
  --bg-card-solid: #0a1832;
  --bg-section: #050e22;
  --border: rgba(59, 130, 246, 0.15);
  --border-glow: rgba(59, 130, 246, 0.35);
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --lime: #bcef4a;
  --lime-dark: #9ed436;
  --white: #ffffff;
  --text-primary: #e2e8f0;
  --text-muted: #7a90b0;
  --text-subtle: #4d637f;
  --radius-card: 20px;
  --radius-pill: 999px;
  --shadow-card: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.18);
  --font-body: 'Inter', sans-serif;
  --font-head: 'Space Grotesk', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.15;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.wl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(3, 11, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.wl-header.scrolled {
  background: rgba(3, 11, 26, 0.88);
  padding: 12px 0;
}

.wl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.wl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wl-logo img {
  height: 75px;
  width: auto;
}

.wl-logo span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}

.wl-nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wl-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wl-nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.wl-nav-links a:hover,
.wl-nav-links a.active {
  color: var(--white);
  background: rgba(59, 130, 246, 0.12);
}

.wl-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--lime);
  color: #05150a;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-head);
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(188, 239, 74, 0.28);
}

.wl-nav-cta:hover {
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(188, 239, 74, 0.38);
  color: #05150a;
}

/* Mobile Nav Toggle */
.wl-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: transparent;
  border: none;
  outline: none;
}

.wl-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 991px) {
  .wl-nav-toggle {
    display: flex;
  }

  .wl-nav-links-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 14, 34, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 4px;
  }

  .wl-nav-links-wrap.open {
    display: flex;
  }

  .wl-nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .wl-nav-links a {
    padding: 11px 16px;
    width: 100%;
    border-radius: 12px;
  }

  .wl-nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
}

/* =========================================================
   SECTION COMMON
   ========================================================= */
.wl-section {
  padding: 100px 0;
}

.wl-section-alt {
  background: var(--bg-section);
}

.container-wl {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.wl-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.wl-section-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: wl-pulse 2s ease-in-out infinite;
}

@keyframes wl-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

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

.wl-section-header h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #94b8e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wl-section-header p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================================
   HERO
   ========================================================= */
.wl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59, 130, 246, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 55% 40% at 90% 60%, rgba(188, 239, 74, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 5% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #030b1a 0%, #050e22 100%);
}

/* Grid overlay */
.wl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.wl-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.wl-hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.wl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.wl-hero-badge i {
  color: var(--blue-light);
  font-size: 14px;
}

.wl-hero-badge.lime i {
  color: var(--lime);
}

.wl-hero-badge.green i {
  color: #34d399;
}

.wl-hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--white);
}

.wl-hero-title .accent {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 60%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wl-hero-sub {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.wl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}

/* Primary CTA */
.wl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  background: var(--lime);
  color: #05150a;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 15px;
  box-shadow: 0 10px 34px rgba(188, 239, 74, 0.32);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.wl-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}

.wl-btn-primary:hover::after {
  transform: translateX(100%);
}

.wl-btn-primary:hover {
  background: var(--lime-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(188, 239, 74, 0.4);
  color: #05150a;
}

/* Ghost CTA */
.wl-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid var(--border-glow);
  color: var(--blue-light);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}

.wl-btn-ghost:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero Stats */
.wl-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.wl-hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.wl-hero-stat span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero Visual */
.wl-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wl-hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: wl-glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes wl-glow-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.wl-hero-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  max-width: 420px;
  width: 100%;
  animation: wl-float 6s ease-in-out infinite;
  z-index: 2;
}

@keyframes wl-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-16px);
  }
}

.wl-hero-card-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.wl-hero-mini-card {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  transition: var(--transition);
}

.wl-hero-mini-card:hover {
  background: rgba(59, 130, 246, 0.16);
  border-color: var(--blue);
}

.wl-hero-mini-card i {
  font-size: 24px;
  color: var(--blue-light);
  margin-bottom: 8px;
}

.wl-hero-mini-card span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.wl-hero-mini-card.lime {
  background: rgba(188, 239, 74, 0.08);
  border-color: rgba(188, 239, 74, 0.2);
}

.wl-hero-mini-card.lime i {
  color: var(--lime);
}

.wl-hero-mini-card.purple {
  background: rgba(167, 139, 250, 0.08);
  border-color: rgba(167, 139, 250, 0.2);
}

.wl-hero-mini-card.purple i {
  color: #a78bfa;
}

.wl-hero-mini-card.green {
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.2);
}

.wl-hero-mini-card.green i {
  color: #34d399;
}

/* Status bar */
.wl-hero-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 14px;
}

.wl-hero-status-dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: wl-status-blink 2s ease-in-out infinite;
}

@keyframes wl-status-blink {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(52, 211, 153, 0);
  }
}

.wl-hero-status span {
  font-size: 12px;
  font-weight: 600;
  color: #34d399;
}

.wl-hero-status small {
  font-size: 11px;
  color: var(--text-muted);
}

/* Floating accent cards */
.wl-hero-float-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.wl-hero-float-badge i {
  font-size: 18px;
}

.wl-hero-float-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.wl-float-1 {
  top: -20px;
  right: -30px;
  animation: wl-float 7s ease-in-out infinite 1s;
}

.wl-float-1 i {
  color: var(--lime);
}

.wl-float-2 {
  bottom: 10px;
  left: -30px;
  animation: wl-float 8s ease-in-out infinite 2s;
}

.wl-float-2 i {
  color: #a78bfa;
}

@media (max-width: 991px) {
  .wl-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .wl-hero-title {
    font-size: 42px;
  }

  .wl-hero-badge-row {
    justify-content: center;
  }

  .wl-hero-actions {
    justify-content: center;
  }

  .wl-hero-stats {
    justify-content: center;
  }

  .wl-float-1,
  .wl-float-2 {
    display: none;
  }
}

@media (max-width: 576px) {
  .wl-hero-title {
    font-size: 34px;
  }

  .wl-hero-sub {
    font-size: 16px;
  }

  .wl-hero-card {
    max-width: 320px;
  }
}

/* =========================================================
   SERVICES
   ========================================================= */
.wl-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1199px) {
  .wl-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .wl-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .wl-services-grid {
    grid-template-columns: 1fr;
  }
}

.wl-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.wl-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-color, var(--blue)), transparent);
  opacity: 0;
  transition: var(--transition);
}

.wl-service-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4), var(--shadow-glow);
  background: rgba(10, 24, 52, 0.9);
}

.wl-service-card:hover::before {
  opacity: 1;
}

.wl-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.wl-service-card:hover .wl-service-icon {
  transform: scale(1.1);
}

.wl-service-icon.blue {
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue-light);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.wl-service-icon.lime {
  background: rgba(188, 239, 74, 0.12);
  color: var(--lime);
  border: 1px solid rgba(188, 239, 74, 0.25);
}

.wl-service-icon.purple {
  background: rgba(167, 139, 250, 0.12);
  color: #a78bfa;
  border: 1px solid rgba(167, 139, 250, 0.25);
}

.wl-service-icon.orange {
  background: rgba(251, 146, 60, 0.12);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.25);
}

.wl-service-icon.green {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.wl-service-icon.pink {
  background: rgba(236, 72, 153, 0.12);
  color: #f472b6;
  border: 1px solid rgba(236, 72, 153, 0.25);
}

.wl-service-icon.cyan {
  background: rgba(34, 211, 238, 0.12);
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.25);
}

.wl-service-icon.red {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.wl-service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.wl-service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.wl-service-tag {
  display: inline-flex;
  margin-top: 16px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(59, 130, 246, 0.08);
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border);
}

.wl-service-tag.new {
  background: rgba(188, 239, 74, 0.1);
  color: var(--lime);
  border-color: rgba(188, 239, 74, 0.2);
}

/* =========================================================
   ABOUT / STATS
   ========================================================= */
.wl-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 991px) {
  .wl-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.wl-about-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.wl-about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.wl-about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 14px;
}

.wl-about-img-badge i {
  font-size: 28px;
  color: var(--lime);
}

.wl-about-img-badge strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.wl-about-img-badge span {
  font-size: 12px;
  color: var(--text-muted);
}

.wl-about-content p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.wl-checklist {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.wl-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
}

.wl-checklist li i {
  color: var(--blue);
  margin-top: 2px;
  font-size: 18px;
  flex-shrink: 0;
}

.wl-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.wl-stat-box {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}

.wl-stat-box:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.wl-stat-box strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-head);
  margin-bottom: 4px;
}

.wl-stat-box span {
  font-size: 12px;
  color: var(--text-muted);
}

/* =========================================================
   SOCIETY APP TEASER
   ========================================================= */
.wl-app-teaser {
  background: linear-gradient(135deg, rgba(5, 14, 34, 0.8) 0%, rgba(10, 24, 52, 0.9) 100%);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.wl-app-teaser::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.wl-app-teaser::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(188, 239, 74, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.wl-app-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .wl-app-teaser-inner {
    grid-template-columns: 1fr;
  }

  .wl-app-teaser {
    padding: 40px 28px;
  }
}

.wl-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(188, 239, 74, 0.1);
  border: 1px solid rgba(188, 239, 74, 0.25);
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wl-app-teaser h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 18px;
}

.wl-app-teaser p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.wl-app-highlights {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.wl-app-hl {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
}

.wl-app-hl i {
  color: var(--blue-light);
  font-size: 18px;
}

.wl-app-screenshots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: end;
}

.wl-app-ss {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.wl-app-ss:nth-child(2) {
  transform: translateY(-16px);
}

.wl-app-ss img {
  width: 100%;
  display: block;
}

.wl-app-ss:hover {
  transform: translateY(-6px) !important;
  border-color: var(--border-glow);
}

.wl-app-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.wl-app-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(10, 24, 52, 0.8);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
}

.wl-app-pill i {
  color: var(--blue-light);
}

/* =========================================================
   PROCESS / WHY US
   ========================================================= */
.wl-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.wl-process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), var(--border-glow), transparent);
  pointer-events: none;
}

@media (max-width: 991px) {
  .wl-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wl-process-grid::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .wl-process-grid {
    grid-template-columns: 1fr;
  }
}

.wl-process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}

.wl-process-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.wl-process-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card-solid), rgba(59, 130, 246, 0.15));
  border: 2px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-light);
  font-family: var(--font-head);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  background: var(--bg-base);
}

.wl-process-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.wl-process-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================================
   CONTACT
   ========================================================= */
.wl-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 991px) {
  .wl-contact-grid {
    grid-template-columns: 1fr;
  }
}

.wl-contact-left h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}

.wl-contact-left p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* WhatsApp cards */
.wl-wa-cards {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.wl-wa-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(37, 211, 102, 0.07);
  border: 1px solid rgba(37, 211, 102, 0.2);
  text-decoration: none;
  transition: var(--transition);
}

.wl-wa-card:hover {
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.4);
  transform: translateX(6px);
}

.wl-wa-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(37, 211, 102, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  color: #25d366;
}

.wl-wa-info {
  flex: 1;
}

.wl-wa-info small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #25d366;
  margin-bottom: 4px;
}

.wl-wa-info strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.wl-wa-card i.bi-arrow-right-circle {
  font-size: 22px;
  color: rgba(37, 211, 102, 0.5);
  transition: var(--transition);
}

.wl-wa-card:hover i.bi-arrow-right-circle {
  color: #25d366;
}

.wl-contact-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}

.wl-contact-note i {
  color: var(--blue-light);
  font-size: 18px;
  flex-shrink: 0;
}

/* Calendly card */
.wl-calendly-card {
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.wl-calendly-header {
  padding: 24px 28px 12px;
}

.wl-calendly-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wl-calendly-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.wl-calendly-header p {
  font-size: 14px;
  color: var(--text-muted);
}

/* re-theme calendly widget background */
.wl-calendly-card .calendly-inline-widget {
  background: transparent !important;
}

/* =========================================================
   FOOTER
   ========================================================= */
.wl-footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.wl-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 991px) {
  .wl-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .wl-footer-top {
    grid-template-columns: 1fr;
  }
}

.wl-footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 14px 0 20px;
}

.wl-footer-socials {
  display: flex;
  gap: 10px;
}

.wl-footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--transition);
}

.wl-footer-socials a:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--border-glow);
  color: var(--blue-light);
  transform: translateY(-2px);
}

.wl-footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.wl-footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.wl-footer-col ul a {
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}

.wl-footer-col ul a:hover {
  color: var(--blue-light);
  padding-left: 4px;
}

.wl-footer-wa a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #25d366;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  margin-bottom: 10px;
}

.wl-footer-wa a:hover {
  color: #2eeb76;
  padding-left: 4px;
}

.wl-footer-wa a i {
  font-size: 18px;
}

.wl-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.wl-footer-copy {
  color: var(--text-subtle);
  font-size: 13px;
}

.wl-footer-copy a {
  color: var(--blue-light);
}

/* =========================================================
   APP SCREENSHOTS (for society-app.html)
   ========================================================= */
.wl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 991px) {
  .wl-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .wl-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   Universal Mobile Adjustments
   ========================================================= */
@media (max-width: 767px) {
  .wl-logo img {
    height: 60px;
  }
  
  .wl-section {
    padding: 60px 0;
  }
  
  .wl-stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .wl-app-screenshots {
    gap: 8px;
  }
  
  .wl-app-ss:nth-child(2) {
    transform: translateY(-8px);
  }
}

.wl-gallery-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--bg-card);
}

.wl-gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-glow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.wl-gallery-item.tall {
  grid-row: span 2;
}

.wl-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pricing */
.wl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 767px) {
  .wl-pricing-grid {
    grid-template-columns: 1fr;
  }
}

.wl-plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.wl-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.wl-plan-card.featured {
  background: linear-gradient(160deg, #0a3070 0%, #0d1f4a 100%);
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-glow);
}

.wl-plan-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.wl-plan-label {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--border);
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wl-plan-price {
  margin-bottom: 24px;
}

.wl-plan-price .amount {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
}

.wl-plan-price .period {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

.wl-plan-features {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.wl-plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
}

.wl-plan-features li i {
  color: #34d399;
  font-size: 16px;
}

.wl-plan-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-pill);
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-head);
  transition: var(--transition);
  border: 1px solid var(--border-glow);
  color: var(--blue-light);
  background: transparent;
}

.wl-plan-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  color: var(--white);
}

.wl-plan-card.featured .wl-plan-btn {
  background: var(--lime);
  color: #05150a;
  border-color: var(--lime);
}

.wl-plan-card.featured .wl-plan-btn:hover {
  background: var(--lime-dark);
  color: #05150a;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.wl-back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.wl-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.wl-back-to-top:hover {
  background: var(--blue-light);
  transform: translateY(-3px);
  color: var(--white);
}

/* Section spacing */
@media (max-width: 767px) {
  .wl-section {
    padding: 70px 0;
  }

  .wl-section-header h2 {
    font-size: 32px;
  }

  .wl-app-teaser {
    border-radius: 20px;
  }
}