
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --ze-navy:          #0a0e1a;
  --ze-navy-mid:      #111827;
  --ze-navy-light:    #1a2236;
  --ze-purple:        #6c3de8;
  --ze-purple-bright: #8b5cf6;
  --ze-purple-glow:   rgba(108, 61, 232, 0.3);
  --ze-cyan:          #06b6d4;
  --ze-cyan-light:    #67e8f9;
  --ze-cyan-glow:     rgba(6, 182, 212, 0.25);
  --ze-green:         #10b981;
  --ze-pink:          #ec4899;
  --ze-white:         #ffffff;
  --ze-gray-100:      #f9fafb;
  --ze-gray-200:      #e5e7eb;
  --ze-gray-400:      #9ca3af;
  --ze-gray-500:      #6b7280;
  --ze-gray-600:      #4b5563;
  --ze-gray-700:      #374151;
  --ze-gray-800:      #1f2937;
  --ze-text:          #e2e8f0;
  --ze-text-muted:    #94a3b8;
  --ze-accent-gold:   #f59e0b;
  --ze-radius:        10px;
  --ze-radius-lg:     18px;
  --ze-radius-xl:     28px;
  --ze-shadow-sm:     0 2px 8px rgba(0,0,0,0.3);
  --ze-shadow-md:     0 8px 32px rgba(0,0,0,0.4);
  --ze-shadow-glow:   0 0 30px rgba(108, 61, 232, 0.4);
  --ze-shadow-cyan:   0 0 30px rgba(6, 182, 212, 0.3);
  --ze-transition:    all 0.3s ease;
  --ze-font-display:  'Orbitron', sans-serif;
  --ze-font-body:     'Inter', sans-serif;
  --ze-font-alt:      'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ze-font-body);
  background-color: var(--ze-navy);
  color: var(--ze-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--ze-cyan-light);
}

.ze-display-font {
  font-family: var(--ze-font-display);
  letter-spacing: 0.05em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ze-font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ze-white);
}

.ze-section-title {
  font-family: var(--ze-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ze-white);
}

.ze-section-subtitle {
  font-size: 1.1rem;
  color: var(--ze-text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

.ze-label-text {
  font-family: var(--ze-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ze-cyan);
}

.ze-text-gradient {
  background: linear-gradient(135deg, var(--ze-cyan), var(--ze-purple-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ze-text-glow {
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
}

.ze-bg-dark {
  background-color: var(--ze-navy-mid);
}

.ze-bg-darker {
  background-color: var(--ze-navy);
}

.ze-bg-card {
  background-color: var(--ze-navy-light);
}

.ze-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--ze-purple), var(--ze-cyan));
  color: var(--ze-white);
  font-family: var(--ze-font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--ze-transition);
  position: relative;
  overflow: hidden;
}

.ze-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ze-purple-bright), var(--ze-cyan-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ze-btn-primary:hover::before {
  opacity: 1;
}

.ze-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--ze-shadow-glow);
  color: var(--ze-white);
}

.ze-btn-primary span, .ze-btn-primary i {
  position: relative;
  z-index: 1;
}

.ze-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ze-cyan);
  font-family: var(--ze-font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.82rem 2rem;
  border-radius: 50px;
  border: 1.5px solid var(--ze-cyan);
  cursor: pointer;
  transition: var(--ze-transition);
}

.ze-btn-outline:hover {
  background: var(--ze-cyan-glow);
  color: var(--ze-cyan-light);
  transform: translateY(-2px);
  box-shadow: var(--ze-shadow-cyan);
}

.ze-navbar-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--ze-transition);
}

.ze-navbar-main.ze-scrolled {
  background: rgba(10, 14, 26, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108, 61, 232, 0.2);
  padding: 0.65rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.ze-brand-logo {
  font-family: var(--ze-font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ze-white) !important;
  letter-spacing: 0.1em;
}

.ze-brand-logo span {
  color: var(--ze-cyan);
}

.ze-nav-link {
  font-family: var(--ze-font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ze-text-muted) !important;
  transition: var(--ze-transition);
  padding: 0.4rem 0.75rem !important;
  position: relative;
}

.ze-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--ze-cyan);
  transition: width 0.3s ease;
}

.ze-nav-link:hover {
  color: var(--ze-cyan) !important;
}

.ze-nav-link:hover::after {
  width: 60%;
}

.ze-nav-cta {
  font-family: var(--ze-font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--ze-purple), var(--ze-cyan));
  color: var(--ze-white) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 50px;
  transition: var(--ze-transition);
}

.ze-nav-cta:hover {
  box-shadow: var(--ze-shadow-glow);
  transform: translateY(-1px);
}

.ze-toggler-custom {
  border: 1px solid rgba(108,61,232,0.4) !important;
  padding: 0.4rem 0.7rem !important;
}

.ze-toggler-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28107%2C 95%2C 246%2C 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.ze-hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ze-navy);
}

.ze-hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(108,61,232,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(6,182,212,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 20%, rgba(139,92,246,0.1) 0%, transparent 50%);
  z-index: 1;
}

.ze-hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,61,232,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,61,232,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
}

.ze-hero-content {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
}

.ze-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(108,61,232,0.15);
  border: 1px solid rgba(108,61,232,0.3);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.75rem;
}

.ze-hero-heading {
  font-family: var(--ze-font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--ze-white);
  margin-bottom: 1.5rem;
}

.ze-hero-sub {
  font-size: 1.15rem;
  color: var(--ze-text-muted);
  line-height: 1.8;
  max-width: 550px;
  margin-bottom: 2.5rem;
}

.ze-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.ze-hero-stats-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.ze-hero-stat-item {
  display: flex;
  flex-direction: column;
}

.ze-hero-stat-num {
  font-family: var(--ze-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ze-cyan);
}

.ze-hero-stat-label {
  font-size: 0.75rem;
  color: var(--ze-text-muted);
  letter-spacing: 0.05em;
}

.ze-hero-image-block {
  position: relative;
  z-index: 5;
}

.ze-hero-img-frame {
  position: relative;
  border-radius: var(--ze-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(108,61,232,0.3);
  box-shadow: var(--ze-shadow-glow), 0 40px 80px rgba(0,0,0,0.6);
}

.ze-hero-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  opacity: 0.85;
}

.ze-hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(10,14,26,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(108,61,232,0.3);
  border-radius: var(--ze-radius);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ze-wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.ze-wave-divider svg {
  display: block;
  width: 100%;
}

.ze-section-padding {
  padding: 6rem 0;
}

.ze-section-padding-sm {
  padding: 4rem 0;
}

.ze-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ze-selector-section {
  background: var(--ze-navy-mid);
  padding: 6rem 0;
  position: relative;
}

.ze-filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.ze-filter-tab {
  font-family: var(--ze-font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1.5px solid rgba(108,61,232,0.3);
  background: transparent;
  color: var(--ze-text-muted);
  cursor: pointer;
  transition: var(--ze-transition);
}

.ze-filter-tab:hover,
.ze-filter-tab.ze-active-tab {
  background: linear-gradient(135deg, var(--ze-purple), var(--ze-cyan));
  border-color: transparent;
  color: var(--ze-white);
  box-shadow: var(--ze-shadow-glow);
}

.ze-experience-panel {
  display: none;
  animation: ze-fadeIn 0.4s ease;
}

.ze-experience-panel.ze-panel-active {
  display: block;
}

.ze-card {
  background: var(--ze-navy-light);
  border: 1px solid rgba(108,61,232,0.15);
  border-radius: var(--ze-radius-lg);
  overflow: hidden;
  transition: var(--ze-transition);
}

.ze-card:hover {
  border-color: rgba(108,61,232,0.4);
  transform: translateY(-4px);
  box-shadow: var(--ze-shadow-glow), var(--ze-shadow-md);
}

.ze-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.ze-card-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ze-card:hover .ze-card-img-wrap img {
  transform: scale(1.05);
}

.ze-card-body {
  padding: 1.5rem;
}

.ze-card-tag {
  display: inline-block;
  font-family: var(--ze-font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ze-cyan);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.ze-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ze-white);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.ze-card-text {
  font-size: 0.9rem;
  color: var(--ze-text-muted);
  line-height: 1.7;
}

.ze-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(108,61,232,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ze-insight-card {
  background: var(--ze-navy-light);
  border: 1px solid rgba(108,61,232,0.15);
  border-radius: var(--ze-radius-lg);
  overflow: hidden;
  transition: var(--ze-transition);
  height: 100%;
}

.ze-insight-card:hover {
  border-color: var(--ze-purple);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(108,61,232,0.3);
}

.ze-insight-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ze-insight-card:hover .ze-insight-img {
  transform: scale(1.06);
}

.ze-insight-img-wrap {
  overflow: hidden;
  position: relative;
}

.ze-insight-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(10,14,26,0.8));
}

.ze-insight-body {
  padding: 1.75rem;
}

.ze-stats-section {
  background: linear-gradient(135deg, var(--ze-purple) 0%, rgba(6,182,212,0.8) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.ze-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ze-animated-stat-block {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ze-stat-num {
  font-family: var(--ze-font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--ze-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ze-stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.ze-team-card-member {
  background: var(--ze-navy-light);
  border: 1px solid rgba(108,61,232,0.15);
  border-radius: var(--ze-radius-lg);
  overflow: hidden;
  transition: var(--ze-transition);
  text-align: center;
}

.ze-team-card-member:hover {
  border-color: rgba(6,182,212,0.4);
  transform: translateY(-4px);
  box-shadow: var(--ze-shadow-cyan);
}

.ze-team-img-wrap {
  overflow: hidden;
  position: relative;
  height: 260px;
}

.ze-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.ze-team-card-member:hover .ze-team-img {
  transform: scale(1.05);
}

.ze-team-info {
  padding: 1.5rem;
}

.ze-team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ze-white);
  margin-bottom: 0.25rem;
}

.ze-team-role {
  font-family: var(--ze-font-display);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--ze-cyan);
  margin-bottom: 0.75rem;
}

.ze-team-bio {
  font-size: 0.85rem;
  color: var(--ze-text-muted);
  line-height: 1.65;
}

.ze-team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.ze-team-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(108,61,232,0.15);
  color: var(--ze-text-muted);
  font-size: 0.8rem;
  transition: var(--ze-transition);
}

.ze-team-social a:hover {
  background: var(--ze-purple);
  color: var(--ze-white);
}

.ze-review-slider-container {
  position: relative;
  overflow: hidden;
}

.ze-reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ze-review-slide {
  flex: 0 0 100%;
  padding: 0 1rem;
}

.ze-review-card {
  background: var(--ze-navy-light);
  border: 1px solid rgba(108,61,232,0.15);
  border-radius: var(--ze-radius-lg);
  padding: 2rem;
  height: 100%;
}

.ze-review-stars {
  color: var(--ze-accent-gold);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.ze-review-text {
  font-size: 0.95rem;
  color: var(--ze-text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.ze-reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ze-reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(108,61,232,0.4);
}

.ze-reviewer-name {
  font-weight: 600;
  color: var(--ze-white);
  font-size: 0.9rem;
}

.ze-reviewer-detail {
  font-size: 0.75rem;
  color: var(--ze-text-muted);
}

.ze-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.ze-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(108,61,232,0.15);
  border: 1.5px solid rgba(108,61,232,0.3);
  color: var(--ze-purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ze-transition);
}

.ze-slider-btn:hover {
  background: var(--ze-purple);
  border-color: var(--ze-purple);
  color: var(--ze-white);
}

.ze-slider-dots {
  display: flex;
  gap: 0.5rem;
}

.ze-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(108,61,232,0.3);
  cursor: pointer;
  transition: var(--ze-transition);
}

.ze-slider-dot.ze-dot-active {
  background: var(--ze-purple);
  width: 24px;
  border-radius: 4px;
}

.ze-faq-item {
  border: 1px solid rgba(108,61,232,0.2);
  border-radius: var(--ze-radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--ze-transition);
}

.ze-faq-item.ze-faq-open {
  border-color: rgba(108,61,232,0.5);
}

.ze-faq-question {
  width: 100%;
  background: var(--ze-navy-light);
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  transition: var(--ze-transition);
  color: var(--ze-white);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--ze-font-body);
}

.ze-faq-question:hover {
  background: rgba(108,61,232,0.1);
}

.ze-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(108,61,232,0.2);
  color: var(--ze-purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.ze-faq-open .ze-faq-icon {
  transform: rotate(45deg);
  background: var(--ze-purple);
  color: var(--ze-white);
}

.ze-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(108,61,232,0.05);
}

.ze-faq-open .ze-faq-answer {
  max-height: 400px;
}

.ze-faq-answer p {
  padding: 1rem 1.5rem;
  color: var(--ze-text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.ze-newsletter-section {
  background: linear-gradient(135deg, var(--ze-navy-light), rgba(108,61,232,0.2));
  border: 1px solid rgba(108,61,232,0.2);
  border-radius: var(--ze-radius-xl);
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.ze-newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.1), transparent 70%);
  pointer-events: none;
}

.ze-newsletter-form-wrap {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  flex-wrap: wrap;
}

.ze-newsletter-input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(108,61,232,0.3);
  border-radius: 50px;
  padding: 0.85rem 1.5rem;
  color: var(--ze-white);
  font-family: var(--ze-font-body);
  font-size: 0.9rem;
  transition: var(--ze-transition);
}

.ze-newsletter-input::placeholder {
  color: var(--ze-text-muted);
}

.ze-newsletter-input:focus {
  outline: none;
  border-color: var(--ze-cyan);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.15);
}

.ze-progress-bar-wrap {
  background: rgba(108,61,232,0.15);
  border-radius: 50px;
  height: 6px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.ze-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ze-purple), var(--ze-cyan));
  border-radius: 50px;
  width: 0;
  transition: width 1.5s ease;
}

.ze-community-metric {
  margin-bottom: 1.5rem;
}

.ze-community-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--ze-text-muted);
}

.ze-community-label span:last-child {
  color: var(--ze-cyan);
  font-weight: 600;
}

.ze-article-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: var(--ze-navy);
  position: relative;
  overflow: hidden;
}

.ze-article-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(108,61,232,0.15) 0%, transparent 70%);
}

.ze-article-heading {
  font-family: var(--ze-font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ze-white);
  line-height: 1.15;
}

.ze-article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.ze-article-meta span {
  font-size: 0.82rem;
  color: var(--ze-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ze-article-meta span i {
  color: var(--ze-purple-bright);
}

.ze-article-featured-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--ze-radius-xl);
  border: 1px solid rgba(108,61,232,0.2);
}

.ze-article-body {
  color: var(--ze-text-muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.ze-article-body h2 {
  font-family: var(--ze-font-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--ze-white);
  margin: 2.5rem 0 1rem;
}

.ze-article-body h3 {
  font-size: 1.15rem;
  color: var(--ze-cyan-light);
  margin: 2rem 0 0.75rem;
}

.ze-article-body p {
  margin-bottom: 1.5rem;
}

.ze-article-body blockquote {
  border-left: 3px solid var(--ze-purple);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(108,61,232,0.08);
  border-radius: 0 var(--ze-radius) var(--ze-radius) 0;
  font-style: italic;
  color: var(--ze-text);
}

.ze-article-body ul, .ze-article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.ze-article-body li {
  margin-bottom: 0.5rem;
}

.ze-contact-form {
  background: var(--ze-navy-light);
  border: 1px solid rgba(108,61,232,0.2);
  border-radius: var(--ze-radius-xl);
  padding: 2.5rem;
}

.ze-form-group {
  margin-bottom: 1.25rem;
}

.ze-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ze-text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.ze-form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(108,61,232,0.25);
  border-radius: var(--ze-radius);
  padding: 0.85rem 1.25rem;
  color: var(--ze-white);
  font-family: var(--ze-font-body);
  font-size: 0.95rem;
  transition: var(--ze-transition);
}

.ze-form-control::placeholder {
  color: rgba(148,163,184,0.5);
}

.ze-form-control:focus {
  outline: none;
  border-color: var(--ze-cyan);
  background: rgba(6,182,212,0.05);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.1);
}

.ze-form-control.ze-input-error {
  border-color: #ef4444;
}

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

.ze-captcha-box {
  background: rgba(108,61,232,0.08);
  border: 1.5px solid rgba(108,61,232,0.25);
  border-radius: var(--ze-radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ze-captcha-question {
  font-family: var(--ze-font-display);
  font-size: 0.85rem;
  color: var(--ze-cyan);
  font-weight: 600;
}

.ze-captcha-input {
  width: 80px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(108,61,232,0.3);
  border-radius: var(--ze-radius);
  padding: 0.5rem 0.75rem;
  color: var(--ze-white);
  font-size: 0.9rem;
  text-align: center;
}

.ze-form-error-msg {
  font-size: 0.75rem;
  color: #f87171;
  margin-top: 0.3rem;
  display: none;
}

.ze-form-error-msg.ze-visible {
  display: block;
}

.ze-info-card {
  background: var(--ze-navy-light);
  border: 1px solid rgba(108,61,232,0.15);
  border-radius: var(--ze-radius-lg);
  padding: 1.75rem;
}

.ze-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ze-purple), var(--ze-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--ze-white);
  margin-bottom: 1rem;
}

.ze-page-hero {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background: var(--ze-navy-mid);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ze-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(108,61,232,0.12) 0%, transparent 70%);
}

.ze-page-hero-content {
  position: relative;
  z-index: 2;
}

.ze-page-title {
  font-family: var(--ze-font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--ze-white);
  margin-bottom: 1rem;
}

.ze-legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--ze-text-muted);
  font-size: 0.96rem;
  line-height: 1.85;
}

.ze-legal-content h2 {
  font-size: 1.3rem;
  color: var(--ze-white);
  margin: 2.5rem 0 1rem;
  font-family: var(--ze-font-display);
  letter-spacing: 0.03em;
}

.ze-legal-content h3 {
  font-size: 1.05rem;
  color: var(--ze-cyan-light);
  margin: 1.75rem 0 0.75rem;
}

.ze-legal-content p {
  margin-bottom: 1.25rem;
}

.ze-legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.ze-legal-content li {
  margin-bottom: 0.5rem;
}

.ze-footer-main {
  background: var(--ze-navy-mid);
  border-top: 1px solid rgba(108,61,232,0.15);
  padding-top: 5rem;
}

.ze-footer-brand p {
  font-size: 0.9rem;
  color: var(--ze-text-muted);
  margin-top: 1rem;
  line-height: 1.7;
}

.ze-footer-heading {
  font-family: var(--ze-font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ze-cyan);
  margin-bottom: 1.25rem;
}

.ze-footer-links {
  list-style: none;
  padding: 0;
}

.ze-footer-links li {
  margin-bottom: 0.6rem;
}

.ze-footer-links a {
  font-size: 0.88rem;
  color: var(--ze-text-muted);
  transition: var(--ze-transition);
}

.ze-footer-links a:hover {
  color: var(--ze-cyan);
  padding-left: 4px;
}

.ze-footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--ze-text-muted);
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.ze-footer-contact-item i {
  color: var(--ze-purple-bright);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.ze-footer-bottom {
  border-top: 1px solid rgba(108,61,232,0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.ze-footer-bottom p {
  font-size: 0.8rem;
  color: rgba(148,163,184,0.6);
  margin: 0;
}

.ze-social-icons {
  display: flex;
  gap: 0.75rem;
}

.ze-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(108,61,232,0.15);
  border: 1px solid rgba(108,61,232,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ze-text-muted);
  font-size: 0.85rem;
  transition: var(--ze-transition);
}

.ze-social-icon:hover {
  background: var(--ze-purple);
  border-color: var(--ze-purple);
  color: var(--ze-white);
  transform: translateY(-2px);
}

.ze-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: min(600px, 92vw);
  background: var(--ze-navy-light);
  border: 1px solid rgba(108,61,232,0.4);
  border-radius: var(--ze-radius-lg);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: var(--ze-shadow-md), var(--ze-shadow-glow);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.ze-cookie-banner.ze-cookie-visible {
  transform: translateX(-50%) translateY(0);
}

.ze-cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ze-text-muted);
  flex: 1;
  min-width: 200px;
}

.ze-cookie-banner p a {
  color: var(--ze-cyan);
}

.ze-cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ze-cookie-accept {
  background: linear-gradient(135deg, var(--ze-purple), var(--ze-cyan));
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ze-transition);
}

.ze-cookie-accept:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.ze-cookie-decline {
  background: transparent;
  color: var(--ze-text-muted);
  border: 1px solid rgba(148,163,184,0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--ze-transition);
}

.ze-cookie-decline:hover {
  border-color: var(--ze-gray-400);
  color: var(--ze-text);
}

.ze-thankyou-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}

.ze-thankyou-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--ze-purple), var(--ze-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto 1.5rem;
  animation: ze-pulse 2s infinite;
}

.ze-map-embed {
  border-radius: var(--ze-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(108,61,232,0.2);
}

.ze-float-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
  animation: ze-float 6s ease-in-out infinite;
}

.ze-float-shape:nth-child(2) { animation-delay: -2s; animation-duration: 8s; }
.ze-float-shape:nth-child(3) { animation-delay: -4s; animation-duration: 7s; }

@media (max-width: 991px) {
  .ze-hero-section { min-height: auto; padding: 8rem 0 4rem; }
  .ze-hero-image-block { margin-top: 2.5rem; }
  .ze-newsletter-section { padding: 2.5rem; }
}

@media (max-width: 767px) {
  .ze-section-padding { padding: 4rem 0; }
  .ze-hero-heading { font-size: 2rem; }
  .ze-stat-num { font-size: 2rem; }
  .ze-footer-main .row > div { margin-bottom: 2rem; }
}


.ze-brand-logo img{
  max-width: 150px;
  object-fit: contain;
}

.ze-game-tag, .ze-badge-cyan, .ze-badge-gold{
  width: max-content;
}