:root {
  --bg-darker: #060919;
  --bg-dark: #0A0F24;
  --bg-dark-2: #121838;
  --nav-bg: rgba(6, 10, 25, 0.94);
  --navy: #0B2545;
  --gold: #D4AF37;
  --gold-light: #F3C969;
  --purple: #7C3AED;
  --purple-light: #A78BFA;
  --teal: #00E5BE;
  --teal-accent: #14B8A6;
  --teal-light: #5EEAD4;
  --off-white: #F8F7FC;
  --paper: #FFFFFF;
  --ink: #141124;
  --slate: #645C77;
  --line: rgba(255, 255, 255, 0.09);
  --grad: linear-gradient(90deg, #8B5CF6 0%, #6366F1 40%, #06B6D4 80%, #00E5BE 100%);
  --grad-hover: linear-gradient(90deg, #7C3AED 0%, #4F46E5 40%, #0891B2 80%, #10B981 100%);
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a, button, [role="button"] {
  cursor: pointer !important;
}

h1, h2, h3, h4, .display-font {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
}

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

@media (max-width: 768px) {
  .section-pad {
    padding: 4rem 0;
  }
}

/* ==================== DARK SLEEK NAVBAR (MATCHING REFERENCE) ==================== */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.navbar-scrolled {
  background: rgba(4, 7, 18, 0.98);
  border-bottom-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

/* Navbar Brand Logo */
.ezus-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer !important;
  transition: transform 0.2s ease;
}

.ezus-brand:hover {
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.brand-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.brand-title .brand-accent {
  background: linear-gradient(135deg, #A78BFA 0%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav links styling */
.nav-pills-custom .nav-link {
  color: rgba(248, 247, 252, 0.85);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 0.6rem 1.15rem;
  margin: 0 0.15rem;
  transition: all 0.22s ease;
  text-decoration: none;
  position: relative;
  cursor: pointer !important;
}

.nav-pills-custom .nav-link:hover,
.nav-pills-custom .nav-link:focus {
  color: #ffffff;
  opacity: 1;
}

/* Active Link State with Teal Underline */
.nav-pills-custom .nav-link.active-link,
.nav-pills-custom .nav-link:hover {
  color: #00E5BE !important;
}

.nav-pills-custom .nav-link.active-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 1.15rem;
  right: 1.15rem;
  height: 3px;
  border-radius: 999px;
  background: #00E5BE;
  box-shadow: 0 0 10px rgba(0, 229, 190, 0.7);
}

/* Dropdown Menu */
.dropdown-menu-dark-custom {
  background: #0B1028;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.5rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  margin-top: 0.75rem;
}

.dropdown-menu-dark-custom .dropdown-item {
  color: rgba(248, 247, 252, 0.85);
  font-size: 0.92rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-menu-dark-custom .dropdown-item:hover {
  background: rgba(124, 58, 237, 0.2);
  color: #00E5BE;
}

/* 24/7 Live Indicator Pill */
.nav-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #00E5BE;
  background: rgba(0, 229, 190, 0.08);
  padding: 0.48rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 190, 0.3);
  margin-right: 0.85rem;
  user-select: none;
  transition: all 0.25s ease;
}

.nav-live-indicator:hover {
  background: rgba(0, 229, 190, 0.14);
  border-color: rgba(0, 229, 190, 0.6);
  box-shadow: 0 0 14px rgba(0, 229, 190, 0.25);
}

.nav-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00E5BE;
  animation: navPulse 1.8s infinite;
}

@keyframes navPulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 229, 190, 0.6); }
  70% { box-shadow: 0 0 0 7px rgba(0, 229, 190, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 229, 190, 0); }
}

/* WhatsApp CTA Button in Navbar (Exact Match) */
.btn-nav-whatsapp {
  background: var(--grad);
  color: #ffffff !important;
  border: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35), 0 0 12px rgba(0, 229, 190, 0.25);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer !important;
}

.btn-nav-whatsapp:hover {
  background: var(--grad-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 229, 190, 0.45);
  color: #ffffff;
}

.navbar-toggler-custom {
  padding: 0.45rem 0.75rem;
  font-size: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
  cursor: pointer !important;
}

.navbar-toggler-custom:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #00E5BE !important;
}

.navbar-toggler-custom:focus {
  box-shadow: 0 0 0 3px rgba(0, 229, 190, 0.3);
  outline: none;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #0B1028;
    border-radius: 18px;
    padding: 1.4rem 1.1rem;
    margin-top: 0.85rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav-pills-custom .nav-link {
    padding: 0.75rem 1rem;
    margin: 0.2rem 0;
    border-radius: 10px;
    font-size: 1rem;
  }
  .nav-live-indicator {
    display: inline-flex;
    margin: 0.6rem 0 1rem;
    width: fit-content;
  }
  .btn-nav-whatsapp {
    width: 100%;
  }
}

/* ==================== BUTTONS ==================== */
.btn-grad {
  background: var(--grad);
  color: #ffffff !important;
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.28);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer !important;
}

.btn-grad:hover {
  background: var(--grad-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 229, 190, 0.4);
  color: #ffffff;
}

.btn-outline-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  background: transparent;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer !important;
}

.btn-outline-ghost:hover {
  border-color: #00E5BE;
  color: #00E5BE !important;
  background: rgba(0, 229, 190, 0.1);
  transform: translateY(-2px);
}

.btn-whatsapp-direct {
  background: #25D366;
  color: #ffffff !important;
  border: none;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer !important;
}

.btn-whatsapp-direct:hover {
  background: #20BA56;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

/* ==================== HERO ==================== */
.hero {
  background: var(--bg-darker);
  background-image:
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(124, 58, 237, 0.35), transparent 60%),
    radial-gradient(ellipse 55% 45% at 10% 95%, rgba(0, 229, 190, 0.2), transparent 60%);
  color: var(--off-white);
  padding: 9.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding: 7.5rem 0 4.5rem;
  }
}

.hero .eyebrow {
  color: var(--teal-light);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: #ffffff;
}

.hero h1 .accent {
  background: linear-gradient(90deg, #5EEAD4, #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p.lead {
  color: rgba(248, 247, 252, 0.75);
  font-size: 1.12rem;
  max-width: 540px;
}

.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.hero-logo-img {
  height: 68px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.9rem 0.6rem;
  text-align: center;
  height: 100%;
}

.stat-pill .num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #ffffff;
}

.stat-pill .lab {
  font-size: 0.72rem;
  color: rgba(248, 247, 252, 0.6);
}

/* ==================== CALL CARD / WAVEFORM ==================== */
.call-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 1.75rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 440px;
}

@media (max-width: 576px) {
  .call-card {
    padding: 1.25rem;
    border-radius: 18px;
  }
}

.call-card .agent-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.agent-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00E5BE;
  box-shadow: 0 0 0 4px rgba(0, 229, 190, 0.25);
}

.waveform {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 64px;
  margin: 1.1rem 0 1.4rem;
}

.waveform span {
  flex: 1;
  border-radius: 3px;
  background: linear-gradient(180deg, #00E5BE, #A78BFA);
  animation: wave 1.4s ease-in-out infinite;
  opacity: 0.9;
}

@keyframes wave {
  0%, 100% { height: 18%; }
  50% { height: var(--h, 90%); }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0, 229, 190, 0.15);
  color: #00E5BE;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.live-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00E5BE;
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.25; }
  100% { opacity: 1; }
}

/* ==================== TRUST STRIP ==================== */
.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid rgba(30, 27, 46, 0.06);
  padding: 1.75rem 0;
}

.trust-strip span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--slate);
  opacity: 0.65;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

/* ==================== SERVICES ==================== */
.service-card {
  background: var(--paper);
  border: 1px solid rgba(30, 27, 46, 0.07);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(30, 27, 46, 0.08);
  border-color: rgba(124, 58, 237, 0.2);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(0, 229, 190, 0.15));
  color: var(--purple);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.service-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
}

.service-card p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-action-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  cursor: pointer !important;
}

.service-action-link:hover {
  color: #00E5BE;
  transform: translateX(4px);
}

/* ==================== STATS BAND ==================== */
.stats-band {
  background: var(--grad);
  color: #ffffff;
}

.stats-band .num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}

.stats-band .lab {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* ==================== ABOUT ==================== */
.about-visual {
  background: var(--bg-dark);
  border-radius: 26px;
  padding: 2.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  height: 100%;
}

@media (max-width: 576px) {
  .about-visual {
    padding: 1.5rem;
    border-radius: 18px;
  }
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(0, 229, 190, 0.2), transparent 55%);
}

.timeline-row {
  display: flex;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(30, 27, 46, 0.08);
}

.timeline-row:last-child {
  border-bottom: none;
}

.timeline-row .tag {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #00E5BE;
  min-width: 35px;
  font-size: 1.1rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ==================== CONTACT ==================== */
.contact-section {
  background: var(--bg-darker);
  color: #ffffff;
  border-radius: 32px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 576px) {
  .contact-section {
    border-radius: 20px;
    padding: 1.5rem 1.25rem !important;
  }
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 90% 0%, rgba(124, 58, 237, 0.35), transparent 60%);
}

.form-control-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.form-control-dark:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00E5BE;
  color: #ffffff;
  box-shadow: 0 0 0 0.25rem rgba(0, 229, 190, 0.2);
  outline: none;
}

.form-control-dark::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.1rem;
}

.contact-info-item i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.9rem;
  color: #00E5BE;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item a,
.contact-info-item span {
  color: rgba(248, 247, 252, 0.88);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s ease;
  word-break: break-word;
  cursor: pointer !important;
}

.contact-info-item a:hover {
  color: #00E5BE;
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--bg-dark);
  color: rgba(248, 247, 252, 0.65);
  padding: 4rem 0 1.8rem;
  margin-top: auto;
}

footer .footer-logo-frame {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  margin-bottom: 1rem;
  cursor: pointer !important;
}

footer .footer-logo-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #ffffff;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .footer-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

footer a {
  color: rgba(248, 247, 252, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 2.2;
  transition: color 0.2s ease;
  cursor: pointer !important;
}

footer a:hover {
  color: #00E5BE;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-right: 0.6rem;
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer !important;
}

.social-icon:hover {
  background: var(--grad);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  z-index: 1050;
  transition: all 0.25s ease;
  animation: wa-pulse 2.4s infinite;
  text-decoration: none;
  cursor: pointer !important;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}

@keyframes wa-pulse {
  0% { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 576px) {
  .whatsapp-float {
    right: 1.1rem;
    bottom: 1.1rem;
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }
}

/* ==================== ANIMATIONS & UTILITIES ==================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
