/* ═══════════════════════════════════════
   LEADXP v3 — Ozonetel Exact Theme (Light)
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

:root {
  /* Ozonetel Exact Colors */
  --bg-page:    #FDFDFD;
  --bg-card:    #FFFFFF;
  --bg-card2:   #F9FAFC;
  --bg-section: #EDF6FF;
  --bg-glass:   rgba(255,255,255,0.9);
  --bg-glass2:  rgba(0,132,255,0.05);

  --purple:       #0084FF; /* Ozonetel Primary Blue */
  --purple-light: #019DF9;
  --purple-glow:  #E6F3FF;
  --purple-neon:  #0049FC;
  
  --indigo:       #25235D; /* Ozonetel Dark Navy */
  --blue:         #0084FF;
  --cyan:         #07BAC2;
  --green:        #01FF84; /* Ozonetel Bright Mint */

  --border:       #E3E3E3;
  --border-glow:  #AAB9C7;
  --border-card:  #E3E3E3;

  --text-primary:   #25235D; /* Ozonetel Dark Navy for Headings */
  --text-secondary: #5a5855;
  --text-muted:     #757575;
  --text-bright:    #25235D;

  --shadow-card:   0 8px 30px rgba(37,35,93,0.08);
  --shadow-purple: 0 4px 15px rgba(0,132,255,0.3);
  --shadow-neon:   0 8px 25px rgba(0,132,255,0.25);
  --shadow-mega:   0 16px 50px rgba(37,35,93,0.12);

  --radius-sm: 8px; --radius-md: 14px; --radius-lg: 20px; --radius-xl: 28px;
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; }
.gradient-text {
  background: linear-gradient(135deg, #019DF9 0%, #0049FC 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0084FF;
  color: white; font-weight: 700; font-size: 14px;
  padding: 12px 24px; border-radius: 6px; border: none;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,132,255,0.3);
  white-space: nowrap; letter-spacing: 0.2px;
}
.btn-primary:hover { transform: translateY(-2px); background: #0049FC; box-shadow: 0 6px 16px rgba(0,132,255,0.4); }
.btn-primary.btn-lg { padding: 14px 30px; font-size: 15px; border-radius: 8px; }
.btn-primary.btn-xl { padding: 16px 36px; font-size: 16px; border-radius: 8px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 2px solid #0084FF;
  color: #0084FF; font-weight: 700; font-size: 14px;
  padding: 10px 24px; border-radius: 6px;
  cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { background: #E6F3FF; }
.btn-outline.btn-lg { padding: 12px 30px; font-size: 15px; border-radius: 8px; }
.btn-outline.btn-xl { padding: 14px 36px; font-size: 16px; border-radius: 8px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: none; color: var(--text-primary);
  font-weight: 600; font-size: 14px; padding: 10px 16px; border-radius: 6px;
  cursor: pointer; transition: var(--transition);
}
.btn-ghost:hover { color: #0084FF; background: #E6F3FF; }

/* ═══════════════════════════════════════
   NAVBAR & MEGA MENU
   ═══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; border-bottom: 1px solid transparent;
  padding: 16px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05); padding: 12px 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.nav-container {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800; color: #25235D; letter-spacing: -0.5px;
}
.logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: #0084FF;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,132,255,0.25);
}
.logo-icon path { fill: white; }
.logo-dot { color: #01FF84; }

.nav-links { display: flex; align-items: center; gap: 12px; margin-left: 20px; }
.nav-item {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 6px; font-size: 14px; font-weight: 600;
  color: var(--text-primary); cursor: pointer; transition: var(--transition);
}
.nav-item:hover, .mega-parent.active .nav-item { color: #0084FF; background: #E6F3FF; }
.nav-item.nav-active { color: #0084FF; font-weight: 700; }
.chevron { transition: transform 0.2s ease; opacity: 0.6; }
.mega-parent.active .chevron { transform: rotate(180deg); opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* Hamburger */
.hamburger { display: none; background: transparent; border: none; flex-direction: column; gap: 5px; cursor: pointer; width: 30px; height: 24px; z-index: 1001; }
.hamburger span { width: 100%; height: 2px; background: var(--text-primary); border-radius: 2px; transition: 0.3s; }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-page); z-index: 999;
  padding: 80px 24px 24px; display: flex; flex-direction: column; gap: 16px;
  transform: translateY(-100%); opacity: 0; pointer-events: none; transition: 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav-item { font-size: 20px; font-weight: 600; color: var(--text-primary); padding: 12px; border-radius: 12px; display: flex; align-items: center; gap: 12px; }
.mobile-nav-item:hover { background: var(--bg-glass); color: #0084FF; }
.mobile-nav-divider { height: 1px; background: var(--border-card); margin: 8px 0; }

/* MEGA MENU POPUPS */
.mega-parent { position: relative; }
.mega-menu {
  position: absolute; left: 0; width: 100%;
  background: transparent; padding-top: 10px;
  visibility: hidden; opacity: 0; transition: var(--transition); pointer-events: none;
  transform: translateY(10px); z-index: 998;
}
.mega-menu.open { visibility: visible; opacity: 1; pointer-events: all; transform: translateY(0); }

.mega-inner {
  max-width: 1000px; margin: 0 auto; background: var(--bg-card);
  border: 1px solid var(--border-card); border-radius: 12px;
  box-shadow: var(--shadow-mega); overflow: hidden; position: relative;
}
.mega-header { padding: 32px 32px 0; }
.mega-header h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; letter-spacing: -0.5px; }
.mega-header p { font-size: 15px; color: var(--text-secondary); max-width: 500px; line-height: 1.5; }

.mega-cols { display: grid; grid-template-columns: repeat(4, 1fr); padding: 24px 32px 32px; gap: 32px; }
.mega-col-label { font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 1.2px; margin-bottom: 16px; border-bottom: 1px solid var(--border-card); padding-bottom: 8px; }
.mega-link { display: flex; align-items: flex-start; gap: 14px; padding: 10px; border-radius: 8px; transition: var(--transition); margin: -10px; margin-bottom: 8px; }
.mega-link:hover { background: #E6F3FF; transform: translateX(4px); }
.mega-link-icon {
  width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  background: #F9FAFC; border: 1px solid #E3E3E3;
}
.mega-link strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.mega-link small { display: block; font-size: 12px; color: var(--text-secondary); line-height: 1.4; }

.mega-col-wide { grid-column: span 1; display: flex; flex-direction: column; }
.mega-promo { background: #EDF6FF; border-radius: 12px; padding: 24px; border: 1px solid #AAB9C7; height: 100%; display: flex; flex-direction: column; }
.mega-promo-icon { font-size: 28px; margin-bottom: 12px; }
.mega-promo h4 { font-size: 16px; font-weight: 700; color: #25235D; margin-bottom: 8px; line-height: 1.3; }
.mega-promo p { font-size: 13px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.5; }
.mega-cta-box { margin-top: auto; }
.mega-cta-btn { display: block; background: #0084FF; border: 1px solid #0084FF; color: white; font-size: 13px; font-weight: 700; text-align: center; padding: 10px; border-radius: 6px; transition: var(--transition); }
.mega-cta-btn:hover { background: #0049FC; color: white; border-color: #0049FC; }

@media (max-width: 1024px) {
  .nav-links, #nav-trial-btn, #nav-login, #theme-toggle { display: none; }
  .hamburger { display: flex; }
  .mega-menu { display: none !important; }
}

/* ═══════════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px,4vw,46px); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.5px; color: var(--text-primary); margin-bottom: 16px;
}
.section-desc { font-size: 17px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ═══════════════════════════════════════
   HERO 
   ═══════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(circle at top right, #E6F3FF 0%, transparent 40%),
              var(--bg-page);
  display: flex; flex-direction: column;
}

.hero-inner {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; padding: 100px 0 0;
  position: relative; z-index: 2;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #EDF6FF; border: 1px solid #AAB9C7;
  color: #0084FF; font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; padding: 7px 16px; border-radius: 50px; margin-bottom: 28px;
}
.hero-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: #0084FF; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px); font-weight: 900;
  line-height: 1.1; letter-spacing: -1.5px; color: #25235D; margin-bottom: 24px;
}
.hero-title .line2 { display: block; }
.hero-desc { font-size: 18px; color: var(--text-secondary); line-height: 1.6; max-width: 500px; margin-bottom: 40px; margin-left: auto; margin-right: auto; }

.hero-cta-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-img-full {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  width: 100vw;
  max-width: 100%;
  padding: 0;
  background: #FFFFFF; /* Ensure blend is clean */
}

.hero-diagram-img-full {
  width: 100%;
  max-width: 1800px; /* Let it get very large to fill the complete page */
  height: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  mix-blend-mode: multiply; /* Blends cleanly with background */
}

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-cta-row { justify-content: center; }
  .hero-right { margin-top: 40px; }
}

/* ═══════════════════════════════════════
   GHL REPLACEMENT GRID
   ═══════════════════════════════════════ */
.ghl-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 40px;
}
.ghl-card {
  background: white; border: 1px solid var(--border-card);
  border-radius: 12px; padding: 32px; transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37,35,93,0.04);
}
.ghl-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(37,35,93,0.08); border-color: #0084FF; }
.ghl-icon {
  width: 48px; height: 48px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; background: #EDF6FF; color: #0084FF;
}
.ghl-card h3 { font-size: 20px; font-weight: 700; color: #25235D; margin-bottom: 12px; }
.ghl-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.ghl-vs { font-size: 12px; font-weight: 600; color: var(--text-muted); background: #F9FAFC; padding: 8px 12px; border-radius: 6px; border: 1px solid var(--border-card); display: inline-block; }
.ghl-vs span { color: #dc3545; text-decoration: line-through; margin-right: 4px; }


/* ---------------------------------------
   WORKFLOW & AUDIENCE (LIGHT SECTIONS)
   --------------------------------------- */
.workflow-section {
  background: #F9FAFC;
  padding: 60px 0;
  border-top: 1px solid #E3E3E3;
}
.audience-section {
  background: #FFFFFF;
  padding: 60px 0;
  border-top: 1px solid #E3E3E3;
}
.dark-header .section-title { color: #25235D; }
.dark-header .section-desc { color: #5a5855; }
.text-white { color: #25235D !important; }
.text-light { color: #5a5855 !important; }

/* Workflow Cards */
.workflow-flex {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 40px; overflow-x: auto; padding-bottom: 20px;
}
.wf-step-card {
  background: #FFFFFF; border: 1px solid #E3E3E3;
  border-radius: 12px; padding: 24px; min-width: 240px; flex: 1;
  box-shadow: 0 4px 15px rgba(37,35,93,0.04);
}
.wf-card-header {
  font-size: 16px; font-weight: 700; color: #25235D;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid #E3E3E3;
}
.wf-card-list { display: flex; flex-direction: column; gap: 14px; }
.wf-card-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #5a5855; font-weight: 500;
}
.wf-card-list .dot { width: 8px; height: 8px; border-radius: 50%; }
.bg-blue { background: #0084FF; }
.bg-red { background: #EF4444; }
.bg-green { background: #01FF84; }
.bg-purple { background: #8B5CF6; }
.wf-card-list .icon { font-size: 16px; }

.wf-arrow {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: #0084FF;
}

/* Audience Grid */
.audience-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; margin-top: 40px;
}
.aud-card {
  background: #FFFFFF; border: 1px solid #E3E3E3;
  border-radius: 16px; padding: 32px; transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37,35,93,0.04);
}
.aud-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(37,35,93,0.08); border-color: #0084FF; }
.aud-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  background: #EDF6FF;
}
.aud-card h3 { font-size: 20px; font-weight: 700; color: #25235D; margin-bottom: 12px; }
.aud-card p { font-size: 15px; color: #5a5855; line-height: 1.6; }

/* Hero Size Constraints */
.hero-img-full {
  margin-top: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 24px;
}
.hero-diagram-img-full {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(37,35,93,0.1);
}



/* ---------------------------------------
   SMOOTH ANIMATIONS & EFFECTS
   --------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.scrolled-in {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Pulse animation for arrows */
@keyframes pulseArrow {
  0% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(5px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.7; }
}
.wf-arrow svg {
  animation: pulseArrow 2s infinite ease-in-out;
}

