
/* ==========================================================================
   ZELYK GLOBAL DESIGN SYSTEM & HEADER (Ecosystem Brief V2.0)
   ========================================================================== */
:root {
  /* Brand Colors */
  --bg-navy: #0b1a28;
  --bg-dark-footer: #070910;
  --bg-light-gray:  #F0F0F5;
  --bg-light-soft:  #F5F5F7;
  
  --text-soft:      #F5F5F7;
  --text-white:     #FFFFFF;
  --text-dark:      #0b1a28;
  --text-muted-dark:#4A4A6A;
  --text-nav:       rgba(255, 255, 255, 0.7);
  --text-nav-hover: #FFFFFF;
  
  --green-primary:  #00c6b5;
  --green-hover:    #00a89a;
  --green-glow:     rgba(0, 198, 181, 0.15);
  --green-glow-card:rgba(0, 198, 181, 0.25);
  --green-shadow:   0 0 20px rgba(0, 198, 181, 0.35);
  
  --border-dark:    rgba(255, 255, 255, 0.08);
  --border-gray:    #E2E2EA;
  
  /* Typography */
  --font-family:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-head:         'Inter', system-ui, -apple-system, sans-serif;
  --f-body:         'Inter', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Header & Sticky Nav */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-navy);
  border-bottom: 1px solid var(--border-dark);
  transition: all 0.3s ease;
}

.site-header .nav {
  width: 100%;
  background: transparent;
  padding: 0;
  margin: 0;
}

.site-header .nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Logo Wordmark */
.logo-wordmark {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
}
.logo-dot {
  color: var(--green-primary);
  font-size: 26px;
  line-height: 1;
}

/* Nav Links */
.site-header .nav-center {
  display: flex;
  align-items: center;
}
.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav-links li a {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-nav);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header .nav-links li a:hover,
.site-header .nav-links li a.active {
  color: var(--text-nav-hover);
}

/* Nav Right & Buttons */
.site-header .nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Primary Green CTA Button */
.btn-green-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--green-primary);
  color: var(--text-white) !important;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-sizing: border-box;
}
.btn-green-cta:hover {
  background-color: var(--green-hover);
  box-shadow: var(--green-shadow);
  transform: translateY(-1px);
}
.btn-green-cta svg {
  transition: transform 0.2s ease;
}
.btn-green-cta:hover svg {
  transform: translateX(3px);
}

/* Secondary Ghost CTA Button */
.btn-ghost-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid var(--text-white);
  color: var(--text-white) !important;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.btn-ghost-cta:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

/* Mobile Nav Toggle Button */
.site-header .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-white);
}

/* Mobile Sheet / Drawer */
.mobile-sheet {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 2000;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
}
.mobile-sheet.open {
  right: 0;
}
.mobile-sheet .sheet-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.mobile-sheet .sheet-content {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  height: 100%;
  background: var(--bg-navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  box-sizing: border-box;
  border-left: 1px solid var(--border-dark);
}
.mobile-sheet .sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-dark);
}
.mobile-sheet .sheet-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-white);
  cursor: pointer;
}
.mobile-sheet .sheet-links {
  list-style: none;
  padding: 30px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-sheet .sheet-links li a {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-sheet .sheet-links li a:hover {
  color: var(--green-primary);
}
.mobile-sheet .sheet-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

@media (max-width: 991px) {
  .site-header .nav-center {
    display: none;
  }
  .nav-cta-desktop {
    display: none !important;
  }
  .site-header .menu-toggle {
    display: block;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');
:root {
  --purple:      #ab00e8;
  --purple-dark: #8c00be;
  --purple-dim:  rgba(171,0,232,0.1);
  --purple-glow: rgba(171,0,232,0.28);
  --purple-soft: rgba(171,0,232,0.05);

  /* Light theme colors */
  --bg-primary:    #ffffff;
  --bg-secondary:  #fafafa;
  --bg-tertiary:   #f5f5f5;
  --text-primary:  #000000;
  --text-secondary:#1a1a1a;
  --text-mid:      #555555;
  --text-muted:    #888888;
  --border-color:  #e8e8e8;
  --card-bg:       #ffffff;

  /* Re-add fallback variables for old layout references */
  --white:         #ffffff;
  --black:         #000000;
  --border:        #e8e8e8;
  --hero-gradient: radial-gradient(circle at top right, #faf5ff 0%, #ffffff 100%);

  --f-head: 'Bricolage Grotesque', sans-serif;
  --f-body: 'Inter', sans-serif;

  --ease: cubic-bezier(0.16,1,0.3,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --s-purple: 0 8px 32px rgba(171,0,232,0.22);
  --s-purple-lg: 0 16px 48px rgba(171,0,232,0.38);
  --s-md: 0 8px 32px rgba(0,0,0,0.08);
  --s-lg: 0 20px 60px rgba(0,0,0,0.1);
}

[data-theme=\"dark\"] {
  --bg-primary:    #07131f;
  --bg-secondary:  #0b1a28;
  --bg-tertiary:   #122336;
  --text-primary:  #ffffff;
  --text-secondary:#f5f5f5;
  --text-mid:      #c5c2c7;
  --text-muted:    #9ca3af;
  --border-color:  rgba(171, 0, 232, 0.15);
  --card-bg:       rgba(13, 6, 20, 0.7);

  --white:         #ffffff;
  --black:         #07131f;
  --border:        rgba(171, 0, 232, 0.15);
  --hero-gradient: radial-gradient(circle at top right, #160c22 0%, #07131f 100%);
}






*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;}
body{font-family:var(--f-body);background:var(--bg-primary);color:var(--text-secondary);overflow-x:hidden;line-height:1.7;transition:background 0.3s ease,color 0.3s ease;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}

@media (pointer: fine) {
  .custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(171, 0, 232, 0.4);
    pointer-events: none;
    z-index: 99999;
    transition: width 0.3s, height 0.3s, background 0.3s, backdrop-filter 0.3s;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(171, 0, 232, 0.8);
  }
  .custom-cursor.hover {
    width: 60px; height: 60px;
    background: rgba(171, 0, 232, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(171, 0, 232, 0.5);
  }
}
@media (pointer: coarse) {
  .custom-cursor { display: none; }
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 100000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.show {
  display: block;
  opacity: 1;
}
.lightbox .lb-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox.show .lb-content {
  transform: scale(1);
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.lb-close:hover,
.lb-close:focus {
  color: var(--purple);
  text-decoration: none;
}

/* PROGRESS */
.progress{position:fixed;top:0;left:0;height:3px;background:var(--purple);z-index:9999;width:0%;box-shadow:0 0 10px var(--purple-glow);transition:width 0.1s linear;}

/* NAV */
.nav{position:fixed;top:0;left:0;right:0;z-index:1000;padding:12px 0;transition:all 0.4s var(--ease);background: transparent;}
.nav.solid{padding:8px 0;background:rgba(255,255,255,0.8);backdrop-filter:blur(24px) saturate(180%);border-bottom:1px solid rgba(0,0,0,0.08);box-shadow:0 4px 30px rgba(0,0,0,0.03);}
.nav-wrap{max-width:1240px;margin:0 auto;padding:0 40px;display:grid;grid-template-columns: 1fr auto 1fr;align-items:center;}
.nav-logo{display:flex;align-items:center;}
.nav-logo img{height:60px;width:auto;display:block;transition: transform 0.3s var(--ease);}
@media(max-width:768px){ .nav-logo img{height:44px;} }
.nav-logo:hover img{transform: scale(1.05);}
.nav-center{display:flex;justify-content:center;}
.nav-links{display:flex;align-items:center;gap:32px;list-style:none;}
.nav-links a{font-size:0.85rem;font-weight:600;color:var(--text-mid);transition:all 0.3s;padding:8px 0;position:relative;}
.nav-links a:hover{color:var(--text-primary);}
.nav-links a::after{content:\"\";position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--purple);transition:width 0.3s var(--ease);}
.nav-links a:hover::after{width:100%;}
.nav-links a.active{color:var(--text-primary);}
.nav-links a.active::after{width:100%;}
.sheet-links a.active{background:var(--purple-soft);color:var(--purple);padding-left:22px;}
.nav-right{display:flex;justify-content:flex-end;align-items:center;gap:12px;}
.nav-ctas-desktop{display:flex;align-items:center;gap:12px;}

/* Buttons */
.btn-ghost{font-size:0.85rem;font-weight:600;color:var(--text-mid);padding:10px 20px;border-radius:100px;transition:all 0.3s;}
.btn-ghost:hover{background:rgba(0,0,0,0.04);color:var(--text-primary);}
.btn-primary{position:relative;font-size:0.85rem;font-weight:700;color:var(--white)!important;background:var(--black);padding:10px 24px;border-radius:12px;transition:all 0.3s var(--ease);border:1px solid rgba(255,255,255,0.1);}
.btn-primary:hover{background:var(--purple);color:var(--white)!important;box-shadow:0 0 20px rgba(171,0,232,0.4);transform:translateY(-1px);}

/* Hamburger */
.menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:6px;z-index:1100;color:var(--text-primary);transition:all 0.3s;}
.menu-toggle svg{width:24px;height:24px;}
.menu-toggle .top,.menu-toggle .mid,.menu-toggle .bot{transition:all 0.3s var(--ease);transform-origin: center;}
.menu-toggle.active .top{transform: translateY(6px) rotate(45deg);}
.menu-toggle.active .mid{opacity:0;}
.menu-toggle.active .bot{transform: translateY(-6px) rotate(-45deg);}

/* Mobile Sheet */
.mobile-sheet{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1050;visibility:hidden;pointer-events:none;}
.mobile-sheet.open{visibility:visible;pointer-events:auto;}
.sheet-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.2);backdrop-filter:blur(4px);opacity:0;transition:opacity 0.4s var(--ease);}
.mobile-sheet.open .sheet-overlay{opacity:1;}
.sheet-content{position:absolute;top:0;right:-100%;width:80%;max-width:300px;height:100%;background:#ffffff;padding:24px;display:flex;flex-direction:column;transition:right 0.4s var(--ease);box-shadow: -10px 0 50px rgba(0,0,0,0.15);border-left:1px solid rgba(0,0,0,0.05);z-index:1060;}
.mobile-sheet.open .sheet-content{right:0;}
.sheet-header{margin-bottom:16px;display:flex;align-items:center;justify-content:space-between;}
.sheet-close{background:none;border:none;cursor:pointer;padding:8px;color:var(--text-primary);display:flex;align-items:center;justify-content:center;transition:all 0.2s;}
.sheet-close:hover{color:var(--purple);transform: rotate(90deg);}
.sheet-body{flex:1;}
.sheet-links{list-style:none;display:flex;flex-direction:column;gap:6px;}
.sheet-links a{display:block;font-size:1rem;font-weight:700;color:var(--text-primary);padding:12px 16px;border-radius:10px;transition:all 0.2s;}
.sheet-links a:hover{background:var(--purple-soft);color:var(--purple);padding-left:22px;}
.sheet-footer{margin-top:auto;display:flex;flex-direction:column;gap:10px;padding-top:24px;border-top:1px solid rgba(0,0,0,0.06);}
.btn-outline-full{display:flex;align-items:center;justify-content:center;padding:12px;border:1.5px solid var(--border);border-radius:10px;font-weight:700;font-size:0.85rem;color:var(--text-primary);transition:all 0.3s;}
.btn-outline-full:hover{border-color:var(--purple);color:var(--purple);}
.btn-primary-full{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;padding:12px;background:rgba(2,6,23,0.95);color:#f1f5f9;border-radius:10px;font-weight:700;font-size:0.85rem;transition:all 0.3s;border:1px solid rgba(255,255,255,0.1);}
.btn-primary-full:hover{background:var(--purple);box-shadow:var(--s-purple);}

/* Sleek Nav Agency CTA Button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f0a1c 0%, #200433 100%);
  border: 1px solid rgba(171, 0, 232, 0.4);
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(171, 0, 232, 0.2);
}
.nav-cta-btn:hover {
  background: var(--purple);
  box-shadow: 0 6px 24px rgba(171, 0, 232, 0.45);
  transform: translateY(-2px);
}

/* HERO */
.hero{min-height:auto;background:var(--bg-primary);display:flex;align-items:center;padding:115px 0 35px;position:relative;overflow:hidden;}
.hero-bg-blob{position:absolute;border-radius:50%;pointer-events:none;filter:blur(70px);}
.hero-bg-blob.b1{width:500px;height:500px;background:rgba(171,0,232,0.05);top:-150px;right:-80px;animation:blob 10s ease-in-out infinite;}
.hero-bg-blob.b2{width:350px;height:350px;background:rgba(171,0,232,0.04);bottom:-80px;left:-80px;animation:blob 13s ease-in-out infinite reverse;}
@keyframes blob{0%,100%{transform:translate(0,0) scale(1);}50%{transform:translate(15px,-20px) scale(1.04);}}
.hero-inner{max-width:1240px;margin:0 auto;padding:0 40px;display:grid;grid-template-columns: 1.15fr 1fr;align-items:center;gap:48px;position:relative;z-index:2;text-align:left;}
.hero-left{display:flex;flex-direction:column;align-items:flex-start;}
.hero-right{width:100%;}

@media(max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-left {
    align-items: center;
  }
}

/* Hero badge */
.hero-badge{display:inline-flex;align-items:center;gap:8px;font-size:0.75rem;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;color:var(--purple);background:transparent;border:1.5px solid var(--purple);padding:8px 18px;border-radius:6px;margin-bottom:28px;}

@keyframes pulse{0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.4;transform:scale(1.6);}}

.hero-h1{font-family:var(--f-head);font-size:clamp(2rem,3.6vw,3.1rem);font-weight:800;color:var(--text-primary);line-height:1.2;letter-spacing:-0.03em;margin-bottom:22px;max-width:920px;margin-left:auto;margin-right:auto;}
.hero-h1 .hl{display:inline-block;background:var(--purple);color:var(--white) !important;padding:2px 14px 4px;border-radius:6px;transform:rotate(-1deg);box-shadow:var(--s-purple);}

.hero-sub{font-size:1.05rem;line-height:1.75;color:var(--text-mid);max-width: 780px;margin-bottom:24px;}

.hero-ctas{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-bottom:16px;}
@media(max-width: 991px) {
  .hero-ctas {
    justify-content: center;
  }
}


.btn-purple{position:relative;display:inline-flex;align-items:center;gap:10px;font-family:var(--f-body);font-size:0.92rem;font-weight:800;color:var(--white);background:var(--black);padding:16px 36px;border-radius:12px;border:1px solid rgba(255,255,255,0.1);cursor:pointer;transition:all 0.35s var(--ease);}
.btn-purple:hover{background:var(--purple);color:var(--white);box-shadow:0 0 25px rgba(171,0,232,0.4);transform:translateY(-2px);}
.btn-purple:hover{transform:translateY(-3px);box-shadow:var(--s-purple-lg);background:var(--purple-dark);}
.btn-outline{display:inline-flex;align-items:center;gap:8px;font-size:0.92rem;font-weight:700;color:var(--text-primary);background:transparent;padding:16px 28px;border-radius:120px;border:2px solid var(--border);cursor:pointer;transition:all 0.3s var(--ease);}
.btn-outline:hover{border-color:var(--purple);color:var(--purple);}
.btn-outline .arr{transition:transform 0.3s var(--ease-spring);}
.btn-outline:hover .arr{transform:translateX(5px);}

.hero-trust{display:flex;gap:36px;align-items:center;padding-top:24px;border-top:1px solid var(--border-color);width: 100%;max-width: 560px;}
@media(max-width: 991px) {
  .hero-trust {
    justify-content: center;
  }
}
.ts-num{font-family:var(--f-head);font-size:1.5rem;font-weight:800;color:var(--text-primary);letter-spacing:-0.03em;}
.ts-lbl{font-size:0.75rem;font-weight:500;color:var(--text-muted);}



/* TICKER */
.ticker{background:#0a0a0a;overflow:hidden;padding:16px 0;border-top:1px solid rgba(255,255,255,0.05);border-bottom:1px solid rgba(255,255,255,0.05);}
.ticker-inner{display:flex;animation:tick 30s linear infinite;white-space:nowrap;}
.ticker:hover .ticker-inner{animation-play-state:paused;cursor:pointer;}
@keyframes tick{from{transform:translateX(0);}to{transform:translateX(-50%);}}
.t-item{font-family:var(--f-body);font-size:0.9rem;font-weight:500;color:#a1a1aa;padding:0 40px;display:inline-flex;align-items:center;position:relative;}
.t-item span{font-family:var(--f-head);font-size:1.1rem;font-weight:800;color:var(--purple);margin-right:10px;}
.t-item::after{content:\"\";position:absolute;right:0;top:50%;transform:translateY(-50%);width:1px;height:20px;background:rgba(255,255,255,0.1);}

/* HORIZONTAL MARQUEE */
.h-marquee-section {
  padding: 30px 0 40px;
  background:var(--bg-secondary);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.h-marquee-head {
  text-align: center;
  margin-bottom: 24px;
}
.h-marquee-head .sec-h {
  font-family:var(--f-head);
  font-weight: 800;
  color:var(--text-primary);
  font-size: 2rem;
  margin-bottom: 8px;
}
.h-marquee-head p {
  font-size: 0.98rem;
  color:var(--text-mid);
  max-width: 820px;
  margin: 0 auto;
}
.h-marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 24px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.h-marquee-inner {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  animation: h-scroll 35s linear infinite;
}
.h-marquee:hover .h-marquee-inner {
  animation-play-state: paused;
}
@keyframes h-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.h-marquee .tm-card {
  width: 360px;
  flex-shrink: 0;
  white-space: normal;
  text-align: left;
}
.tm-author-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}
.tm-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
.tm-author-info .tm-name {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tm-linkedin-btn {
  color: #0a66c2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(10, 102, 194, 0.08);
  border: 1px solid rgba(10, 102, 194, 0.2);
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}
.tm-linkedin-btn:hover {
  background: #0a66c2;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

/* WRAP / EYEBROW */
.wrap{max-width:1400px;margin:0 auto;padding:0 40px;}
.eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:0.72rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:var(--purple);background:transparent;border:1.5px solid var(--purple);padding:7px 16px;border-radius:6px;margin-bottom:22px;}

.sec-h{font-family:var(--f-head);font-size:clamp(1.9rem,3.2vw,2.7rem);font-weight:800;color:var(--text-primary);line-height:1.15;letter-spacing:-0.03em;margin-bottom:16px;}
.sec-sub{font-size:1rem;line-height:1.85;color:var(--text-mid);max-width:580px;}

/* PAIN SECTION STYLES */
.pain-funnel-section {
  padding: 30px 0;
  background:var(--bg-primary);
  color:var(--text-secondary);
  border-top:1px solid var(--border-color);
  border-bottom:1px solid var(--border-color);
  position: relative;
}

.pain-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.pain-funnel-section .hero-h1 {
  color:var(--text-primary);
}

.badge-red {
  background: var(--purple-dim);
  color: var(--purple);
  border: 1px solid rgba(171, 0, 232, 0.2);
}

.hl-red {
  color: var(--purple);
  font-style: italic;
}

.mental-movie-box {
  background:var(--bg-primary);
  border:1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  margin: 20px 0;
  box-shadow: var(--s-lg);
}

.movie-intro {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 30px;
  color:var(--text-primary);
}

.pain-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-list li {
  font-size: 1.05rem;
  color:var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.6;
}

.x-icon {
  font-size: 1.1rem;
  color: var(--purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.movie-conclusion {
  font-size: 1.05rem;
  color:var(--text-mid);
  margin-bottom: 24px;
}

.loss-highlight {
  background: var(--purple-soft);
  border-left: 4px solid var(--purple);
  padding: 24px;
  border-radius: 0 16px 16px 0;
}

.loss-highlight p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple-dark);
  line-height: 1.6;
}

.epiphany-box h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color:var(--text-primary);
  letter-spacing: -0.02em;
}

.epiphany-box p {
  font-size: 1.1rem;
  color:var(--text-mid);
  line-height: 1.7;
}

@media(max-width: 768px) {
  .pain-funnel-section {
    padding: 30px 0;
  }
  .mental-movie-box {
    padding: 36px 20px;
  }
  .epiphany-box h3 {
    font-size: 1.7rem;
  }
}

/* PROBLEM */
.problem{background:var(--bg-secondary);padding:30px 0;position:relative;}
.problem::before{content:\"\";position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(171,0,232,0.2),transparent);}
.prob-head{text-align:center;max-width:880px;margin:0 auto 56px;}
.prob-head .sec-sub{margin:0 auto;}
.prob-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.prob-card{background:var(--bg-primary);border:1px solid var(--border-color);border-radius:18px;padding:40px 32px;position:relative;overflow:hidden;transition:all 0.4s var(--ease);}
.prob-card::after{content:\"\";position:absolute;top:0;left:0;right:0;height:3px;background:var(--purple);transform:scaleX(0);transform-origin:left;transition:transform 0.4s var(--ease);}
.prob-card:hover{transform:translateY(-7px);box-shadow:var(--s-md);border-color:rgba(171,0,232,0.12);}
.prob-card:hover::after{transform:scaleX(1);}
.prob-num{font-family:var(--f-head);font-size:3rem;font-weight:800;color:rgba(171,0,232,0.05);position:absolute;top:14px;right:18px;line-height:1;}
.prob-icon{width:50px;height:50px;background:var(--purple-soft);border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.3rem;margin-bottom:20px;transition:all 0.35s var(--ease);}
.prob-card:hover .prob-icon{background:var(--purple);transform:scale(1.05);}
.prob-card:hover .prob-icon span{color:#ffffff !important;filter:none !important;}
.prob-card:hover .prob-icon svg{stroke:#ffffff !important;}
.prob-title{font-family:var(--f-head);font-size:1.1rem;font-weight:700;color:var(--text-primary);margin-bottom:10px;}
.prob-text{font-size:0.9rem;line-height:1.8;color:var(--text-mid);}

/* SOLUTION */
.solution{background:var(--bg-primary);padding:30px 0;}
.sol-head{text-align:center;max-width:660px;margin:0 auto 80px;}
.sol-head .sec-sub{margin:0 auto;}
.sol-steps{display:flex;flex-direction:column;gap:72px;}
.sol-step{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center;}
.sol-step:nth-child(even) .step-content{order:2;}
.sol-step:nth-child(even) .step-vis{order:1;}
.step-tag{display:inline-flex;align-items:center;gap:10px;margin-bottom:14px;}
.step-num{width:30px;height:30px;background:var(--purple);color:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:var(--f-head);font-size:0.72rem;font-weight:800;flex-shrink:0;}
.step-phase{font-size:0.7rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:var(--purple);}
.step-title{font-family:var(--f-head);font-size:1.6rem;font-weight:800;color:var(--text-primary);line-height:1.2;letter-spacing:-0.02em;margin-bottom:16px;}
.step-text{font-size:0.97rem;line-height:1.85;color:var(--text-mid);margin-bottom:24px;}
.step-list{list-style:none;display:flex;flex-direction:column;gap:9px;}
.step-list li{display:flex;align-items:center;gap:10px;font-size:0.9rem;font-weight:600;color:var(--text-secondary);}
.step-list li::before{content:\"✓\";width:20px;height:20px;background:var(--purple-dim);color:var(--purple);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:0.62rem;font-weight:800;flex-shrink:0;}
.step-vis{position:relative;}
.step-img-wrap{background:var(--bg-tertiary);border-radius:18px;padding:24px;border:1px solid rgba(0,0,0,0.05);position:relative;overflow:hidden;}
.step-img-wrap img{width:100%;height:auto;border-radius:10px;position:relative;z-index:1;}
.step-img-wrap::before{content:\"\";position:absolute;bottom:-16px;right:-16px;width:100px;height:100px;background:var(--purple-dim);border-radius:50%;z-index:0;}

/* STATS */
.stats-band{background:var(--black);padding:30px 0;position:relative;overflow:hidden;}
.stats-band::before{content:\"\";position:absolute;top:50%;left:50%;width:500px;height:160px;background:radial-gradient(ellipse,rgba(171,0,232,0.1) 0%,transparent 70%);transform:translate(-50%,-50%);}
.stats-inner{display:grid;grid-template-columns:repeat(4, 1fr);position:relative;z-index:1;}
.stat-item{text-align:center;padding:0 40px;position:relative;}
.stat-item:not(:last-child)::after{content:\"\";position:absolute;right:0;top:10%;height:80%;width:1px;background:rgba(255,255,255,0.08);}
.stat-num{font-family:var(--f-head);font-size:3rem;font-weight:800;color:var(--white);letter-spacing:-0.03em;margin-bottom:6px;line-height:1;}
.stat-num span{color:var(--purple);}
.stat-lbl{font-size:0.8rem;font-weight:500;color:rgba(255,255,255,0.4);letter-spacing:0.05em;}

/* TESTIMONIALS — Auto-Scrolling Columns */
.testimonials{background:var(--bg-secondary);padding:30px 0;position:relative;overflow:hidden;}
.testimonials::before{content:\"\";position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(171,0,232,0.2),transparent);}
.test-head{text-align:center;max-width:620px;margin:0 auto 56px;}
.test-head .sec-sub{margin:0 auto;}
.tm-columns{display:flex;justify-content:center;gap:24px;max-height:740px;overflow:hidden;-webkit-mask-image:linear-gradient(to bottom,transparent,black 8%,black 92%,transparent);mask-image:linear-gradient(to bottom,transparent,black 8%,black 92%,transparent);}
.tm-col{flex:0 0 320px;overflow:hidden;}
.tm-col-inner{display:flex;flex-direction:column;gap:20px;padding-bottom:20px;animation:tm-scroll-up 18s linear infinite;}
.tm-col:nth-child(2) .tm-col-inner{animation-duration:24s;}
.tm-col:nth-child(3) .tm-col-inner{animation-duration:21s;}
@keyframes tm-scroll-up{0%{transform:translateY(0);}100%{transform:translateY(-50%);}}
.tm-col:hover .tm-col-inner{animation-play-state:paused;}
.tm-card{background:var(--bg-primary);border:1px solid var(--border-color);border-radius:20px;padding:28px 24px;transition:all 0.3s var(--ease);cursor:default;position:relative;}
.tm-card:hover{transform:translateY(-6px) scale(1.02);box-shadow:0 20px 40px rgba(0,0,0,0.08);border-color:rgba(171,0,232,0.18);}
.tm-card::before{content:\"\\201C\";font-family:var(--f-head);font-size:6rem;font-weight:800;color:rgba(171,0,232,0.04);position:absolute;top:-8px;right:12px;line-height:1;pointer-events:none;}
.tm-text{font-size:0.92rem;line-height:1.8;color:var(--text-mid);margin-bottom:20px;position:relative;z-index:1;}
.tm-author{display:flex;align-items:center;gap:12px;}
.tm-avatar{width:42px;height:42px;border-radius:50%;object-fit:cover;border:2px solid rgba(171,0,232,0.15);transition:border-color 0.3s;}
.tm-card:hover .tm-avatar{border-color:var(--purple);}
.tm-name{font-family:var(--f-head);font-size:0.88rem;font-weight:700;color:var(--text-primary);line-height:1.3;}
.tm-role{font-size:0.74rem;color:var(--text-muted);margin-top:1px;}
.tm-col.tm-col-2{display:none;}
.tm-col.tm-col-3{display:none;}
@media(min-width:769px){.tm-col.tm-col-2{display:block;}}
@media(min-width:1025px){.tm-col.tm-col-3{display:block;}}

/* FINAL CTA */
.final-cta{background:var(--bg-primary);padding:80px 0;text-align:center;position:relative;overflow:hidden;}
.cta-ring{position:absolute;border-radius:50%;pointer-events:none;border:1px solid rgba(171,0,232,0.07);top:50%;left:50%;}
.cta-ring.r1{width:700px;height:700px;transform:translate(-50%,-50%);animation:spin 42s linear infinite;}
.cta-ring.r2{width:460px;height:460px;transform:translate(-50%,-50%);animation:spin 28s linear infinite reverse;}
.cta-glow{position:absolute;width:400px;height:200px;background:radial-gradient(ellipse,rgba(171,0,232,0.07) 0%,transparent 70%);top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;pointer-events:none;}
@keyframes spin{from{transform:translate(-50%,-50%) rotate(0deg);}to{transform:translate(-50%,-50%) rotate(360deg);}}
.cta-inner{position:relative;z-index:2;max-width:980px;margin:0 auto;padding:0 32px;}
.cta-eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:0.72rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:var(--purple);background:transparent;border:1.5px solid var(--purple);padding:7px 16px;border-radius:6px;margin-bottom:28px;}

.cta-h{font-family:var(--f-head);font-size:clamp(2.1rem,4.2vw,3.4rem);font-weight:800;color:var(--text-primary);line-height:1.15;letter-spacing:-0.03em;margin:0 auto 22px;max-width:920px;}
.cta-h em{font-style:italic;color:var(--purple);}
.cta-sub{font-size:1.05rem;line-height:1.85;color:var(--text-mid);margin-bottom:20px;}
.btn-purple.big{font-size:1.1rem;font-weight:800;padding:20px 52px;animation:glow-pulse 3s ease-in-out infinite;}
@keyframes glow-pulse{0%,100%{box-shadow:0 8px 32px rgba(171,0,232,0.22);}50%{box-shadow:0 12px 48px rgba(171,0,232,0.5);}}
.cta-note{margin-top:16px;font-size:0.76rem;color:var(--text-muted);letter-spacing:0.06em;}

/* FOOTER */
.footer{background:var(--black);padding:40px 0;border-top:1px solid rgba(255,255,255,0.05);}
.footer-inner{max-width:1240px;margin:0 auto;padding:0 40px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;}
.footer-logo{display:none;}
.footer-copy{font-size:0.8rem;color:rgba(255,255,255,0.9);}
.footer-links{display:flex;gap:24px;list-style:none;}
.footer-links a{font-size:0.8rem;font-weight:600;color:rgba(255,255,255,0.9);transition:color 0.2s;}
.footer-links a:hover{color:var(--purple);}


/* CASE STUDIES SECTION STYLES */
.case-studies {
    padding: 80px 5% 30px;
    position: relative;
    z-index: 2;
    background:var(--bg-primary);
}
.cs-header {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
/* Redesigned Premium Card Layout */
.cs-card {
    background:var(--bg-primary);
    border:1px solid var(--border-color);
    border-radius: 28px;
    padding: 56px;
    box-shadow: var(--s-lg);
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 56px;
    align-items: center;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.cs-card:hover {
    border-color: rgba(171,0,232,0.22);
}
.cs-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.cs-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.cs-name {
    font-family: var(--f-head);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 6px;
    color:var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.cs-role {
    font-size: 0.92rem;
    font-weight: 600;
    color:var(--text-muted);
    margin-bottom: 20px;
}
.cs-description {
    font-size: 0.98rem;
    line-height: 1.75;
    color:var(--text-mid);
    margin-bottom: 16px;
}
.cs-metrics-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 16px;
    border-top:1px solid var(--border-color);
    padding-top: 28px;
    width: 100%;
}
.cs-metric-item {
    display: flex;
    flex-direction: column;
}
.cs-metric-val {
    font-family: var(--f-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--purple);
    line-height: 1;
    margin-bottom: 6px;
}
.cs-metric-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    color:var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cs-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
}
.cs-btn-connect {
    font-size: 0.85rem;
    font-weight: 700;
    color:var(--text-primary);
    background: transparent;
    border: 2px solid var(--border);
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cs-btn-connect:hover {
    border-color: var(--purple);
    color: var(--purple);
}
.cs-btn-view {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white) !important;
    background: var(--purple);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--s-purple);
}
.cs-btn-view:hover {
    background: var(--purple-dark);
    box-shadow: var(--s-purple-lg);
    transform: translateY(-1px);
}
.cs-subheading {
    font-family: var(--f-head);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 24px 0 16px 0;
    color:var(--text-primary);
    border-bottom:1px solid var(--border-color);
    padding-bottom: 12px;
    width: 100%;
    text-align: left;
}

/* Browser Mockup Wrapper */
.browser-mockup {
    border:1px solid var(--border-color);
    border-radius: 18px;
    background:var(--bg-primary);
    box-shadow: var(--s-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.browser-header {
    height: 40px;
    background: #f1f1f5;
    border-bottom:1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
}
.browser-dots {
    display: flex;
    gap: 6px;
}
.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.browser-dot.red { background: #ef4444; }
.browser-dot.yellow { background: #f59e0b; }
.browser-dot.green { background: #10b981; }
.browser-address {
    flex-grow: 1;
    background:var(--bg-primary);
    border:1px solid var(--border-color);
    border-radius: 6px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color:var(--text-muted);
    font-family: var(--f-body);
}
.browser-slider-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--f-body);
    border-top:1px solid var(--border-color);
    background: #fafafa;
}
.bsf-before { color: #ef4444; }
.bsf-drag { color:var(--text-muted); }
.bsf-after { color: #10b981; }

/* Content Strategy Grid */
.cs-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
}
.cs-content-item {
    position: relative;
    background:var(--bg-tertiary);
    border-radius: 16px;
    overflow: hidden;
    border:1px solid var(--border-color);
}
.cs-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--white);
    z-index: 2;
}
.cs-content-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
    opacity: 0.85;
}
.cs-content-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* BEFORE/AFTER COMPARISON SLIDER */
.img-compare{position:relative;width:100%;max-width:100%;margin:0 auto;overflow:hidden;cursor:col-resize;touch-action:none;user-select:none;-webkit-user-select:none;}
.img-compare .ic-before{display:block;width:100%;height:auto;}
.img-compare .ic-after-wrap{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;clip-path:inset(0 50% 0 0);}
.img-compare .ic-after{display:block;width:100%;height:100%;object-fit:cover;object-position:left top;}
.img-compare .ic-label{position:absolute;top:16px;z-index:5;padding:7px 18px;border-radius:30px;font-size:0.8rem;font-weight:700;letter-spacing:0.03em;pointer-events:none;}
.img-compare .ic-label-before{left:16px;background:rgba(0,0,0,0.72);color:#fff;border:1px solid rgba(255,255,255,0.18);}
.img-compare .ic-label-after{right:16px;background:var(--purple);color:#fff;}
.img-compare .ic-handle{position:absolute;top:0;bottom:0;left:50%;z-index:10;display:flex;align-items:center;justify-content:center;pointer-events:none;}
.img-compare .ic-line{position:absolute;top:0;bottom:0;width:3px;background:rgba(255,255,255,0.9);box-shadow:0 0 10px rgba(0,0,0,0.35);}
.img-compare .ic-btn{position:relative;width:48px;height:48px;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(0,0,0,0.2);pointer-events:auto;cursor:col-resize;transition:transform 0.15s ease,box-shadow 0.15s ease;}
.img-compare .ic-btn:hover,.img-compare.active .ic-btn{transform:scale(1.1);box-shadow:0 6px 28px rgba(0,0,0,0.3);}
.img-compare .ic-btn svg{color:var(--text-mid);}

/* COPYWRITING BREAKDOWN */
.copy-breakdown-box {
  background:var(--bg-secondary);
  border:1px solid var(--border-color);
  border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--s-md);
}
.copy-before, .copy-after {
  padding: 20px;
  border-radius: 12px;
  background:var(--bg-primary);
  border-left: 4px solid;
}
.copy-before {
  border-left-color: #ef4444;
  opacity: 0.8;
}
.copy-after {
  border-left-color: var(--purple);
  box-shadow: 0 4px 15px rgba(171,0,232,0.05);
}
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.badge-green {
  background: var(--purple-dim);
  color: var(--purple);
  border: 1px solid rgba(171,0,232,0.2);
}
.copy-text {
  font-size: 1rem;
  color:var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  font-weight: 500;
}

/* REVEAL */
.reveal{opacity:1 !important;transform:none !important;}
.reveal.left{transform:translateX(-36px);}
.reveal.right{transform:translateX(36px);}
.reveal.vis{opacity:1;transform:translate(0);}

/* RESPONSIVE */
@media(max-width:1024px){
  .nav-wrap{grid-template-columns: 1fr auto;}
  .nav-center, .nav-ctas-desktop{display:none;}
  .menu-toggle{display:block;}
  .hero-inner,.sol-step{grid-template-columns:1fr;gap:44px;}
  .sol-step:nth-child(even) .step-content{order:1;}
  .sol-step:nth-child(even) .step-vis{order:2;}
  .hero-sub{max-width:100%;}
  .stats-inner{grid-template-columns:repeat(4, 1fr);gap:10px;}
  .stat-item:not(:last-child)::after{right:0;top:20%;height:60%;width:1px;background:rgba(255,255,255,0.1);}
  .stat-item{padding:15px 5px;}
  .stat-num{font-size:1.4rem;margin-bottom:4px;}
  .stat-lbl{font-size:0.6rem;line-height:1.2;}
  .prob-grid{grid-template-columns:repeat(2,1fr);gap:20px;}
  .cs-card{grid-template-columns:1fr;gap:36px;}
}
@media(max-width:900px){
  .cs-content-grid{grid-template-columns:1fr 1fr;}
  .cs-card{padding:30px 20px;}
  .cs-name{font-size:1.8rem;}
  .cs-role{font-size:0.95rem;}
  .cs-subheading{font-size:1.2rem;}
}
@media(max-width:768px){
  .nav{padding: 8px 0;}
  .nav.solid{padding: 6px 0;}
  .nav-wrap{padding:0 18px;}
  .sheet-content{width:80%;max-width:280px;border-left:1px solid rgba(0,0,0,0.05);}
  .nav-wrap,.wrap,.footer-inner,.cta-inner{padding-left:18px;padding-right:18px;}
  .hero{padding:80px 0 40px;}
  .hero-inner{padding:0 22px;}
  .hero-trust{flex-wrap:wrap;gap:20px;}
  .hero-ctas{flex-direction:column;align-items:flex-start;}
  .btn-purple,.btn-outline{width:100%;justify-content:center;}
  .prob-grid{grid-template-columns:1fr;}
  .footer-inner{flex-direction:column;text-align:center;}
  /* Mobile case studies */
  .case-studies{padding:60px 4%;}
  .cs-header{margin-bottom:16px;}
  .cs-card{padding:20px 14px;border-radius:16px;}
  .cs-name{font-size:1.5rem;}
  .cs-role{font-size:0.82rem;letter-spacing:0.5px;}
  .cs-info{margin-bottom:24px;}
  .cs-content-grid{grid-template-columns:1fr;gap:16px;}
  .cs-content-item{border-radius:12px;}
  .cs-content-item img{border-radius:12px;}
  .cs-tag{font-size:0.7rem;padding:3px 10px;top:8px;right:8px;}
  .cs-subheading{font-size:1.1rem;margin:28px 0 14px;}
  .cs-container{gap:40px;}
  /* Mobile slider */
  .img-compare{border-radius:12px;}
  .img-compare .ic-label{font-size:0.68rem;padding:4px 10px;top:8px;}
  .img-compare .ic-label-before{left:8px;}
  .img-compare .ic-label-after{right:8px;}
  .img-compare .ic-btn{width:38px;height:38px;}
  .img-compare .ic-btn svg{width:18px;height:18px;}
  /* Mobile step images */
  .step-img-wrap img{height:200px;}
  .hero-h1{margin-bottom:14px;}
  .hero-sub{font-size:0.95rem;margin-bottom:28px;}
}
@media(max-width:480px){
  .case-studies{padding:44px 3%;}
  .cs-card{padding:16px 10px;}
  .cs-name{font-size:1.3rem;}
  .cs-subheading{font-size:1rem;}
  .btn-purple.big{font-size:0.9rem;padding:16px 24px;width:100%;max-width:320px;margin:0 auto;}
  .hero-h1{font-size:1.8rem;}
  .step-img-wrap img{height:160px;}
  .img-compare .ic-btn{width:32px;height:32px;}
  .img-compare .ic-btn svg{width:14px;height:14px;}
}

/* ==========================================================================
   NEW ADDITIONS: FAQ, POPUP, & AUDIT FORM
   ========================================================================== */

/* FAQ SECTION STYLES */
.faq {
  padding: 30px 0;
  background:var(--bg-primary);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.faq-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background:var(--bg-primary);
  border:1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item:hover {
  border-color: rgba(171,0,232,0.25);
  box-shadow: var(--s-md);
}
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  outline: none;
}
.faq-q {
  font-family: var(--f-head);
  font-size: 1.15rem;
  font-weight: 700;
  color:var(--text-primary);
  padding-right: 20px;
}
.faq-icon {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--purple);
  transition: transform 0.3s var(--ease);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--purple-soft);
  flex-shrink: 0;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--purple-dim);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 32px;
}
.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 32px 24px 32px;
}
.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color:var(--text-mid);
}

/* POPUP MODAL STYLES */
.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 110000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.popup-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}
.popup-content {
  position: relative;
  background: linear-gradient(135deg, #180026 0%, #0b1a28 100%);
  border: 1px solid rgba(198, 6, 255, 0.35);
  box-shadow: 0 30px 80px rgba(198, 6, 255, 0.3);
  border-radius: 28px;
  padding: 48px 40px;
  max-width: 560px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 110010;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.4s var(--ease);
  color: #ffffff !important;
}
.popup-content::-webkit-scrollbar {
  width: 6px;
}
.popup-content::-webkit-scrollbar-track {
  background: transparent;
}
.popup-content::-webkit-scrollbar-thumb {
  background: rgba(171, 0, 232, 0.3);
  border-radius: 10px;
}
.popup-content::-webkit-scrollbar-thumb:hover {
  background: rgba(171, 0, 232, 0.5);
}
.popup-modal.show .popup-content {
  transform: scale(1);
}
.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.popup-close:hover {
  background: rgba(171, 0, 232, 0.3);
  color: #ffffff;
  transform: rotate(90deg);
}
.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f0abfc !important;
  background: rgba(171, 0, 232, 0.25);
  border: 1px solid rgba(171, 0, 232, 0.4);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.popup-badge::before {
  content: \"\";
  width: 6px;
  height: 6px;
  background: #c084fc;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.popup-h {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #ffffff !important;
  letter-spacing: -0.02em;
}
.popup-sub {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: #e9a8ff !important;
  margin-bottom: 16px;
  line-height: 1.45;
}
.popup-body {
  font-size: 0.95rem;
  color: #e2e8f0 !important;
  line-height: 1.6;
  margin-bottom: 24px;
}
.popup-btn {
  width: 100%;
  justify-content: center;
}

/* FORM MODAL STYLES */
.form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 120000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.form-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}
.form-content {
  position: relative;
  background: radial-gradient(circle at top left, #1a0029 0%, #07131f 100%);
  border: 1px solid rgba(198, 6, 255, 0.25);
  box-shadow: 0 30px 70px rgba(198, 6, 255, 0.2);
  border-radius: 28px;
  padding: 48px;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 120010;
  color: var(--white);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease);
}
.form-content::-webkit-scrollbar {
  width: 6px;
}
.form-content::-webkit-scrollbar-track {
  background: transparent;
}
.form-content::-webkit-scrollbar-thumb {
  background: rgba(171, 0, 232, 0.3);
  border-radius: 10px;
}
.form-content::-webkit-scrollbar-thumb:hover {
  background: rgba(171, 0, 232, 0.5);
}
.form-modal.show .form-content {
  transform: scale(1);
}
.form-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  padding: 4px;
}
.form-close:hover {
  color: var(--purple);
  transform: rotate(90deg);
}
.form-header {
  text-align: center;
  margin-bottom: 16px;
}
.form-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e9a8ff;
  background: rgba(171, 0, 232, 0.18);
  border: 1px solid rgba(171, 0, 232, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.form-h {
  font-family: var(--f-head);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}
.form-sub {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.5;
}
.audit-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.input-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #d1d5db;
}
.input-group input, .input-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  font-family: var(--f-body);
  font-size: 0.92rem;
  transition: all 0.3s;
}
.input-group input::placeholder {
  color: rgba(255,255,255,0.25);
}
.input-group input:focus, .input-group select:focus {
  outline: none;
  background: rgba(171, 0, 232, 0.03);
  border-color: var(--purple);
  box-shadow: 0 0 12px rgba(171, 0, 232, 0.25);
}
.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: \"▼\";
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.input-group select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.input-group select option {
  background: #111;
  color: #fff;
}
.form-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.form-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #9ca3af;
}
.form-security-note svg {
  color: var(--purple);
}

@media(max-width: 580px) {
  .popup-content {
    padding: 40px 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-content {
    padding: 36px 20px;
  }
}

/* HERO FORM CARD STYLES */
.hero-form-card {
  background: #0b1a28;
  border: 1.5px solid rgba(171, 0, 232, 0.18);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--s-purple-lg);
  position: relative;
  z-index: 5;
  text-align: left;
}
.hero-form-card .form-h {
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--white);
  line-height: 1.25;
}
.hero-form-card .form-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  line-height: 1.5;
}
.hero-form-card .input-group label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}
.hero-form-card .input-group input, .hero-form-card .input-group select {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.hero-form-card .input-group input:focus, .hero-form-card .input-group select:focus {
  border-color: var(--purple);
  background: rgba(171, 0, 232, 0.04);
  box-shadow: 0 0 12px rgba(171, 0, 232, 0.25);
}
.hero-form-card .select-wrap::after {
  color: rgba(255, 255, 255, 0.5);
}
.hero-form-card .form-submit-btn {
  background: var(--purple);
  border: none;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: var(--s-purple);
}
.hero-form-card .form-submit-btn:hover {
  background: var(--purple-dark);
  box-shadow: var(--s-purple-lg);
  transform: translateY(-2px);
}
.hero-form-card .form-security-note {
  color: rgba(255, 255, 255, 0.5);
}

/* FAQ CHATBOT WIDGET STYLES */
.chatbot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  font-family: var(--f-body);
}
.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--black);
  border: 1.5px solid rgba(171, 0, 232, 0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--s-purple);
  position: relative;
  transition: all 0.3s var(--ease);
  outline: none;
}
.chatbot-toggle:hover {
  transform: scale(1.08) rotate(5deg);
  background: #0b1a28;
  border-color: var(--purple);
  box-shadow: var(--s-purple-lg);
}
.chatbot-pulse {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  opacity: 0;
  animation: chatPulse 2.5s infinite;
  pointer-events: none;
}
@keyframes chatPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}
.chatbot-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  max-width: 90vw;
  height: 480px;
  background: rgba(13, 6, 20, 0.95);
  border: 1.5px solid rgba(171, 0, 232, 0.22);
  border-radius: 20px;
  box-shadow: var(--s-purple-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease);
}
.chatbot-panel.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.chatbot-header {
  background: linear-gradient(135deg, #12081d 0%, #07030a 100%);
  border-bottom: 1px solid rgba(171, 0, 232, 0.15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  position: relative;
}
.chat-avatar-wrap {
  position: relative;
  margin-right: 12px;
}
.chat-avatar {
  border-radius: 50%;
  border: 1.5px solid var(--purple);
  background: var(--black);
}
.chat-status-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border: 2px solid #12081d;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.chat-header-info {
  flex-grow: 1;
}
.chat-title {
  color: var(--white);
  font-family: var(--f-head);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.chat-status {
  font-size: 0.75rem;
  color: #10b981;
  display: block;
}
.chat-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
}
.chat-close-btn:hover {
  color: var(--white);
}
.chatbot-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(171, 0, 232, 0.2) transparent;
}
.chatbot-messages::-webkit-scrollbar {
  width: 4px;
}
.chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(171, 0, 232, 0.2);
  border-radius: 2px;
}
.chat-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 85%;
  animation: chatMsgFade 0.3s ease forwards;
}
@keyframes chatMsgFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.bot-bubble {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255, 255, 255, 0.9);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.user-bubble {
  background: var(--purple);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: var(--s-purple);
}
.chat-options-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  animation: chatMsgFade 0.4s ease forwards;
}
.chat-opt-btn {
  background: rgba(171, 0, 232, 0.08);
  border: 1px solid rgba(171, 0, 232, 0.25);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  width: 100%;
}
.chat-opt-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: var(--s-purple);
  transform: translateX(4px);
}
.chat-inline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--purple);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  box-shadow: var(--s-purple);
}
.chat-inline-btn:hover {
  background: var(--purple-dark);
  box-shadow: var(--s-purple-lg);
  transform: translateY(-1px);
}
.chat-typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: fit-content;
}
.chat-typing-indicator span {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: chatTyping 1.4s infinite ease-in-out;
}
.chat-typing-indicator span:nth-child(1) { animation-delay: 0s; }
.chat-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatTyping {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* PILL NAVIGATION & HEADER PROFILE CARD */
.nav-center {
  background: rgba(0, 0, 0, 0.03);
  border:1px solid var(--border-color);
  border-radius: 100px;
  padding: 4px 24px;
}
.header-profile-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background:var(--bg-primary);
  border:1px solid var(--border-color);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  box-shadow: var(--s-md);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.header-profile-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--s-lg);
  border-color: var(--purple);
}
.hp-avatar-wrap {
  position: relative;
  width: 40px;
  height: 40px;
}
.hp-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.hp-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background:var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border:1px solid var(--border-color);
}
.hp-badge svg {
  width: 10px;
  height: 10px;
  color: #0077b5; /* LinkedIn Blue */
}
.hp-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.hp-name-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hp-name {
  font-size: 0.82rem;
  font-weight: 700;
  color:var(--text-primary);
}
.hp-status-tag {
  font-size: 0.65rem;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  padding: 1px 6px;
  border-radius: 100px;
  font-weight: 700;
}
.hp-desc {
  font-size: 0.7rem;
  color:var(--text-muted);
}

/* CENTERED HERO LAYOUT & AVATAR STACK */
.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.hero-centered .hero-h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  max-width: 820px;
}
.hero-centered .hero-sub {
  max-width: 680px;
}
.avatar-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.02);
  border:1px solid var(--border-color);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar-stack img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  object-fit: cover;
}
.avatar-stack img:first-child {
  margin-left: 0;
}
.avatar-badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color:var(--text-mid);
}
.avatar-badge-text strong {
  color:var(--text-primary);
  font-weight: 800;
  border-bottom: 2px solid #22c55e;
}
.btn-book-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff !important;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.btn-book-call:hover {
  background: var(--purple);
  box-shadow: var(--s-purple-lg);
  transform: translateY(-2px);
}
.spots-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 165, 0, 0.1);
  color: #d97706;
  border: 1px solid rgba(255, 165, 0, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-top: 14px;
}

/* READ MORE TOGGLE */
.tm-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 110px;
  transition: max-height 0.4s var(--ease);
}
.tm-text.expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  max-height: 1000px;
}
.read-more-btn {
  background: none;
  border: none;
  color: var(--purple);
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-top: -10px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
  position: relative;
  transition: color 0.2s;
}
.read-more-btn:hover {
  color: var(--purple-dark);
}

/* Services Section Styles */
.services-section {
  padding: 30px 0;
  background:var(--bg-secondary);
  border-top:1px solid var(--border-color);
  border-bottom:1px solid var(--border-color);
  position: relative;
}
.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: \"\";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--s-md);
  border-color: rgba(171, 0, 232, 0.12);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--purple-soft);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s var(--ease);
}
.service-icon svg {
  width: 24px;
  height: 24px;
}
.service-card:hover .service-icon {
  background: var(--purple);
  color: #ffffff !important;
  transform: scale(1.05);
}
.service-card:hover .service-icon svg {
  stroke: #ffffff !important;
}
.service-title {
  font-family: var(--f-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
}

@media(max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 768px) {
  .services-section {
    padding: 30px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card {
    padding: 30px 24px;
  }
}

/* Theme Switcher Toggle */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  margin-right: 12px;
}
.theme-toggle-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-soft);
}
.theme-toggle-btn .sun-icon { display: none; width: 18px; height: 18px; }
.theme-toggle-btn .moon-icon { display: block; width: 18px; height: 18px; }

[data-theme=\"dark\"] .theme-toggle-btn .sun-icon { display: block; }
[data-theme=\"dark\"] .theme-toggle-btn .moon-icon { display: none; }

/* Apply theme background and border updates dynamically */
.case-studies, .testimonials, .final-cta, .about-detail, .contact-section {
  background: var(--bg-primary) !important;
  color: var(--text-secondary);
}
.cs-card, .service-card, .tm-card, .mental-movie-box, .epiphany-box {
  background: var(--card-bg) !important;
  border-color: var(--border-color) !important;
}
.cs-name, .service-title, .tm-name, .sec-h, .hero-h1, .cta-h, .chat-title, .faq-q, .popup-h {
  color: var(--text-primary) !important;
}
.cs-description, .service-desc, .tm-text, .hero-sub, .sec-sub, .cta-sub, .chat-status, .faq-answer p, .popup-body {
  color: var(--text-mid) !important;
}
.stats-band {
  background: var(--bg-secondary) !important;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.stat-num, .stat-num span {
  color: var(--purple) !important;
}
.stat-lbl {
  color: var(--text-muted) !important;
}
.nav {
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--border-color);
}
[data-theme=\"dark\"] .nav {
  background: rgba(8,8,8,0.85);
}
.nav-links a {
  color: var(--text-mid);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary) !important;
}
.sheet-content {
  background: var(--bg-primary) !important;
}
.sheet-links a {
  color: var(--text-primary);
}
.sheet-links a:hover, .sheet-links a.active {
  background: var(--purple-soft);
  color: var(--purple) !important;
}
.chatbot-panel {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-color);
}
.chatbot-header {
  border-bottom: 1px solid var(--border-color);
}
.bot-bubble {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}
.chat-opt-btn {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}
.chat-opt-btn:hover {
  border-color: var(--purple);
  background: var(--purple-soft);
}
.browser-header {
  background: var(--bg-tertiary) !important;
  border-bottom: 1px solid var(--border-color) !important;
}
.browser-address {
  background: var(--bg-primary) !important;
  border-color: var(--border-color) !important;
  color: var(--text-muted) !important;
}
.browser-slider-footer {
  background: var(--bg-tertiary) !important;
  border-top: 1px solid var(--border-color) !important;
}
.hero {
  background: var(--hero-gradient) !important;
}
.hero-badge {
  background: var(--purple-soft) !important;
  border: 1.5px solid var(--border-color) !important;
  color: var(--purple) !important;
}

/* Theme Switcher Toggle */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  margin-right: 12px;
}
.theme-toggle-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-soft);
}
.theme-toggle-btn .sun-icon { display: none; width: 18px; height: 18px; }
.theme-toggle-btn .moon-icon { display: block; width: 18px; height: 18px; }

[data-theme=\"dark\"] .theme-toggle-btn .sun-icon { display: block; }
[data-theme=\"dark\"] .theme-toggle-btn .moon-icon { display: none; }

[data-theme=\"dark\"] .nav-logo img {
  filter: invert(1) hue-rotate(180deg);
}

/* Apply theme background and border updates dynamically */
.case-studies, .testimonials, .final-cta, .about-detail, .contact-section {
  background: var(--bg-primary) !important;
  color: var(--text-secondary);
}
.cs-card, .service-card, .tm-card, .mental-movie-box, .epiphany-box {
  background: var(--card-bg) !important;
  border-color: var(--border-color) !important;
}
.cs-name, .service-title, .tm-name, .sec-h, .hero-h1, .cta-h, .chat-title, .faq-q, .popup-h {
  color: var(--text-primary) !important;
}
.cs-description, .service-desc, .tm-text, .hero-sub, .sec-sub, .cta-sub, .chat-status, .faq-answer p, .popup-body {
  color: var(--text-mid) !important;
}
.stats-band {
  background: var(--bg-secondary) !important;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.stat-num, .stat-num span {
  color: var(--purple) !important;
}
.stat-lbl {
  color: var(--text-muted) !important;
}
.nav {
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--border-color);
}
[data-theme=\"dark\"] .nav {
  background: rgba(8,8,8,0.85);
}
.nav-links a {
  color: var(--text-mid);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary) !important;
}
.sheet-content {
  background: var(--bg-primary) !important;
}
.sheet-links a {
  color: var(--text-primary);
}
.sheet-links a:hover, .sheet-links a.active {
  background: var(--purple-soft);
  color: var(--purple) !important;
}
.chatbot-panel {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-color);
}
.chatbot-header {
  border-bottom: 1px solid var(--border-color);
}
.bot-bubble {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}
.chat-opt-btn {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}
.chat-opt-btn:hover {
  border-color: var(--purple);
  background: var(--purple-soft);
}
.browser-header {
  background: var(--bg-tertiary) !important;
  border-bottom: 1px solid var(--border-color) !important;
}
.browser-address {
  background: var(--bg-primary) !important;
  border-color: var(--border-color) !important;
  color: var(--text-muted) !important;
}
.browser-slider-footer {
  background: var(--bg-tertiary) !important;
  border-top: 1px solid var(--border-color) !important;
}
.hero {
  background: var(--hero-gradient) !important;
}
.hero-badge {
  background: var(--purple-soft) !important;
  border: 1.5px solid var(--border-color) !important;
  color: var(--purple) !important;
}




/* ==========================================================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ========================================================================== */

/* --- Tablet (max-width: 991px) --- */
@media(max-width: 991px) {
  .about-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .contact-sticky { position: static !important; }
}

/* --- Mobile (max-width: 768px) --- */
@media(max-width: 768px) {
  /* Global section padding reduction */
  .problem, .solution, .faq, .services-section, .pain-funnel-section {
    padding: 30px 0 !important;
  }
  .wrap { padding-left: 16px !important; padding-right: 16px !important; }

  /* Hero */
  .hero.mini-hero { padding: 36px 0 75px !important; }
  .hero.mini-hero .hero-h1 { font-size: 2rem !important; }
  .hero.mini-hero .hero-sub { font-size: 0.92rem !important; }

  /* Stats bar */
  .stats-inner { grid-template-columns: repeat(4, 1fr) !important; gap: 6px !important; }
  .stat-item { padding: 12px 4px !important; }
  .stat-num { font-size: 1.2rem !important; }
  .stat-lbl { font-size: 0.55rem !important; }

  /* FAQ section */
  .faq { padding: 30px 0 !important; }
  .faq-head { margin-bottom: 32px !important; }
  .faq-trigger { padding: 18px 16px !important; }
  .faq-q { font-size: 0.95rem !important; }
  .faq-answer { padding: 0 16px !important; }
  .faq-item.active .faq-answer { padding: 0 16px 18px 16px !important; }

  /* About page grid */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .about-grid h2 { font-size: 1.6rem !important; }
  .about-stats-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .about-badge-float {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    display: inline-block !important;
    margin-top: 12px !important;
  }

  /* Contact page grid */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .contact-sticky { position: static !important; }
  .contact-info-card { padding: 32px 20px !important; }
  .contact-form-card { padding: 32px 20px !important; }

  /* Hero form card */
  .hero-form-card { padding: 24px 18px !important; border-radius: 18px !important; }
  .hero-form-card .form-h { font-size: 1.25rem !important; }
  .hero-form-card .form-grid { grid-template-columns: 1fr !important; }

  /* Chatbot position */
  .chatbot-container { bottom: 16px !important; right: 16px !important; }
  .chatbot-toggle { width: 50px !important; height: 50px !important; }
  .chatbot-panel {
    position: fixed !important;
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: 75vh !important;
    border-radius: 20px 20px 0 0 !important;
  }

  /* Popup modal */
  .popup-content { padding: 32px 18px !important; border-radius: 20px !important; }
  .popup-h { font-size: 1.5rem !important; }
  .popup-sub { font-size: 1rem !important; }

  /* Form modal */
  .form-content { padding: 28px 16px !important; border-radius: 20px !important; }
  .form-h { font-size: 1.4rem !important; }
  .form-grid { grid-template-columns: 1fr !important; }

  /* Testimonial marquee cards */
  .tm-card { min-width: 280px !important; padding: 24px 18px !important; }

  /* Section headings */
  .sec-h { font-size: 1.6rem !important; }
  .sec-sub { font-size: 0.9rem !important; }

  /* Problem cards */
  .prob-card { padding: 28px 20px !important; }

  /* Solution steps */
  .sol-steps { gap: 40px !important; }
  .sol-step { gap: 28px !important; }
  .step-title { font-size: 1.3rem !important; }

  /* Case studies buttons */
  .cs-buttons { flex-direction: column !important; }
  .cs-buttons a { width: 100% !important; text-align: center !important; justify-content: center !important; }
  .cs-metrics-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }

  /* Browser mockup */
  .browser-mockup { border-radius: 12px !important; }

  /* CTA section */
  .cta-h { font-size: 1.6rem !important; }
  .cta-sub { font-size: 0.9rem !important; }

  /* Footer */
  .footer-inner { gap: 20px !important; padding: 40px 16px !important; }

  /* Spots pill */
  .spots-pill { font-size: 0.78rem !important; padding: 8px 16px !important; }

  /* Lightbox */
  .lightbox-img { max-width: 95vw !important; max-height: 85vh !important; }

  /* Horizontal marquee section */
  .h-marquee-head { padding: 0 16px; }
  .h-marquee-head .sec-h { font-size: 1.5rem !important; }
}

/* --- Small Mobile (max-width: 480px) --- */
@media(max-width: 480px) {
  .hero { padding: 36px 0 75px !important; }
  .hero-inner { padding: 0 14px !important; }
  .hero-badge { font-size: 0.65rem !important; padding: 6px 12px !important; margin-bottom: 18px !important; }
  .hero-h1 { font-size: 1.6rem !important; }
  .hero-sub { font-size: 0.88rem !important; }
  .hero-trust { gap: 16px !important; flex-wrap: wrap !important; justify-content: center !important; }
  .ts-num { font-size: 1.2rem !important; }

  /* Stats bar extra small */
  .stat-num { font-size: 1rem !important; }
  .stat-lbl { font-size: 0.5rem !important; }

  /* About page */
  .about-grid h2 { font-size: 1.35rem !important; }
  .about-grid p { font-size: 0.92rem !important; }
  .about-img-card { padding: 8px !important; }
  .about-badge-float { padding: 12px 18px !important; font-size: 0.8rem !important; }

  /* Contact page */
  .contact-info-card { padding: 24px 16px !important; }
  .contact-form-card { padding: 24px 16px !important; }
  .contact-form-card h2 { font-size: 1.4rem !important; }

  /* FAQ extra small */
  .faq-q { font-size: 0.88rem !important; }
  .faq-answer p { font-size: 0.85rem !important; }

  /* Problem cards */
  .prob-card { padding: 24px 16px !important; }
  .prob-title { font-size: 1rem !important; }
  .prob-text { font-size: 0.85rem !important; }

  /* Solution steps */
  .step-title { font-size: 1.15rem !important; }
  .step-text { font-size: 0.88rem !important; }

  /* Case study cards */
  .cs-card { padding: 14px 8px !important; }
  .cs-name { font-size: 1.2rem !important; }
  .cs-description { font-size: 0.85rem !important; }
  .cs-metric-val { font-size: 1.3rem !important; }
  .cs-metrics-grid { grid-template-columns: 1fr !important; }

  /* Chatbot */
  .chatbot-panel { height: 80vh !important; }

  /* Testimonial cards */
  .tm-card { min-width: 250px !important; }

  /* Section headings */
  .sec-h { font-size: 1.35rem !important; }

  /* CTA */
  .cta-h { font-size: 1.35rem !important; }

  /* Copywriting breakdown */
  .copy-breakdown-box { padding: 16px !important; }
  .copy-before, .copy-after { padding: 14px !important; }
  .copy-text { font-size: 0.88rem !important; }

  /* Mental movie box */
  .mental-movie-box { padding: 28px 16px !important; }
  .epiphany-box h3 { font-size: 1.4rem !important; }
  .epiphany-box p { font-size: 0.95rem !important; }
}

/* --- Extra Small (max-width: 360px) --- */
@media(max-width: 360px) {
  .hero-h1 { font-size: 1.4rem !important; }
  .hero-sub { font-size: 0.82rem !important; }
  .btn-purple, .btn-outline { font-size: 0.82rem !important; padding: 14px 20px !important; }
  .stat-num { font-size: 0.9rem !important; }
  .stat-lbl { font-size: 0.45rem !important; }
  .sec-h { font-size: 1.2rem !important; }
  .cs-name { font-size: 1.1rem !important; }
  .faq-q { font-size: 0.82rem !important; }
  .popup-content { padding: 24px 14px !important; }
  .form-content { padding: 24px 14px !important; }
}

@media(max-width: 768px) {
  .about-badge-float {
    right: 10px !important;
    bottom: -10px !important;
    padding: 10px 16px !important;
    font-size: 0.8rem !important;
  }
  .wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* --- PROFESSIONAL FOOTER --- */
.professional-footer {
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-color);
  padding: 60px 20px 20px;
  margin-top: auto;
}
.pf-container {
  max-width: 1200px;
  margin: 0 auto;
}
.pf-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.pf-col.pf-brand-col .pf-desc {
  color: var(--text-mid);
  margin: 16px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}
.pf-logo img {
  display: block;
  max-width: 100px;
  height: auto;
  width: 100%;
  object-fit: contain;
}
.pf-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.pf-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--bg-secondary, #fafafa);
  border: 1px solid var(--border-color, #e8e8e8);
  border-radius: 50%;
  color: var(--text-primary, #000000);
  transition: all 0.3s ease;
}
.pf-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: all 0.3s ease;
}
.pf-social-link:hover {
  background-color: var(--purple, #c606ff) !important;
  color: #ffffff !important;
  border-color: var(--purple, #c606ff) !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(198, 6, 255, 0.35);
}
.pf-social-link:hover svg {
  fill: #ffffff !important;
  color: #ffffff !important;
}
.pf-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 20px;
}
.pf-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pf-list li {
  margin-bottom: 12px;
}
.pf-list a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.pf-list a:hover {
  color: var(--primary-color);
}
.pf-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .pf-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .pf-col.pf-brand-col .pf-desc {
    margin: 16px auto;
  }
  .pf-logo img {
    margin: 0 auto;
  }
  .pf-social {
    justify-content: center;
  }
}

/* ========================================================
   WORDPRESS ADMIN BAR & HEADER LOGO / HERO SPACING FIX
   ======================================================== */
body.admin-bar .nav {
  top: 32px !important;
}
@media (max-width: 782px) {
  body.admin-bar .nav {
    top: 46px !important;
  }
}
.nav {
  padding: 16px 0 !important;
  overflow: visible !important;
}
.nav-wrap {
  overflow: visible !important;
}
.nav-logo {
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
}
.nav-logo img {
  max-height: 52px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}
.hero {
  padding-top: 155px !important;
  padding-bottom: 60px !important;
}
body.admin-bar .hero {
  padding-top: 185px !important;
}

/* GLOBAL VISIBILITY FIX */
.reveal, .cs-card, .service-card, .faq-item, .prob-card, .sol-card, .feature-card, .testimonial-card, .pricing-card { opacity: 1 !important; transform: none !important; visibility: visible !important; }

/* --- NEW HERO SECTION OVERRIDES --- */
.new-hero {
  background-color: #fbfbfb;
  padding: 10px 20px 80px; /* Drastically reduced top padding */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: auto;
  margin-top: 0;
}
.new-hero .hero-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Trust Badge */






/* Title */
.new-hero .hero-title {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-size: 3.2rem;
  line-height: 1.15;
  color: #111;
  font-weight: 800 !important;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .new-hero .hero-title {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-size: 3.2rem;
  line-height: 1.15;
  color: #111;
  font-weight: 800 !important;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
}
.new-hero .focus-text {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-size: 1.8em;
  font-weight: 800 !important;
  position: relative;
  display: inline-block;
  letter-spacing: -0.01em;
  color: #050505;
  line-height: 1.1;
  padding-bottom: 5px;
  margin-top: 10px;
}
/* The underline stroke */
.new-hero .focus-text::after {
  content: '';
  position: absolute;
  left: -2%;
  bottom: 8%;
  width: 104%;
  height: 6px;
  background-color: var(--purple, #ab00e8);
  border-radius: 4px;
  transform: rotate(-1deg);
  z-index: -1;
  opacity: 0.95;
}

/* Subtitle */
.new-hero .hero-subtitle {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.15rem;
  color: #555;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 40px;
  font-weight: 400;
}

/* Dark Pill Button */
.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #222327;
  color: #fff;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-dark-pill:hover {
  background-color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  color: #fff;
}
.btn-dark-pill .li-icon {
  background: rgba(255,255,255,0.1);
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* --- END NEW HERO SECTION OVERRIDES --- */

/* Tweaking Nav to Hero spacing */
.nav { padding-bottom: 10px !important; }
.new-hero { padding-top: 10px !important; }

/* Fix Hero Padding under Fixed Nav */
section.hero.new-hero {
  padding-top: 110px !important;
  margin-top: 0 !important;
}


/* Trust Badge Tweaks */
.trust-badge {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  background: #fff;
  border: 1px solid #eee;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  margin-top: 10px;
}
.trust-badge .avatars {
  display: flex;
}
.trust-badge .avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -12px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.trust-badge .avatars img:first-child {
  margin-left: 0;
}
.trust-text {
  font-size: 0.9rem;
  color: #444;
  font-weight: 600;
  font-family: 'Inter', sans-serif !important;
}
@media (max-width: 600px) {
  .trust-badge {
    flex-direction: column;
    padding: 12px 20px;
    border-radius: 20px;
    gap: 8px;
  }
  .trust-badge .avatars img {
    width: 32px;
    height: 32px;
  }
}

/* Mobile Headline 3 Lines & Button Tweaks */
@media (max-width: 600px) {
  .new-hero .hero-title {
    font-size: 2.05rem !important; /* Force fit into 3 lines on mobile */
    line-height: 1.25 !important;
  }
  .new-hero .focus-text {
    font-size: 1.05em !important; /* Keep Client Pipeline on one line */
    display: inline-block !important;
  }
  /* Trust Badge Mobile Size Reduction to prevent edge cutoff */
  .trust-badge-new {
    padding: 6px 12px 6px 8px !important;
    gap: 8px !important;
    max-width: 95% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .avatars-group img {
    width: 26px !important;
    height: 26px !important;
    margin-left: -10px !important;
  }
  .trust-line-1 {
    font-size: 10px !important;
  }
  .trust-line-2 {
    font-size: 9.5px !important;
    white-space: nowrap !important;
  }
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #222327;
  color: #fff !important;
  padding: 12px 24px !important; /* Smaller size */
  border-radius: 50px;
  font-size: 0.95rem !important;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-dark-pill:hover {
  background-color: #000;
  transform: translateY(-2px);
}
.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: #222327 !important;
  border: 1.5px solid #222327;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-outline-pill:hover {
  background-color: #f1f1f1;
  transform: translateY(-2px);
}









/* --- LOGO SIZE AND MENU TWEAKS --- */
.mobile-br {
  display: none;
}

@media (max-width: 600px) {
  .mobile-br {
    display: inline;
  }
}

/* Professional Logo Size */
.nav-logo img {
  height: 38px !important;
  width: auto !important;
}

/* Hide Header CTA on Mobile */
@media (max-width: 768px) {
  .nav-cta-btn {
    display: none !important;
  }
}
/* --- END LOGO SIZE AND MENU TWEAKS --- */


/* --- NEW TRUST BADGE & REVIEWS SLIDER STYLES --- */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
}

/* Trust Badge New Layout */
.trust-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  padding: 8px 24px 8px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  margin-top: 10px;
}
.avatars-group {
  display: flex;
  align-items: center;
}
.avatars-group img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -12px;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.avatars-group img:first-child {
  margin-left: 0;
}
.trust-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.35;
}
.trust-line-1 {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif !important;
}
.trust-pill {
  background: #022c22; /* Dark green badge jese screenshot main */
  color: #34d399; /* Light emerald green text */
  font-size: 0.72rem;
  font-weight: 800;
  padding: 1px 8px;
  border-radius: 6px;
  display: inline-block;
  font-family: 'Inter', sans-serif !important;
}
.trust-line-2 {
  font-size: 0.85rem;
  color: #0f172a;
  font-weight: 700;
  font-family: 'Inter', sans-serif !important;
}

@media (max-width: 600px) {
  .trust-badge-new {
    padding: 8px 16px 8px 10px;
    gap: 12px;
  }
  .avatars-group img {
    width: 30px;
    height: 30px;
  }
  /* Hide after the 4th avatar on mobile */
  .avatars-group img:nth-child(n+5) {
    display: none !important;
  }
  .trust-line-1 {
    font-size: 0.8rem;
  }
  .trust-line-2 {
    font-size: 0.75rem;
  }
}

/* Reviews Slider Section */
.reviews-slider-section {
  padding: 50px 0 20px;
  background: #fbfbfb;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.reviews-slider-title {
  margin-bottom: 48px;
}
.reviews-slider-title .eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 8px;
}
.reviews-slider-title .sec-h {
  font-size: 2.4rem;
  margin: 0;
}

/* Infinite Marquee Loop for Desktop */
.reviews-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* Fade out edges */
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  padding: 10px 0;
}
.reviews-marquee {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.reviews-marquee:hover {
  animation-play-state: paused;
}
.marquee-group {
  display: flex;
  gap: 30px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Review Card Design */
.review-slide-card {
  position: relative;
  width: 320px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.review-slide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.review-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}

/* LinkedIn Overlay Icon */
.li-overlay-link {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 26px;
  height: 26px;
  background: #0077b5;
  color: #ffffff !important;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s, background-color 0.2s;
  z-index: 20;
}
.li-overlay-link:hover {
  transform: scale(1.1);
  background-color: #005a87;
}
.li-overlay-link svg {
  width: 14px;
  height: 14px;
}

/* Mobile Peek Slider Styles */
.reviews-mobile-slider {
  overflow-x: auto;
  width: 100%;
  padding-bottom: 25px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -ms-overflow-style: none; /* Hide scrollbar IE */
}
.reviews-mobile-slider::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}
.mobile-slider-track {
  display: flex;
  gap: 20px;
  padding: 0 25px;
  width: max-content;
}
.reviews-mobile-slider .review-slide-card {
  width: calc(100vw - 80px) !important;
  max-width: 320px;
  scroll-snap-align: center;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}
.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  animation: zoom 0.25s ease-out;
}
@keyframes zoom {
  from {transform: scale(0.92); opacity: 0;} 
  to {transform: scale(1); opacity: 1;}
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #ffffff;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.lightbox-close:hover {
  color: #cccccc;
}
/* --- END NEW TRUST BADGE & REVIEWS SLIDER STYLES --- */


/* --- FAQ MOBILE FIX & BRAND HOVER --- */
.faq-trigger {
  white-space: normal !important;
  display: flex !important;
  width: 100% !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-align: left !important;
}

.faq-q {
  white-space: normal !important;
  word-break: break-word !important;
  flex: 1 !important;
  padding-right: 15px !important;
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-weight: 700 !important;
}

.faq-item {
  transition: all 0.3s ease !important;
}

.faq-item:hover {
  border-color: var(--purple) !important; /* Solid branding color */
  box-shadow: 0 10px 30px rgba(171, 0, 232, 0.08) !important;
}

.faq-item.active {
  border-color: var(--purple) !important;
  box-shadow: 0 10px 30px rgba(171, 0, 232, 0.08) !important;
}

@media (max-width: 600px) {
  .faq-trigger {
    padding: 16px 12px !important;
  }
  .faq-q {
    font-size: 0.88rem !important;
    line-height: 1.4 !important;
  }
  .faq-icon {
    width: 24px !important;
    height: 24px !important;
    font-size: 1.1rem !important;
  }
}
/* --- END FAQ MOBILE FIX & BRAND HOVER --- */


/* --- MOBILE MENU TOGGLE HOVER BRANDING FIX --- */
.menu-toggle:hover, 
.menu-toggle:focus, 
.menu-toggle:active {
  background-color: rgba(171, 0, 232, 0.08) !important; /* Soft branding purple */
  color: var(--purple) !important; /* Brand purple */
  border-radius: 8px !important;
  outline: none !important;
}

/* Also style the hamburger SVG lines to transition to purple on hover */
.menu-toggle:hover svg line {
  stroke: var(--purple) !important;
}
/* --- END MOBILE MENU TOGGLE HOVER BRANDING FIX --- */


/* --- REVIEWS SLIDER SPACING & CONTROLS --- */
section.hero.new-hero {
  padding-bottom: 20px !important;
}

.reviews-slider-section {
  padding-top: 15px !important;
}

.reviews-controls {
  display: none !important; /* Hide on Desktop */
}

.review-control-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 0;
  outline: none;
}

.review-control-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(171, 0, 232, 0.04);
  transform: scale(1.06);
}

.review-control-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 3px;
}

.reviews-indicator {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .reviews-controls {
    display: flex !important; /* Show on Mobile */
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  .reviews-controls {
    margin-top: 16px;
    gap: 16px;
  }
  .review-control-btn {
    width: 36px;
    height: 36px;
  }
  .reviews-indicator {
    font-size: 0.8rem;
  }
}
/* --- END REVIEWS SLIDER SPACING & CONTROLS --- */


/* --- FAQ ACTIVE & HOVER BRANDING OVERRIDES --- */
.faq-item {
  background-color: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 16px !important;
  transition: all 0.3s ease !important;
  overflow: hidden !important;
}

/* Hover state: Background becomes soft brand purple, border changes to light purple */
.faq-item:hover {
  background-color: rgba(171, 0, 232, 0.03) !important;
  border-color: rgba(171, 0, 232, 0.3) !important;
  box-shadow: 0 8px 30px rgba(171, 0, 232, 0.05) !important;
}

/* Active state */
.faq-item.active {
  border-color: var(--purple) !important;
  background-color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(171, 0, 232, 0.08) !important;
}

/* Active trigger background is solid brand purple */
.faq-item.active .faq-trigger {
  background-color: var(--purple) !important;
}

/* Active Question Text is white */
.faq-item.active .faq-q {
  color: #ffffff !important;
}

/* Active Icon is white with light opacity background */
.faq-item.active .faq-icon {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

/* Smooth transitions */
.faq-trigger {
  transition: background-color 0.3s ease, color 0.3s ease !important;
}

.faq-q {
  transition: color 0.3s ease !important;
}

.faq-icon {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease !important;
}
/* --- END FAQ ACTIVE & HOVER BRANDING OVERRIDES --- */


/* --- BRAND COLOR OVERRIDES & RED HIGHLIGHT REMOVAL --- */
:root {
  --purple:      #ab00e8 !important;
  --purple-dark: #8c00be !important;
  --purple-dim:  rgba(171, 0, 232, 0.1) !important;
  --purple-glow: rgba(171, 0, 232, 0.28) !important;
  --purple-soft: rgba(171, 0, 232, 0.05) !important;
}

/* Force active FAQ trigger background to branding purple (#ab00e8) and override any red */
html body .faq-item.active .faq-trigger,
body .faq-item.active .faq-trigger,
.faq-item.active .faq-trigger {
  background-color: transparent !important;
  background: transparent !important;
}

html body .faq-item.active .faq-q,
body .faq-item.active .faq-q,
.faq-item.active .faq-q {
  color: #ffffff !important;
}

html body .faq-item.active .faq-icon,
body .faq-item.active .faq-icon,
.faq-item.active .faq-icon {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

/* Light branding hover for FAQs */
html body .faq-item:hover,
body .faq-item:hover,
.faq-item:hover {
  background-color: rgba(171, 0, 232, 0.03) !important;
  border-color: rgba(171, 0, 232, 0.3) !important;
  box-shadow: 0 8px 30px rgba(171, 0, 232, 0.05) !important;
}

/* Ensure no red buttons/accents remain in active states globally */
button:active, button:focus, .btn:active, .btn:focus {
  outline: none !important;
}
/* --- END BRAND COLOR OVERRIDES & RED HIGHLIGHT REMOVAL --- */


/* --- FAQ BUTTON HOVER RED REMOVAL OVERRIDES --- */
/* Force non-active FAQ trigger buttons to have transparent background on hover */
html body .faq-item:not(.active) .faq-trigger:hover,
body .faq-item:not(.active) .faq-trigger:hover,
.faq-item:not(.active) .faq-trigger:hover,
html body .faq-item:not(.active) .faq-trigger:focus,
body .faq-item:not(.active) .faq-trigger:focus,
.faq-item:not(.active) .faq-trigger:focus {
  background-color: transparent !important;
  background: transparent !important;
  color: var(--text-primary) !important;
}

/* Force active FAQ trigger buttons to stay brand purple even on hover/focus */
html body .faq-item.active .faq-trigger:hover,
body .faq-item.active .faq-trigger:hover,
.faq-item.active .faq-trigger:hover,
html body .faq-item.active .faq-trigger:focus,
body .faq-item.active .faq-trigger:focus,
.faq-item.active .faq-trigger:focus {
  background-color: transparent !important;
  background: transparent !important;
  color: #ffffff !important;
}

/* Ensure no red background can apply to any FAQ container state */
html body .faq-item:hover .faq-trigger,
body .faq-item:hover .faq-trigger,
.faq-item:hover .faq-trigger {
  border-color: transparent !important;
}
/* --- END FAQ BUTTON HOVER RED REMOVAL OVERRIDES --- */


/* --- SERVICE BULLET LIST STYLING --- */
.service-bullets {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 0 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  text-align: left !important;
}

.service-bullets li {
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  color: var(--text-mid) !important;
  position: relative !important;
  padding-left: 22px !important;
  font-family: 'Inter', sans-serif !important;
}

.service-bullets li::before {
  content: "→" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: var(--purple) !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
}
/* --- END SERVICE BULLET LIST STYLING --- */


/* --- MINI HERO SPACING FIX --- */
section.hero.mini-hero {
  padding-top: 110px !important; /* Clears fixed header without leaving massive gaps */
  padding-bottom: 30px !important;
  min-height: auto !important;
}

@media (max-width: 768px) {
  section.hero.mini-hero {
    padding-top: 95px !important; /* Slightly tighter on mobile */
    padding-bottom: 20px !important;
  }
}
/* --- END MINI HERO SPACING FIX --- */


/* --- PREMIUM SERVICE BOX CARD DESIGN --- */
.services-section {
  background: var(--bg-primary) !important;
}

.services-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
  gap: 30px !important;
  margin-top: 20px !important;
  max-width: 1400px !important;
}

.service-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 36px 32px !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015) !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  text-align: left !important;
}

.service-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(171, 0, 232, 0.35) !important;
  box-shadow: 0 20px 40px rgba(171, 0, 232, 0.06) !important;
}

.service-icon {
  width: 50px !important;
  height: 50px !important;
  border-radius: 12px !important;
  background: rgba(171, 0, 232, 0.05) !important;
  color: #ab00e8 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 24px !important;
  transition: all 0.3s ease !important;
}

.service-card:hover .service-icon {
  background: transparent !important;
  color: #ffffff !important;
  transform: scale(1.05) !important;
}

.service-card:hover .service-icon svg {
  stroke: #ffffff !important;
  color: #ffffff !important;
}

.service-title {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 12px !important;
  line-height: 1.35 !important;
}

.service-desc {
  font-size: 0.94rem !important;
  line-height: 1.6 !important;
  color: #475569 !important;
  margin-bottom: 20px !important;
}

.service-bullets {
  margin-top: auto !important; /* Force lists to align at the bottom */
  list-style: none !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  border-top: 1px dashed #e2e8f0 !important;
  padding-top: 20px !important;
}

.service-bullets li {
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  color: #475569 !important;
  position: relative !important;
  padding-left: 20px !important;
}

.service-bullets li::before {
  content: "→" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #ab00e8 !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
}

@media (max-width: 600px) {
  .service-card {
    padding: 28px 24px !important;
  }
  .service-title {
    font-size: 1.15rem !important;
  }
}
/* --- END PREMIUM SERVICE BOX CARD DESIGN --- */


/* --- POPUP HEADLINE COLOR FIX --- */
html body #auditPopup .popup-h,
html body #auditPopup h3,
html body .popup-modal .popup-h,
html body .popup-modal h3,
html body .popup-modal h4 {
  color: #ffffff !important;
}
/* --- END POPUP HEADLINE COLOR FIX --- */


/* --- PREMIUM STYLISH UNDERLINE --- */
.new-hero .focus-text {
  position: relative !important;
  display: inline-block !important;
  z-index: 1 !important;
  padding-bottom: 8px !important;
}

.new-hero .focus-text::after {
  content: '' !important;
  position: absolute !important;
  left: -2% !important;
  bottom: -4px !important;
  width: 104% !important;
  height: 14px !important;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10C80 3 170 3 295 9' stroke='%23ab00e8' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/100% 100% !important;
  z-index: -1 !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}
/* --- END PREMIUM STYLISH UNDERLINE --- */


/* --- PREMIUM FANCY UNDERLINE FOR SUBPAGES --- */
.hero-h1 .hl {
  display: inline-block !important;
  position: relative !important;
  background: transparent !important;
  color: inherit !important;
  padding: 0 0 10px 0 !important;
  border-radius: 0 !important;
  transform: none !important;
  box-shadow: none !important;
  z-index: 1 !important;
}

.hero-h1 .hl::after {
  content: '' !important;
  position: absolute !important;
  left: -2% !important;
  bottom: -4px !important;
  width: 104% !important;
  height: 14px !important;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10C80 3 170 3 295 9' stroke='%23ab00e8' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/100% 100% !important;
  z-index: -1 !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 768px) {
  .hero-h1 .hl {
    padding-bottom: 6px !important;
  }
  .hero-h1 .hl::after {
    height: 10px !important;
    bottom: -2px !important;
  }
}
/* --- END PREMIUM FANCY UNDERLINE FOR SUBPAGES --- */


/* --- TESTIMONIAL READ MORE/LESS BUTTON DESIGN --- */
.read-more-btn {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  color: var(--purple) !important;
  font-family: var(--f-body) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin-top: 5px !important;
  margin-bottom: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  z-index: 10 !important;
  position: relative !important;
  transition: all 0.2s !important;
  box-shadow: none !important;
  text-shadow: none !important;
  text-transform: none !important;
  outline: none !important;
  border-radius: 0 !important;
}

.read-more-btn:hover {
  color: var(--purple-dark) !important;
  background: transparent !important;
  background-color: transparent !important;
  text-decoration: underline !important;
}

.read-more-btn span {
  color: inherit !important;
  background: transparent !important;
}

.read-more-btn svg {
  color: inherit !important;
  stroke: currentColor !important;
}
/* --- END TESTIMONIAL READ MORE/LESS BUTTON DESIGN --- */


/* --- MOBILE SHEET HEADER BUTTONS FIX --- */
.sheet-close {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 8px !important;
  color: var(--text-primary) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  outline: none !important;
}

.sheet-close:hover {
  color: var(--purple) !important;
  background: transparent !important;
  background-color: transparent !important;
  transform: rotate(90deg) !important;
}

.theme-toggle-btn {
  background: transparent !important;
  background-color: transparent !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: none !important;
  cursor: pointer !important;
  color: var(--text-primary) !important;
  transition: all 0.3s var(--ease) !important;
  outline: none !important;
}

.theme-toggle-btn:hover {
  color: var(--purple) !important;
  border-color: var(--purple) !important;
  background: transparent !important;
  background-color: transparent !important;
}
/* --- END MOBILE SHEET HEADER BUTTONS FIX --- */


/* --- RESPONSIVE TYPOGRAPHY UTILITIES --- */
@media (max-width: 768px) {
  br.hide-br-mobile {
    display: none !important;
  }
}
/* --- END RESPONSIVE TYPOGRAPHY UTILITIES --- */


/* --- PREMIUM HOME PAGE OVERRIDES --- */
.stats-band {
  background: #0b1a28 !important;
  border-top: 1px solid rgba(171, 0, 232, 0.15) !important;
  border-bottom: 1px solid rgba(171, 0, 232, 0.15) !important;
  padding: 40px 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

.stats-inner {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 40px !important;
  align-items: center !important;
}

.stat-item {
  position: relative !important;
  padding: 0 20px !important;
  text-align: center !important;
}

.stat-item:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  right: -20px !important;
  top: 15% !important;
  height: 70% !important;
  width: 1px !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.prob-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 30px !important;
}

@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .stat-item {
    padding: 10px 0 !important;
  }
  .stat-item:not(:last-child)::after {
    display: none !important;
  }
  .prob-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}
/* --- END PREMIUM HOME PAGE OVERRIDES --- */


/* --- PREMIUM STICKY SIDE PROBLEM SECTION --- */
.problem-sticky-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.prob-sticky-col {
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
  padding-bottom: 40px;
}

.prob-scroll-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.prob-scroll-item {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1.5px solid var(--border-color);
  align-items: flex-start;
}

.prob-scroll-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.prob-scroll-num {
  font-family: var(--f-head);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--purple);
  opacity: 0.8;
  line-height: 0.9;
  flex-shrink: 0;
}

.prob-scroll-title {
  font-family: var(--f-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.prob-scroll-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
}

@media (max-width: 900px) {
  .problem-sticky-container {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
  }
  .prob-sticky-col {
    position: relative !important;
    top: 0 !important;
    padding-bottom: 0 !important;
  }
  .prob-scroll-col {
    gap: 36px !important;
  }
  .prob-scroll-item {
    gap: 20px !important;
    padding-bottom: 30px !important;
  }
}
/* --- END PREMIUM STICKY SIDE PROBLEM SECTION --- */


/* --- PREMIUM SOLUTION STEP RESPONSIVENESS --- */
.sol-step-1, .sol-step-3 {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 60px !important;
  align-items: center !important;
}

.sol-step-2 {
  display: grid !important;
  grid-template-columns: 1fr 1.2fr !important;
  gap: 60px !important;
  align-items: center !important;
}

@media (max-width: 1024px) {
  .sol-step-1, .sol-step-2, .sol-step-3 {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
}

@media (max-width: 768px) {
  .copy-breakdown-box {
    padding: 18px !important;
  }
  .copy-after {
    padding: 12px !important;
  }
  .sol-step {
    gap: 30px !important;
  }
}
/* --- END PREMIUM SOLUTION STEP RESPONSIVENESS --- */


/* --- MOBILE MODALS SPACING ADJUSTMENTS --- */
@media (max-width: 768px) {
  .form-content {
    padding: 24px 20px !important;
    border-radius: 20px !important;
    max-height: 90vh !important;
  }
  .popup-content {
    padding: 24px 20px !important;
    border-radius: 20px !important;
    max-height: 90vh !important;
  }
}
/* --- END MOBILE MODALS SPACING ADJUSTMENTS --- */


/* --- MAIN LANDMARK CONTAINER FULL WIDTH OVERRIDE --- */
main#content.site-main {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* --- END MAIN LANDMARK CONTAINER FULL WIDTH OVERRIDE --- */


/* --- MOBILE PROFESSIONAL UI/UX OVERRIDES --- */
@media (max-width: 768px) {
  /* 1. Spacing and Margin Safety on Mobile (No touching edges) */
  .wrap, 
  .problem-sticky-container, 
  .sol-steps,
  .faq-container,
  .footer-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Fix grid overflow for Inbound Client Infrastructure (6 boxes) on mobile */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Prevent long links from expanding and overflowing the contact card on mobile */
  .contact-info-card a {
    word-break: break-all !important;
  }

  /* Lock viewport overflow completely across iOS and Android browsers */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* About Page Hero Title - 2 lines limit on mobile */
  .mini-hero .hero-h1 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }

  /* 2. Hero CTA Spacing Clutter Fix */
  .hero-ctas {
    margin-bottom: 40px !important;
  }

  /* 3. Footer Center Alignment Consistency on Mobile */
  footer.site-footer, 
  .footer-inner, 
  .footer-inner * {
    text-align: center !important;
  }
  .footer-logo {
    margin: 0 auto 20px !important;
    display: inline-block !important;
  }
  .footer-links, 
  .footer-legal-links {
    justify-content: center !important;
    text-align: center !important;
    gap: 16px !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* 4. Before/After Labels readability upgrade on mobile */
  .ic-label {
    font-size: 11px !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    background: rgba(9, 3, 14, 0.85) !important;
    border: 1px solid rgba(171, 0, 232, 0.3) !important;
  }
  .browser-slider-footer span {
    font-size: 11px !important;
  }
}
/* --- END MOBILE PROFESSIONAL UI/UX OVERRIDES --- */


/* ==========================================================================
   HOMEPAGE STYLES (Brief Version 2.0)
   ========================================================================== */

/* Global container & utilities */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.text-center { text-align: center; }
.text-dark { color: var(--text-dark) !important; }
.text-white { color: var(--text-white) !important; }
.text-muted-white { color: rgba(255, 255, 255, 0.7) !important; }

.section-badge {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-primary);
  margin-bottom: 16px;
}

.section-h2 {
  font-family: var(--font-family);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-intro {
  font-family: var(--font-family);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted-dark);
  max-width: 640px;
  margin: 0 auto 56px;
}

/* SECTION 1: HERO */
.hero-section {
  position: relative;
  background-color: var(--bg-navy);
  padding: 90px 0 100px;
  overflow: hidden;
  text-align: center;
}
.hero-radial-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 198, 181, 0.12) 0%, rgba(10, 13, 26, 0) 70%);
  pointer-events: none;
}
.hero-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Social Proof Badge */
.hero-social-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  margin-bottom: 24px;
}
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar-stack .avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-navy);
  margin-left: -8px;
  object-fit: cover;
}
.avatar-stack .avatar-img:first-child {
  margin-left: 0;
}
.hero-social-badge .badge-text {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-white);
}

/* Category Label */
.category-label {
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--green-primary);
  margin-bottom: 24px;
}

/* H1 Headline */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 24px;
  gap: 4px;
}
.hero-line-1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero-line-2 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.hero-line-3 {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 600;
  font-style: italic;
  color: var(--green-primary);
  line-height: 1.25;
  margin-top: 6px;
}

/* Hero Subtitle */
.hero-subtitle {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin: 0 auto 36px;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero Trust Strip */
.hero-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-family);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 700px;
}
.hero-trust-strip .bullet-dot {
  color: var(--green-primary);
  font-weight: bold;
}

/* SECTION 2: THE PROBLEM */
.section-problem {
  background-color: var(--bg-light-gray);
  padding: 100px 0;
}
.problem-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.problem-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 36px;
  box-sizing: border-box;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.card-num-badge {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 700;
  color: var(--green-primary);
  background: rgba(0, 198, 181, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.problem-card-title {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 14px;
  line-height: 1.35;
}
.problem-card-body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  margin: 0;
}
.problem-transition-statement {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

/* SECTION 3: ICP FIT */
.section-icp {
  background-color: var(--bg-navy);
  padding: 100px 0;
}
.icp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.icp-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--green-glow-card);
  border-radius: 14px;
  padding: 40px 32px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, transform 0.2s ease;
}
.icp-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-4px);
}
.icp-top-label {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 700;
  color: var(--green-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.icp-card-title {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-white);
  margin: 0 0 14px;
  line-height: 1.35;
}
.icp-card-body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.icp-exclusion-note {
  font-family: var(--font-family);
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  max-width: 600px;
  margin: 0 auto;
}

/* SECTION 4: WHAT WE BUILD */
.section-what-we-build {
  background-color: var(--bg-light-soft);
  padding: 100px 0;
}
.capability-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 48px;
}
.capability-card {
  background: #FFFFFF;
  border-left: 3px solid var(--green-primary);
  border-radius: 10px;
  padding: 32px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.cap-bg-num {
  position: absolute;
  top: 10px;
  right: 24px;
  font-family: var(--font-family);
  font-size: 64px;
  font-weight: 800;
  color: rgba(0, 198, 181, 0.07);
  line-height: 1;
  pointer-events: none;
}
.cap-card-title {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 12px;
}
.cap-card-body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  margin: 0 0 10px;
}
.cap-card-body:last-child {
  margin-bottom: 0;
}
.capability-cta-box .cap-cta-text {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* SECTION 5: THE PROCESS */
.section-process {
  background-color: var(--bg-navy);
  padding: 100px 0;
}
.process-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-stage-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 32px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.stage-num-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-primary);
  color: #FFFFFF;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.stage-title {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  margin: 0 0 12px;
}
.stage-body {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px;
  flex-grow: 1;
}
.stage-timeline-badge {
  align-self: flex-start;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 600;
  color: var(--green-primary);
  background: rgba(0, 198, 181, 0.12);
  padding: 4px 12px;
  border-radius: 100px;
}

/* SECTION 6: TESTIMONIALS & STATS */
.section-testimonials {
  background-color: var(--bg-light-soft);
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.stars-wrap {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  margin: 0 0 24px;
  font-style: italic;
}
.author-name {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}
.author-role {
  font-family: var(--font-family);
  font-size: 13px;
  color: var(--text-muted-dark);
  margin-top: 4px;
  line-height: 1.4;
}

/* Stat Counters */
.stats-counters-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #FFFFFF;
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 36px 48px;
  max-width: 900px;
  margin: 0 auto;
}
.stat-counter-box {
  text-align: center;
  flex: 1;
}
.stat-number {
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted-dark);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-gray);
}

/* SECTION 7: LEAD MAGNET BANNER */
.section-lead-banner {
  background-color: var(--bg-navy);
  padding: 100px 0;
}
.lead-banner-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 198, 181, 0.3);
  border-radius: 16px;
  padding: 56px 48px;
  box-shadow: 0 0 30px rgba(0, 198, 181, 0.08);
}
.lead-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lead-banner-h3 {
  font-family: var(--font-family);
  font-size: 34px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 16px;
  line-height: 1.25;
}
.lead-banner-body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 14px;
}
.lead-trust-items {
  font-family: var(--font-family);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lead-trust-items .pipe-sep {
  color: var(--green-primary);
}

/* Form Styles */
.lead-banner-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.lead-input-group label {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
}
.lead-input-group input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 13px 16px;
  color: #FFFFFF;
  font-family: var(--font-family);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  width: 100%;
}
.lead-input-group input:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 10px rgba(0, 198, 181, 0.25);
}
.btn-full-width {
  width: 100%;
  margin-top: 8px;
}
.scarcity-subnote {
  font-family: var(--font-family);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

/* SECTION 8: FINAL CTA */
.section-final-cta {
  background-color: var(--bg-navy);
  padding: 100px 0 120px;
}
.final-cta-h2 {
  font-family: var(--font-family);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.underline-accent {
  position: relative;
  display: inline-block;
  color: var(--green-primary);
}
.final-cta-sub {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 36px;
}
.btn-large {
  padding: 18px 36px !important;
  font-size: 16px !important;
}
.scarcity-line {
  font-family: var(--font-family);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

/* SECTION 9: FOOTER */
.site-footer {
  background-color: var(--bg-dark-footer);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 20px;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-social-icon:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  transform: translateY(-2px);
}
.footer-heading {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  margin: 0 0 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links li a {
  font-family: var(--font-family);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links li a:hover {
  color: var(--green-primary);
}
.footer-touch-text {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px;
}
.footer-green-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.footer-green-link:hover {
  gap: 10px;
}
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-family);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .problem-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .icp-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .process-roadmap-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .lead-banner-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .problem-cards-grid { grid-template-columns: 1fr; }
  .icp-cards-grid { grid-template-columns: 1fr; }
  .process-roadmap-grid { grid-template-columns: 1fr; }
  .stats-counters-row {
    flex-direction: column;
    gap: 24px;
    padding: 30px 20px;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .lead-banner-card { padding: 36px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; text-align: center; }
}


/* ==========================================================================
   SERVICES PAGE STYLES (Brief Version 2.0)
   ========================================================================== */
.services-hero-section {
  background-color: var(--bg-navy);
  padding: 90px 0 80px;
  text-align: center;
}
.services-hero-h1 {
  font-family: var(--font-family);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 860px;
  margin: 0 auto 20px;
}
.services-hero-sub {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

/* Packages Grid */
.services-packages-section {
  background-color: var(--bg-light-gray);
  padding: 90px 0;
}
.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1060px;
  margin: 0 auto;
}
.package-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
.package-card.featured-package {
  border: 2px solid var(--green-primary);
  box-shadow: 0 8px 30px rgba(0, 198, 181, 0.12);
  position: relative;
}
.pkg-badge {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 700;
  color: var(--green-primary);
  background: rgba(0, 198, 181, 0.1);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pkg-badge.highlighted-badge {
  background: var(--green-primary);
  color: #FFFFFF;
}
.pkg-title {
  font-family: var(--font-family);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px;
}
.pkg-subtitle {
  font-family: var(--font-family);
  font-size: 15px;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
}
.pkg-price-tag {
  background: var(--bg-light-soft);
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pkg-price-tag .price-val {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 800;
  color: var(--green-primary);
}
.pkg-price-tag .price-val .sub-mo {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted-dark);
}
.pkg-price-tag .price-type {
  font-family: var(--font-family);
  font-size: 13px;
  color: var(--text-muted-dark);
}

.pkg-block-label {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.pkg-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pkg-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted-dark);
}
.pkg-checklist .check-icon {
  width: 18px;
  height: 18px;
  color: var(--green-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.pkg-for-box {
  background: var(--bg-light-soft);
  border-left: 3px solid var(--green-primary);
  border-radius: 0 8px 8px 0;
  padding: 16px 18px;
  margin-bottom: 32px;
}
.pkg-for-box strong {
  font-family: var(--font-family);
  font-size: 13px;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}
.pkg-for-box p {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted-dark);
  margin: 0;
}

/* Comparison Table */
.services-comparison-section {
  background-color: #FFFFFF;
  padding: 100px 0;
}
.comparison-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}
.services-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: var(--font-family);
}
.services-table th {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 2px solid var(--border-gray);
  color: var(--text-dark);
}
.services-table th.th-featured {
  color: var(--green-primary);
  background: rgba(0, 198, 181, 0.05);
}
.services-table td {
  padding: 16px 24px;
  font-size: 15px;
  border-bottom: 1px solid var(--border-gray);
  color: var(--text-muted-dark);
}
.services-table td.td-feature {
  font-weight: 600;
  color: var(--text-dark);
}
.services-table td.td-featured {
  background: rgba(0, 198, 181, 0.03);
}
.services-table .check-mark {
  color: var(--green-primary);
  font-weight: bold;
  margin-right: 4px;
}
.services-table .pill-optional {
  display: inline-block;
  background: rgba(0, 198, 181, 0.12);
  color: var(--green-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

@media (max-width: 860px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/* ==========================================================================
   CASE STUDIES PAGE STYLES (Brief Version 2.0)
   ========================================================================== */
.cs-hero-section {
  background-color: var(--bg-navy);
  padding: 90px 0 80px;
  text-align: center;
}
.cs-hero-h1 {
  font-family: var(--font-family);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 860px;
  margin: 0 auto 20px;
}
.cs-hero-sub {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

/* Case Studies Cards Stack */
.cs-list-section {
  background-color: var(--bg-light-gray);
  padding: 90px 0 110px;
}
.cs-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.cs-showcase-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 44px;
  box-sizing: border-box;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
}
.cs-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
}
.cs-tag {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 700;
  color: var(--green-primary);
  background: rgba(0, 198, 181, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cs-client-name {
  font-family: var(--font-family);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
}
.cs-client-role {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 24px;
}
.cs-detail-block {
  margin-bottom: 18px;
}
.cs-block-heading {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
}
.cs-block-text {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  margin: 0;
}
.cs-quote-box {
  background: var(--bg-light-soft);
  border-left: 3px solid var(--green-primary);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-top: 24px;
}
.cs-quote-box p {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
  margin: 0;
}
.cs-visual-frame {
  background: var(--bg-navy);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.cs-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 920px) {
  .cs-showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* ==========================================================================
   MANGOZO-INSPIRED HEADER & FOOTER DESIGN SYSTEM
   ========================================================================== */

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #0b1a28 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.3s ease;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Brand Logo */
.brand-logo-text {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF !important;
  text-decoration: none;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
}
.brand-dark-text {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 700;
  color: #0b1a28 !important;
  text-decoration: none;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
}
.brand-green-dot {
  color: #00c6b5 !important;
  font-size: 26px;
  line-height: 1;
}

/* Center Nav Links */
.nav-menu-center {
  display: flex;
  align-items: center;
}
.nav-menu-list {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item-link {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF !important;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}
.nav-item-link:hover {
  opacity: 1;
  color: #00c6b5 !important;
}

/* Right Nav Actions */
.nav-actions-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-ghost-link {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF !important;
  text-decoration: none;
  transition: opacity 0.2s ease;
  opacity: 0.9;
}
.nav-ghost-link:hover {
  opacity: 1;
}
.nav-mango-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00c6b5 !important;
  color: #FFFFFF !important;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-mango-btn:hover {
  background-color: #00a89a !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 198, 181, 0.35);
}
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 4px;
}

/* CLEAN MANGOZO-STYLE FOOTER */
.clean-mango-footer {
  background-color: #FFFFFF !important;
  border-top: 1px solid #E2E2EA !important;
  padding: 70px 0 36px !important;
  width: 100% !important;
  box-sizing: border-box;
}
.footer-inner-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}
.footer-main-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 60px;
}

/* Brand & Badges */
.footer-brand-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand-logo {
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.social-circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #E2E2EA;
  background: #FFFFFF;
  color: #0b1a28;
  text-decoration: none;
  transition: all 0.2s ease;
}
.social-circle-btn:hover {
  background: #00c6b5;
  border-color: #00c6b5;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* 4 Trust Badges */
.footer-badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 250px;
}
.footer-trust-card {
  background: #FFFFFF;
  border: 1px solid #E2E2EA;
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-card-top {
  font-family: var(--font-family);
  font-size: 9px;
  font-weight: 700;
  color: #718096;
  letter-spacing: 0.5px;
}
.trust-card-mid {
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 800;
  color: #0b1a28;
  line-height: 1.2;
}
.trust-card-bot {
  font-family: var(--font-family);
  font-size: 8px;
  font-weight: 700;
  background: #0b1a28;
  color: #FFFFFF;
  padding: 2px 4px;
  border-radius: 3px;
  margin-top: 4px;
  display: inline-block;
}

/* Nav Columns */
.footer-col-title {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 700;
  color: #00c6b5 !important;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}
.footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col-links li a {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: #2D3748 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col-links li a:hover {
  color: #00c6b5 !important;
}

/* Bottom Bar */
.footer-clean-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #E2E2EA;
  font-family: var(--font-family);
  font-size: 13px;
  color: #718096;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: #718096;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
  color: #0b1a28;
}

@media (max-width: 991px) {
  .nav-menu-center,
  .nav-ghost-link {
    display: none;
  }
  .nav-mobile-toggle {
    display: block;
  }
  .footer-main-row {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand-column {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-main-row {
    grid-template-columns: 1fr;
  }
  .footer-brand-column {
    grid-column: span 1;
  }
  .footer-clean-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}


/* ==========================================================================
   FULL SCREEN EDGE-TO-EDGE HEADER & CLEAN MANGOZO-STYLE FOOTER
   ========================================================================== */

/* HEADER FULL SCREEN */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100% !important;
  z-index: 1000;
  background-color: #0b1a28 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-sizing: border-box;
}
.nav-container-fullscreen {
  width: 100% !important;
  max-width: 100% !important;
  padding: 16px 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
}

/* FOOTER FULL SCREEN */
.clean-mango-footer {
  background-color: #FFFFFF !important;
  border-top: 1px solid #E2E2EA !important;
  padding: 70px 0 36px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.footer-inner-fullscreen {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 48px !important;
  box-sizing: border-box !important;
}
.footer-grid-zelyk {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

/* Column 1 */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-tagline-text {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.6;
  color: #4A4A6A !important;
  margin: 14px 0 20px;
  max-width: 320px;
}

/* Green Headings */
.footer-col-heading {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  color: #00c6b5 !important;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-list li a {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: #2D3748 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links-list li a:hover {
  color: #00c6b5 !important;
}

/* Column 4: Get in Touch */
.footer-touch-desc {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.6;
  color: #4A4A6A !important;
  margin: 0 0 16px;
}
.footer-green-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  color: #00c6b5 !important;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.footer-green-cta-link:hover {
  gap: 10px;
}

/* Bottom Bar */
.footer-bottom-fullscreen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #E2E2EA;
  font-family: var(--font-family);
  font-size: 13px;
  color: #718096;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-legal-links a {
  color: #718096;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover {
  color: #0b1a28;
}
.dot-sep {
  color: #CBD5E0;
}

@media (max-width: 1024px) {
  .nav-container-fullscreen { padding: 16px 24px !important; }
  .footer-inner-fullscreen { padding: 0 24px !important; }
  .footer-grid-zelyk { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .footer-grid-zelyk { grid-template-columns: 1fr; }
  .footer-bottom-fullscreen { flex-direction: column; gap: 12px; text-align: center; }
}



/* ============================================================ */
/* NUCLEAR FULL-SCREEN HEADER FIX — overwrites all parent rules */
/* ============================================================ */

/* 1. Force body background to dark so no white peeks anywhere */
html,
body {
  background-color: #0b1a28 !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* 2. Kill any leftover padding from hello-elementor header-footer.css */
.site-header {
  padding: 0 !important;
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
  margin: 0 !important;
  background-color: #0b1a28 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  z-index: 99999 !important;
  box-sizing: border-box !important;
  display: block !important;
}

/* 3. The nav container gets the actual padding */
.nav-container-fullscreen {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  height: 70px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
  background-color: #0b1a28 !important;
}

/* 4. Logo text */
.brand-logo-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.03em !important;
  text-decoration: none !important;
}
.brand-green-dot {
  color: #00c6b5 !important;
}
.nav-logo-link {
  text-decoration: none !important;
}

/* 5. Nav links */
.nav-menu-list {
  display: flex !important;
  align-items: center !important;
  gap: 36px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.nav-item-link {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
  white-space: nowrap !important;
}
.nav-item-link:hover {
  color: #FFFFFF !important;
}

/* 6. Ghost link */
.nav-ghost-link {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
.nav-ghost-link:hover {
  color: #FFFFFF !important;
}

/* 7. Nav actions right */
.nav-actions-right {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

/* 8. Green CTA button */
.nav-mango-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 22px !important;
  background-color: #00c6b5 !important;
  color: #FFFFFF !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background-color 0.2s !important;
}
.nav-mango-btn:hover {
  background-color: #00c6b5 !important;
  color: #FFFFFF !important;
}

/* 9. Mobile toggle */
.nav-mobile-toggle {
  display: none !important;
  background: transparent !important;
  border: none !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  padding: 6px !important;
}

/* 10. Admin bar offset */
body.admin-bar .site-header {
  top: 32px !important;
}
@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px !important;
  }
}

/* 11. Responsive */
@media (max-width: 1024px) {
  .nav-container-fullscreen {
    padding: 0 24px !important;
  }
}

@media (max-width: 768px) {
  .nav-menu-center {
    display: none !important;
  }
  .nav-ghost-link {
    display: none !important;
  }
  .nav-mango-btn {
    display: none !important;
  }
  .nav-mobile-toggle {
    display: flex !important;
  }
}

/* Mobile drawer */
.mobile-sheet {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
}
.sheet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.sheet-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #0b1a28;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}
.mobile-sheet.open {
  pointer-events: all;
}
.mobile-sheet.open .sheet-overlay { opacity: 1; }
.mobile-sheet.open .sheet-content { transform: translateX(0); }
.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sheet-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.sheet-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.sheet-links li a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}
.sheet-footer { padding-bottom: 16px; }

/* ============================================================ */
/* END NUCLEAR HEADER FIX */
/* ============================================================ */



/* ============================================================ */
/* MANGOZO-STYLE WIDE HERO LAYOUT (Edge-balanced, wide text)   */
/* ============================================================ */

.hero-section {
  position: relative !important;
  background-color: #0b1a28 !important;
  padding: 36px 0 75px !important;
  overflow: hidden !important;
  text-align: center !important;
}

.hero-wrap {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  max-width: 1200px !important;
  width: 100% !important;
  padding: 0 32px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

.hero-social-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 6px 16px 6px 8px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 100px !important;
  margin-bottom: 22px !important;
}

.category-label {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2.2px !important;
  color: #00c6b5 !important;
  margin-bottom: 20px !important;
  text-align: center !important;
}

.hero-title {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin: 0 auto 24px !important;
  gap: 6px !important;
  max-width: 1120px !important;
  width: 100% !important;
  text-align: center !important;
}

.hero-line-main,
.hero-line-1,
.hero-line-2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(34px, 4.8vw, 62px) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.15 !important;
  letter-spacing: -0.035em !important;
  display: block !important;
  text-align: center !important;
}

.hero-line-accent,
.hero-line-3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(34px, 4.8vw, 62px) !important;
  font-weight: 800 !important;
  color: #00c6b5 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.035em !important;
  font-style: normal !important;
  display: block !important;
  text-align: center !important;
  margin-top: 4px !important;
}

.hero-subtitle {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(16px, 1.35vw, 19.5px) !important;
  line-height: 1.65 !important;
  color: rgba(245, 245, 247, 0.75) !important;
  max-width: 860px !important;
  margin: 0 auto 36px !important;
  text-align: center !important;
}

.hero-cta-group {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  margin-bottom: 40px !important;
}

.hero-trust-strip {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.45) !important;
  flex-wrap: wrap !important;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0 60px !important;
  }
  .hero-wrap {
    padding: 0 20px !important;
  }
  .hero-line-main,
  .hero-line-accent {
    font-size: clamp(28px, 7vw, 40px) !important;
    line-height: 1.2 !important;
  }
  .hero-subtitle {
    font-size: 15px !important;
    margin-bottom: 28px !important;
  }
}



/* ============================================================ */
/* EXACT 2-LINE HERO HEADLINE (Line 1 White, Line 2 Green)      */
/* ============================================================ */

.hero-section {
  position: relative !important;
  background-color: #0b1a28 !important;
  padding: 36px 0 75px !important;
  overflow: hidden !important;
  text-align: center !important;
}

.hero-wrap {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  max-width: 1240px !important;
  width: 100% !important;
  padding: 0 24px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

.hero-social-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 6px 16px 6px 8px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 100px !important;
  margin-bottom: 22px !important;
}

.category-label {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #00c6b5 !important;
  margin-bottom: 20px !important;
  text-align: center !important;
}

.hero-title {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin: 0 auto 24px !important;
  gap: 8px !important;
  max-width: 1200px !important;
  width: 100% !important;
  text-align: center !important;
}

.hero-line-main,
.hero-line-1,
.hero-line-2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(28px, 3.4vw, 50px) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
  display: block !important;
  text-align: center !important;
}

.hero-line-accent,
.hero-line-3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(28px, 3.4vw, 50px) !important;
  font-weight: 800 !important;
  color: #00c6b5 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
  font-style: normal !important;
  display: block !important;
  text-align: center !important;
}

/* On Desktop / Laptop: Guarantee Line 1 stays on ONE single line */
@media (min-width: 1024px) {
  .hero-line-main {
    white-space: nowrap !important;
  }
  .hero-line-accent {
    white-space: nowrap !important;
  }
}

.hero-subtitle {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(16px, 1.25vw, 19px) !important;
  line-height: 1.65 !important;
  color: rgba(245, 245, 247, 0.75) !important;
  max-width: 860px !important;
  margin: 0 auto 36px !important;
  text-align: center !important;
}

.hero-cta-group {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  margin-bottom: 40px !important;
}

.hero-trust-strip {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.45) !important;
  flex-wrap: wrap !important;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0 60px !important;
  }
  .hero-wrap {
    padding: 0 16px !important;
  }
  .hero-line-main,
  .hero-line-accent {
    font-size: clamp(24px, 6.5vw, 36px) !important;
    line-height: 1.25 !important;
    white-space: normal !important;
  }
  .hero-subtitle {
    font-size: 15px !important;
    margin-bottom: 28px !important;
  }
}



/* ============================================================ */
/* FAQ HOVER/ACTIVE RED BACKGROUND ELIMINATION                   */
/* ============================================================ */

/* Ensure NO red/magenta/purple background applies to any FAQ button */
.faq-trigger,
.faq-trigger:hover,
.faq-trigger:focus,
.faq-trigger:active,
.faq-item.active .faq-trigger,
.faq-item.active .faq-trigger:hover,
.faq-item.active .faq-trigger:focus,
.faq-q-btn,
.faq-q-btn:hover,
.faq-q-btn:focus,
.faq-q-btn:active,
.faq-q-btn.active,
.mango-faq-btn,
.mango-faq-btn:hover,
.mango-faq-btn:focus,
.mango-faq-btn:active,
.mango-faq-btn:focus-visible,
.mango-faq-btn.active,
.mango-faq-btn.active:hover,
.mango-faq-btn.active:focus {
  background: transparent !important;
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.mango-faq-item,
.mango-faq-item:hover,
.mango-faq-item.active {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.mango-faq-btn .mango-faq-question {
  color: #0b1a28 !important;
  transition: color 0.2s ease !important;
}

.mango-faq-btn:hover .mango-faq-question,
.mango-faq-btn.active .mango-faq-question {
  color: #00c6b5 !important;
}

.cp-faq-wrap,
.cp-faq-inner {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
}


/* Problem Card Sleek Icon */
.problem-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 198, 181, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.problem-card:hover .problem-card-icon {
  background: rgba(0, 198, 181, 0.15);
  transform: translateY(-2px);
}



/* ============================================================ */
/* GLOBAL PRE-FOOTER CTA BANNER (MangoZo Style Dark Card)       */
/* ============================================================ */
.global-cta-section {
  background: #FFFFFF !important;
  padding: 60px 0 70px !important;
  position: relative !important;
}

.global-cta-wrap {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}

.global-cta-card {
  background: #0b1a28 !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 20px !important;
  padding: 56px 40px !important;
  text-align: center !important;
  box-sizing: border-box !important;
  box-shadow: 0 20px 50px rgba(10, 13, 26, 0.12) !important;
  position: relative !important;
  overflow: hidden !important;
}

.global-cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 198, 181, 0.15) 0%, rgba(10, 13, 26, 0) 70%);
  pointer-events: none;
}

.global-cta-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.global-cta-badge {
  display: inline-block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #00c6b5 !important;
  background: rgba(0, 198, 181, 0.10) !important;
  border: 1px solid rgba(0, 198, 181, 0.25) !important;
  padding: 6px 14px !important;
  border-radius: 100px !important;
  margin-bottom: 20px !important;
}

.global-cta-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(26px, 3.2vw, 42px) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
  margin: 0 auto 16px !important;
  max-width: 820px !important;
}

.global-cta-sub {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(15px, 1.1vw, 17px) !important;
  line-height: 1.65 !important;
  color: rgba(245, 245, 247, 0.75) !important;
  margin: 0 auto 28px !important;
  max-width: 680px !important;
}

.global-cta-btn-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 22px !important;
}

.global-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px 32px !important;
  background-color: #00c6b5 !important;
  color: #FFFFFF !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
}

.global-cta-btn:hover {
  background-color: #00a89a !important;
  box-shadow: 0 0 24px rgba(0, 198, 181, 0.35) !important;
  transform: translateY(-1px) !important;
}

.global-cta-trust-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.global-cta-trust-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.trust-bullet {
  color: rgba(255, 255, 255, 0.25) !important;
}

@media (max-width: 768px) {
  .global-cta-section {
    padding: 40px 0 50px !important;
  }
  .global-cta-card {
    padding: 36px 20px !important;
    border-radius: 16px !important;
  }
  .global-cta-h2 {
    font-size: clamp(22px, 5.5vw, 28px) !important;
  }
  .global-cta-sub {
    font-size: 14px !important;
    margin-bottom: 22px !important;
  }
  .global-cta-btn {
    width: 100% !important;
    padding: 13px 20px !important;
  }
  .global-cta-trust-row {
    gap: 8px !important;
    font-size: 12px !important;
  }
}



/* ============================================================ */
/* HERO TOP PADDING REDUCED BY HALF                            */
/* ============================================================ */
.hero-section {
  position: relative !important;
  background-color: #0b1a28 !important;
  padding: 36px 0 75px !important;
  overflow: hidden !important;
  text-align: center !important;
}

.hero-social-badge {
  margin-bottom: 18px !important;
}

.category-label {
  margin-bottom: 16px !important;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 24px 0 48px !important;
  }
  .hero-social-badge {
    margin-bottom: 14px !important;
  }
}


/* ============================================================ */
/* OFFICIAL IMAGE LOGO STYLES                                  */
/* ============================================================ */
.header-logo-img {
  display: block !important;
  height: 36px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain !important;
}

.footer-logo-img {
  display: block !important;
  height: 36px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain !important;
  margin-bottom: 12px !important;
}

.nav-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.footer-brand-logo {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}



/* ============================================================ */
/* BALANCED HEADER NAV SPACING (Reviews + FAQs included)        */
/* ============================================================ */
.nav-container-fullscreen {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  height: 70px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
  background-color: #0b1a28 !important;
}

.nav-menu-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 !important;
  max-width: 750px !important;
  margin: 0 auto !important;
}

.nav-menu-list {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 28px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.nav-item-link {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  white-space: nowrap !important;
}

.nav-item-link:hover {
  color: #00c6b5 !important;
}

.nav-actions-right {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  flex-shrink: 0 !important;
}

@media (max-width: 1180px) {
  .nav-menu-list {
    gap: 18px !important;
  }
  .nav-container-fullscreen {
    padding: 0 24px !important;
  }
}


/* Testimonials ICP Author Row */
.author-avatar-row {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.author-avatar-img {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #00c6b5 !important;
  flex-shrink: 0 !important;
}

.testimonial-card-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 16px !important;
}

.tm-linkedin-link {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(0, 119, 181, 0.1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
  flex-shrink: 0 !important;
}
.tm-linkedin-link:hover {
  background: rgba(0, 119, 181, 0.2) !important;
  transform: scale(1.08) !important;
}



/* ============================================================ */
/* SLOW INFINITE MARQUEE REVIEW SLIDER (PAUSE ON HOVER)        */
/* ============================================================ */
.reviews-marquee-container {
  width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
  padding: 20px 0 30px !important;
  cursor: default !important;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent) !important;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent) !important;
}

@keyframes marqueeSlowScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.reviews-marquee-track {
  display: flex !important;
  gap: 24px !important;
  width: max-content !important;
  animation: marqueeSlowScroll 48s linear infinite !important;
  will-change: transform !important;
}

/* Pause animation smoothly on hover */
.reviews-marquee-container:hover .reviews-marquee-track,
.reviews-marquee-track:hover {
  animation-play-state: paused !important;
}

/* Marquee Card Styling */
.marquee-review-card {
  width: 380px !important;
  max-width: 85vw !important;
  flex-shrink: 0 !important;
  background: #0b1a28 !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 16px !important;
  padding: 28px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  box-sizing: border-box !important;
  text-align: left !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.marquee-review-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(0, 198, 181, 0.5) !important;
  box-shadow: 0 16px 40px rgba(0, 198, 181, 0.18) !important;
}

.review-card-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 14px !important;
}

.review-author-info {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.review-author-img {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #00c6b5 !important;
  flex-shrink: 0 !important;
}

.review-author-name {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  line-height: 1.2 !important;
  margin-bottom: 3px !important;
}

.review-author-role {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.78rem !important;
  color: rgba(245, 245, 247, 0.6) !important;
  line-height: 1.3 !important;
}

.review-li-btn {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(0, 119, 181, 0.12) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
  flex-shrink: 0 !important;
}

.review-li-btn:hover {
  background: rgba(0, 119, 181, 0.25) !important;
  transform: scale(1.1) !important;
}

.review-stars-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 14px !important;
}

.stars-gold {
  color: #00c6b5 !important;
  font-size: 14px !important;
  letter-spacing: 2px !important;
}

.verified-badge-pill {
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #00c6b5 !important;
  background: rgba(0, 198, 181, 0.1) !important;
  padding: 2px 8px !important;
  border-radius: 100px !important;
}

.review-quote-text {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  color: rgba(245, 245, 247, 0.82) !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .reviews-marquee-track {
    animation-duration: 35s !important;
  }
  .marquee-review-card {
    width: 310px !important;
    padding: 22px 18px !important;
  }
  .review-quote-text {
    font-size: 0.84rem !important;
  }
}



/* ============================================================ */
/* SECTION 4: MANGOZO-STYLE 2X2 BENTO SYSTEM GRID (NO AI NUMBERS) */
/* ============================================================ */
.section-what-we-build {
  background-color: #F8FAFC !important;
  padding: 85px 0 95px !important;
  position: relative !important;
}

.system-bento-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px !important;
  max-width: 1160px !important;
  margin: 45px auto 0 !important;
}

.system-bento-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 38px 34px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.system-bento-card:hover {
  transform: translateY(-4px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 16px 36px rgba(0, 198, 181, 0.12) !important;
}

.bento-card-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 20px !important;
}

.bento-icon-box {
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  background: rgba(0, 198, 181, 0.1) !important;
  border: 1px solid rgba(0, 198, 181, 0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.bento-pill-tag {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #00a89a !important;
  background: rgba(0, 198, 181, 0.08) !important;
  border: 1px solid rgba(0, 198, 181, 0.2) !important;
  padding: 4px 12px !important;
  border-radius: 100px !important;
}

.bento-card-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.28rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 12px !important;
  line-height: 1.35 !important;
}

.bento-card-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.94rem !important;
  line-height: 1.68 !important;
  color: #475569 !important;
  margin: 0 0 24px !important;
}

.bento-features-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding-top: 18px !important;
  border-top: 1px solid #F1F5F9 !important;
}

.bento-check-item {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  color: #0b1a28 !important;
  display: inline-flex !important;
  align-items: center !important;
}

@media (max-width: 900px) {
  .system-bento-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .system-bento-card {
    padding: 28px 22px !important;
  }
}



/* ============================================================ */
/* SECTION 5: MANGOZO-STYLE CONNECTED 4-STAGE PIPELINE ROADMAP  */
/* ============================================================ */
.section-process {
  background-color: #0b1a28 !important;
  padding: 95px 0 105px !important;
  position: relative !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.process-roadmap-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
  max-width: 1200px !important;
  margin: 50px auto 0 !important;
  position: relative !important;
}

.process-stage-card {
  background: #122336 !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 18px !important;
  padding: 30px 24px 26px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
  text-align: left !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  position: relative !important;
}

.process-stage-card:hover {
  transform: translateY(-5px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 16px 40px rgba(0, 198, 181, 0.16) !important;
}

.stage-card-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 18px !important;
}

.stage-icon-box {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: rgba(0, 198, 181, 0.12) !important;
  border: 1px solid rgba(0, 198, 181, 0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.stage-step-pill {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #00c6b5 !important;
  background: rgba(0, 198, 181, 0.1) !important;
  border: 1px solid rgba(0, 198, 181, 0.25) !important;
  padding: 4px 10px !important;
  border-radius: 100px !important;
}

.process-stage-card .stage-title {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 12px !important;
  line-height: 1.35 !important;
}

.process-stage-card .stage-body {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  color: rgba(245, 245, 247, 0.76) !important;
  margin: 0 0 24px !important;
  flex: 1 !important;
}

.stage-timeline-badge {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #00c6b5 !important;
  background: rgba(0, 198, 181, 0.08) !important;
  border: 1px solid rgba(0, 198, 181, 0.18) !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  margin-top: auto !important;
}

@media (max-width: 1024px) {
  .process-roadmap-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 640px) {
  .process-roadmap-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .process-stage-card {
    padding: 24px 20px !important;
  }
}



/* ============================================================ */
/* SECTION 5: EXACT ALTERNATING VERTICAL TIMELINE UI           */
/* ============================================================ */
.section-timeline-process {
  background-color: #FFFFFF !important;
  padding: 95px 0 110px !important;
  position: relative !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.timeline-container {
  position: relative !important;
  max-width: 1040px !important;
  margin: 60px auto 0 !important;
  padding: 20px 0 !important;
}

/* Center Vertical Divider Line */
.timeline-center-line {
  position: absolute !important;
  top: 40px !important;
  bottom: 40px !important;
  left: 50% !important;
  width: 2px !important;
  background: linear-gradient(180deg, rgba(0, 198, 181, 0.2) 0%, rgba(0, 198, 181, 0.8) 50%, rgba(0, 198, 181, 0.2) 100%) !important;
  transform: translateX(-50%) !important;
  z-index: 1 !important;
}

.timeline-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: relative !important;
  margin-bottom: 75px !important;
  z-index: 2 !important;
}

.timeline-row:last-child {
  margin-bottom: 0 !important;
}

.timeline-col {
  width: calc(50% - 50px) !important;
  box-sizing: border-box !important;
}

.timeline-node-wrap {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 3 !important;
}

.timeline-number-node {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background-color: #00c6b5 !important;
  color: #FFFFFF !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 0 0 6px #FFFFFF, 0 4px 16px rgba(0, 198, 181, 0.35) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.timeline-row:hover .timeline-number-node {
  transform: scale(1.12) !important;
  box-shadow: 0 0 0 8px #FFFFFF, 0 6px 22px rgba(0, 198, 181, 0.5) !important;
}

.timeline-graphic-box {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  background: rgba(0, 198, 181, 0.05) !important;
  border: 1px dashed rgba(0, 198, 181, 0.3) !important;
  transition: transform 0.3s ease !important;
}

.timeline-row:hover .timeline-graphic-box {
  transform: scale(1.06) !important;
  border-color: #00c6b5 !important;
}

.timeline-content-card {
  padding: 10px 0 !important;
}

.timeline-time-tag {
  display: inline-block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #00a89a !important;
  background: rgba(0, 198, 181, 0.1) !important;
  padding: 4px 12px !important;
  border-radius: 100px !important;
  margin-bottom: 12px !important;
}

.timeline-step-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
}

.timeline-step-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: #475569 !important;
  margin: 0 !important;
}

/* Responsive Mobile Stacking */
@media (max-width: 768px) {
  .timeline-center-line {
    left: 24px !important;
    transform: none !important;
  }
  
  .timeline-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-left: 60px !important;
    margin-bottom: 50px !important;
  }
  
  .timeline-node-wrap {
    left: -36px !important;
    top: 24px !important;
    transform: none !important;
  }
  
  .timeline-col {
    width: 100% !important;
    text-align: left !important;
  }
  
  .timeline-visual-col {
    display: none !important;
  }
  
  .timeline-content-col {
    text-align: left !important;
  }
}



/* ============================================================ */
/* SECTION 5: DARK NAVY HERO BACKGROUND (#0b1a28) TIMELINE UI   */
/* ============================================================ */
.section-timeline-process {
  background-color: #0b1a28 !important;
  padding: 95px 0 110px !important;
  position: relative !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.timeline-container {
  position: relative !important;
  max-width: 1040px !important;
  margin: 60px auto 0 !important;
  padding: 20px 0 !important;
}

/* Center Vertical Glowing Line */
.timeline-center-line {
  position: absolute !important;
  top: 40px !important;
  bottom: 40px !important;
  left: 50% !important;
  width: 2px !important;
  background: linear-gradient(180deg, rgba(0, 198, 181, 0.15) 0%, rgba(0, 198, 181, 0.9) 50%, rgba(0, 198, 181, 0.15) 100%) !important;
  transform: translateX(-50%) !important;
  z-index: 1 !important;
}

.timeline-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: relative !important;
  margin-bottom: 75px !important;
  z-index: 2 !important;
}

.timeline-row:last-child {
  margin-bottom: 0 !important;
}

.timeline-col {
  width: calc(50% - 50px) !important;
  box-sizing: border-box !important;
}

.timeline-node-wrap {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 3 !important;
}

.timeline-number-node {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background-color: #00c6b5 !important;
  color: #0b1a28 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 0 0 6px #0b1a28, 0 4px 20px rgba(0, 198, 181, 0.4) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.timeline-row:hover .timeline-number-node {
  transform: scale(1.15) !important;
  box-shadow: 0 0 0 8px #0b1a28, 0 6px 25px rgba(0, 198, 181, 0.6) !important;
}

.timeline-graphic-box {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  background: rgba(0, 198, 181, 0.06) !important;
  border: 1px dashed rgba(0, 198, 181, 0.35) !important;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease !important;
}

.timeline-row:hover .timeline-graphic-box {
  transform: scale(1.08) !important;
  border-color: #00c6b5 !important;
  background: rgba(0, 198, 181, 0.12) !important;
}

.timeline-content-card {
  padding: 10px 0 !important;
}

.timeline-time-tag {
  display: inline-block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #00c6b5 !important;
  background: rgba(0, 198, 181, 0.1) !important;
  border: 1px solid rgba(0, 198, 181, 0.25) !important;
  padding: 4px 12px !important;
  border-radius: 100px !important;
  margin-bottom: 12px !important;
}

.timeline-step-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
}

.timeline-step-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: rgba(245, 245, 247, 0.78) !important;
  margin: 0 !important;
}

/* Responsive Mobile Stacking */
@media (max-width: 768px) {
  .timeline-center-line {
    left: 24px !important;
    transform: none !important;
  }
  
  .timeline-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-left: 60px !important;
    margin-bottom: 50px !important;
  }
  
  .timeline-node-wrap {
    left: -36px !important;
    top: 24px !important;
    transform: none !important;
  }
  
  .timeline-col {
    width: 100% !important;
    text-align: left !important;
  }
  
  .timeline-visual-col {
    display: none !important;
  }
  
  .timeline-content-col {
    text-align: left !important;
  }
}



/* ============================================================ */
/* SECTION 2: EXACT SPLIT 2-COLUMN ROADMAP UI (DARK NAVY)       */
/* ============================================================ */
.section-problem-split {
  background-color: #0b1a28 !important;
  padding: 100px 0 110px !important;
  position: relative !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.problem-split-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.15fr !important;
  gap: 70px !important;
  align-items: flex-start !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* Left Column */
.problem-left-col {
  position: relative !important;
}

.problem-sticky-box {
  position: sticky !important;
  top: 110px !important;
  text-align: left !important;
}

.problem-split-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2rem, 3.2vw, 2.75rem) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.22 !important;
  letter-spacing: -0.03em !important;
  margin: 16px 0 20px !important;
}

.problem-accent-text {
  color: #00c6b5 !important;
}

.problem-split-intro {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  color: rgba(245, 245, 247, 0.78) !important;
  margin: 0 0 32px !important;
}

.problem-cta-wrap {
  margin-bottom: 28px !important;
}

.problem-audit-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #00c6b5 !important;
  color: #0b1a28 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(0, 198, 181, 0.28) !important;
  transition: all 0.2s ease !important;
}

.problem-audit-btn:hover {
  background-color: #00a89a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(0, 198, 181, 0.4) !important;
}

.problem-mini-proof {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-style: italic !important;
  line-height: 1.6 !important;
  color: rgba(245, 245, 247, 0.5) !important;
  border-left: 2px solid rgba(0, 198, 181, 0.4) !important;
  padding-left: 14px !important;
}

/* Right Column: Timeline Tree */
.problem-right-col {
  position: relative !important;
}

.problem-timeline-tree {
  position: relative !important;
  padding-left: 36px !important;
}

/* Vertical Guide Line */
.problem-tree-line {
  position: absolute !important;
  left: 8px !important;
  top: 15px !important;
  bottom: 25px !important;
  width: 2px !important;
  background: linear-gradient(180deg, rgba(0, 198, 181, 0.8) 0%, rgba(0, 198, 181, 0.3) 100%) !important;
  z-index: 1 !important;
}

.problem-tree-item {
  position: relative !important;
  margin-bottom: 48px !important;
  z-index: 2 !important;
  transition: transform 0.2s ease !important;
}

.problem-tree-item:last-child {
  margin-bottom: 0 !important;
}

.problem-tree-dot-wrap {
  position: absolute !important;
  left: -36px !important;
  top: 2px !important;
  width: 18px !important;
  height: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.problem-tree-dot {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background-color: #00c6b5 !important;
  box-shadow: 0 0 0 4px #0b1a28, 0 0 14px rgba(0, 198, 181, 0.8) !important;
  transition: all 0.25s ease !important;
}

.problem-tree-item:hover .problem-tree-dot {
  transform: scale(1.3) !important;
  box-shadow: 0 0 0 5px #0b1a28, 0 0 20px rgba(0, 198, 181, 1) !important;
}

.problem-tree-content {
  background: rgba(18, 35, 54, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 26px 26px 24px !important;
  box-sizing: border-box !important;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease !important;
}

.problem-tree-item:hover .problem-tree-content {
  border-color: rgba(0, 198, 181, 0.4) !important;
  background: rgba(18, 35, 54, 0.95) !important;
  transform: translateX(4px) !important;
}

.problem-step-label {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #00c6b5 !important;
  display: inline-block !important;
  margin-bottom: 8px !important;
}

.problem-item-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
}

.problem-item-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
  color: rgba(245, 245, 247, 0.76) !important;
  margin: 0 !important;
}

/* Mobile & Tablet Responsive */
@media (max-width: 960px) {
  .problem-split-grid {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
  }
  .problem-sticky-box {
    position: static !important;
  }
}

@media (max-width: 640px) {
  .section-problem-split {
    padding: 70px 0 80px !important;
  }
  .problem-timeline-tree {
    padding-left: 28px !important;
  }
  .problem-tree-dot-wrap {
    left: -28px !important;
  }
  .problem-tree-content {
    padding: 20px 18px !important;
  }
}



/* ============================================================ */
/* SECTION 2: WHITE THEME + STICKY LEFT COLUMN ROADMAP          */
/* ============================================================ */
.section-problem-split {
  background-color: #FFFFFF !important;
  padding: 100px 0 120px !important;
  position: relative !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
  overflow: visible !important;
}

.problem-split-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.15fr !important;
  gap: 75px !important;
  align-items: start !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  position: relative !important;
}

/* Sticky Left Column */
.problem-left-col {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 120px !important;
  align-self: flex-start !important;
  z-index: 10 !important;
}

.problem-sticky-box {
  text-align: left !important;
}

.problem-split-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2.1rem, 3.2vw, 2.85rem) !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  line-height: 1.22 !important;
  letter-spacing: -0.03em !important;
  margin: 16px 0 20px !important;
}

.problem-accent-text {
  color: #00c6b5 !important;
}

.problem-split-intro {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.02rem !important;
  line-height: 1.72 !important;
  color: #475569 !important;
  margin: 0 0 32px !important;
}

.problem-cta-wrap {
  margin-bottom: 28px !important;
}

.problem-audit-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #00c6b5 !important;
  color: #0b1a28 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(0, 198, 181, 0.25) !important;
  transition: all 0.2s ease !important;
}

.problem-audit-btn:hover {
  background-color: #00a89a !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(0, 198, 181, 0.4) !important;
}

.problem-mini-proof {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-style: italic !important;
  line-height: 1.6 !important;
  color: #64748B !important;
  border-left: 3px solid #00c6b5 !important;
  padding-left: 14px !important;
}

/* Right Column: Scrollable Timeline Tree */
.problem-right-col {
  position: relative !important;
}

.problem-timeline-tree {
  position: relative !important;
  padding-left: 38px !important;
}

/* Vertical Guide Line */
.problem-tree-line {
  position: absolute !important;
  left: 8px !important;
  top: 15px !important;
  bottom: 25px !important;
  width: 2px !important;
  background: linear-gradient(180deg, #00c6b5 0%, rgba(0, 198, 181, 0.3) 100%) !important;
  z-index: 1 !important;
}

.problem-tree-item {
  position: relative !important;
  margin-bottom: 36px !important;
  z-index: 2 !important;
}

.problem-tree-item:last-child {
  margin-bottom: 0 !important;
}

.problem-tree-dot-wrap {
  position: absolute !important;
  left: -38px !important;
  top: 2px !important;
  width: 18px !important;
  height: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.problem-tree-dot {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background-color: #00c6b5 !important;
  box-shadow: 0 0 0 4px #FFFFFF, 0 2px 10px rgba(0, 198, 181, 0.4) !important;
  transition: all 0.25s ease !important;
}

.problem-tree-item:hover .problem-tree-dot {
  transform: scale(1.35) !important;
  box-shadow: 0 0 0 5px #FFFFFF, 0 4px 16px rgba(0, 198, 181, 0.8) !important;
}

.problem-tree-content {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 18px !important;
  padding: 28px 28px 26px !important;
  box-sizing: border-box !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02) !important;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}

.problem-tree-item:hover .problem-tree-content {
  border-color: #00c6b5 !important;
  background: #FFFFFF !important;
  transform: translateX(6px) !important;
  box-shadow: 0 12px 30px rgba(0, 198, 181, 0.12) !important;
}

.problem-step-label {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #00a89a !important;
  display: inline-block !important;
  margin-bottom: 8px !important;
}

.problem-item-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
}

.problem-item-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.94rem !important;
  line-height: 1.68 !important;
  color: #475569 !important;
  margin: 0 !important;
}

/* Mobile & Tablet Responsive */
@media (max-width: 960px) {
  .problem-split-grid {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
  }
  .problem-left-col {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 640px) {
  .section-problem-split {
    padding: 70px 0 80px !important;
  }
  .problem-timeline-tree {
    padding-left: 28px !important;
  }
  .problem-tree-dot-wrap {
    left: -28px !important;
  }
  .problem-tree-content {
    padding: 22px 18px !important;
  }
}



/* ============================================================ */
/* SECTION 2: BULLETPROOF STICKY PINNED LEFT + SCROLLING RIGHT  */
/* ============================================================ */
html, body {
  overflow-x: clip !important;
}

.section-problem-split {
  background-color: #FFFFFF !important;
  padding: 110px 0 140px !important;
  position: relative !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
  overflow: visible !important;
}

.problem-split-grid {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 80px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  position: relative !important;
  overflow: visible !important;
}

/* Fixed / Sticky Pinned Left Column */
.problem-left-col {
  flex: 0 0 460px !important;
  max-width: 460px !important;
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 130px !important;
  align-self: flex-start !important;
  z-index: 10 !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}

.problem-sticky-box {
  text-align: left !important;
}

.problem-split-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2.2rem, 3.3vw, 2.9rem) !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
  margin: 16px 0 20px !important;
}

.problem-accent-text {
  color: #00c6b5 !important;
}

.problem-split-intro {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.72 !important;
  color: #475569 !important;
  margin: 0 0 32px !important;
}

.problem-cta-wrap {
  margin-bottom: 28px !important;
}

.problem-audit-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #00c6b5 !important;
  color: #0b1a28 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.96rem !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(0, 198, 181, 0.25) !important;
  transition: all 0.2s ease !important;
}

.problem-audit-btn:hover {
  background-color: #00a89a !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(0, 198, 181, 0.4) !important;
}

.problem-mini-proof {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-style: italic !important;
  line-height: 1.6 !important;
  color: #64748B !important;
  border-left: 3px solid #00c6b5 !important;
  padding-left: 14px !important;
}

/* Right Column: Taller Scrollable Timeline */
.problem-right-col {
  flex: 1 !important;
  position: relative !important;
  min-width: 0 !important;
}

.problem-timeline-tree {
  position: relative !important;
  padding-left: 45px !important;
  padding-bottom: 20px !important;
}

/* Vertical Guide Line */
.problem-tree-line {
  position: absolute !important;
  left: 10px !important;
  top: 20px !important;
  bottom: 40px !important;
  width: 2px !important;
  background: linear-gradient(180deg, #00c6b5 0%, rgba(0, 198, 181, 0.2) 100%) !important;
  z-index: 1 !important;
}

.problem-tree-item {
  position: relative !important;
  margin-bottom: 55px !important;
  z-index: 2 !important;
  transition: transform 0.25s ease !important;
}

.problem-tree-item:last-child {
  margin-bottom: 0 !important;
}

.problem-tree-dot-wrap {
  position: absolute !important;
  left: -45px !important;
  top: 6px !important;
  width: 22px !important;
  height: 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.problem-tree-dot {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background-color: #E2E8F0 !important;
  box-shadow: 0 0 0 4px #FFFFFF !important;
  transition: all 0.3s ease !important;
}

.problem-tree-content {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 34px 32px 30px !important;
  box-sizing: border-box !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
}

/* Active & Hover States for Scrolling Highlight */
.problem-tree-item:hover .problem-tree-dot,
.problem-tree-item.active-problem-card .problem-tree-dot {
  background-color: #00c6b5 !important;
  transform: scale(1.35) !important;
  box-shadow: 0 0 0 5px #FFFFFF, 0 0 16px rgba(0, 198, 181, 0.8) !important;
}

.problem-tree-item:hover .problem-tree-content,
.problem-tree-item.active-problem-card .problem-tree-content {
  border-color: #00c6b5 !important;
  background: #FFFFFF !important;
  transform: translateX(8px) !important;
  box-shadow: 0 16px 36px rgba(0, 198, 181, 0.12) !important;
}

.problem-step-label {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #00a89a !important;
  display: inline-block !important;
  margin-bottom: 10px !important;
}

.problem-item-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 12px !important;
  line-height: 1.3 !important;
}

.problem-item-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: #475569 !important;
  margin: 0 !important;
}

/* Responsive Mobile & Tablet */
@media (max-width: 960px) {
  .problem-split-grid {
    flex-direction: column !important;
    gap: 50px !important;
  }
  .problem-left-col {
    position: static !important;
    top: auto !important;
    flex: 1 1 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 640px) {
  .section-problem-split {
    padding: 70px 0 80px !important;
  }
  .problem-timeline-tree {
    padding-left: 30px !important;
  }
  .problem-tree-dot-wrap {
    left: -30px !important;
  }
  .problem-tree-content {
    padding: 24px 20px !important;
  }
}



/* ============================================================ */
/* SECTION 2: 100% ROCK-SOLID STATIC LEFT + GENEROUS SCROLL     */
/* ============================================================ */
html, body {
  overflow-x: clip !important;
}

.section-problem-split {
  background-color: #FFFFFF !important;
  padding: 120px 0 160px !important;
  position: relative !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
  overflow: visible !important;
}

.problem-split-grid {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 85px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  position: relative !important;
  overflow: visible !important;
}

/* 100% STATIC PINNED LEFT COLUMN */
.problem-left-col {
  flex: 0 0 460px !important;
  width: 460px !important;
  max-width: 460px !important;
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 110px !important;
  align-self: flex-start !important;
  z-index: 10 !important;
  padding-right: 15px !important;
  box-sizing: border-box !important;
}

.problem-sticky-box {
  text-align: left !important;
  background: transparent !important;
}

.problem-split-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2.2rem, 3.3vw, 2.95rem) !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.03em !important;
  margin: 16px 0 20px !important;
}

.problem-accent-text {
  color: #00c6b5 !important;
}

.problem-split-intro {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  color: #475569 !important;
  margin: 0 0 32px !important;
}

.problem-cta-wrap {
  margin-bottom: 28px !important;
}

.problem-audit-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #00c6b5 !important;
  color: #0b1a28 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  padding: 15px 30px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 22px rgba(0, 198, 181, 0.28) !important;
  transition: all 0.2s ease !important;
}

.problem-audit-btn:hover {
  background-color: #00a89a !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(0, 198, 181, 0.45) !important;
}

.problem-mini-proof {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-style: italic !important;
  line-height: 1.6 !important;
  color: #64748B !important;
  border-left: 3px solid #00c6b5 !important;
  padding-left: 14px !important;
}

/* RIGHT COLUMN: TALL SCROLLABLE RUNWAY FOR 4 PROBLEMS */
.problem-right-col {
  flex: 1 !important;
  position: relative !important;
  min-width: 0 !important;
  padding-top: 10px !important;
}

.problem-timeline-tree {
  position: relative !important;
  padding-left: 48px !important;
  padding-bottom: 40px !important;
}

/* Vertical Guide Line */
.problem-tree-line {
  position: absolute !important;
  left: 11px !important;
  top: 30px !important;
  bottom: 80px !important;
  width: 2px !important;
  background: linear-gradient(180deg, #00c6b5 0%, rgba(0, 198, 181, 0.35) 50%, rgba(0, 198, 181, 0.15) 100%) !important;
  z-index: 1 !important;
}

.problem-tree-item {
  position: relative !important;
  margin-bottom: 75px !important;
  z-index: 2 !important;
  transition: transform 0.3s ease !important;
}

.problem-tree-item:last-child {
  margin-bottom: 0 !important;
}

.problem-tree-dot-wrap {
  position: absolute !important;
  left: -48px !important;
  top: 10px !important;
  width: 24px !important;
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.problem-tree-dot {
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background-color: #E2E8F0 !important;
  border: 3px solid #FFFFFF !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease !important;
}

.problem-tree-content {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 38px 36px 34px !important;
  box-sizing: border-box !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.025) !important;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
}

/* Active Highlight when scrolled to */
.problem-tree-item:hover .problem-tree-dot,
.problem-tree-item.active-problem-card .problem-tree-dot {
  background-color: #00c6b5 !important;
  border-color: #FFFFFF !important;
  transform: scale(1.4) !important;
  box-shadow: 0 0 0 4px rgba(0, 198, 181, 0.25), 0 0 16px rgba(0, 198, 181, 0.8) !important;
}

.problem-tree-item:hover .problem-tree-content,
.problem-tree-item.active-problem-card .problem-tree-content {
  border-color: #00c6b5 !important;
  background: #FFFFFF !important;
  transform: translateX(8px) !important;
  box-shadow: 0 18px 40px rgba(0, 198, 181, 0.12) !important;
}

.problem-step-label {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #00a89a !important;
  display: inline-block !important;
  margin-bottom: 12px !important;
}

.problem-item-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 12px !important;
  line-height: 1.3 !important;
}

.problem-item-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.98rem !important;
  line-height: 1.72 !important;
  color: #475569 !important;
  margin: 0 !important;
}

/* Mobile & Tablet Responsive */
@media (max-width: 960px) {
  .problem-split-grid {
    flex-direction: column !important;
    gap: 50px !important;
  }
  .problem-left-col {
    position: static !important;
    top: auto !important;
    flex: 1 1 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
  }
  .problem-tree-item {
    margin-bottom: 40px !important;
  }
}

@media (max-width: 640px) {
  .section-problem-split {
    padding: 70px 0 80px !important;
  }
  .problem-timeline-tree {
    padding-left: 30px !important;
  }
  .problem-tree-dot-wrap {
    left: -30px !important;
  }
  .problem-tree-content {
    padding: 24px 20px !important;
  }
}



/* ============================================================ */
/* SECTION 2: PERFECTLY BALANCED SPLIT 2-COLUMN (NO EMPTY SPACE) */
/* ============================================================ */
.section-problem-split {
  background-color: #FFFFFF !important;
  padding: 95px 0 105px !important;
  position: relative !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.problem-split-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.12fr !important;
  gap: 65px !important;
  align-items: center !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* Left Column */
.problem-left-col {
  position: relative !important;
  text-align: left !important;
}

.problem-sticky-box {
  text-align: left !important;
}

.problem-split-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2rem, 2.8vw, 2.6rem) !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
  margin: 14px 0 18px !important;
}

.problem-accent-text {
  color: #00c6b5 !important;
}

.problem-split-intro {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.98rem !important;
  line-height: 1.68 !important;
  color: #475569 !important;
  margin: 0 0 24px !important;
}

.problem-cta-wrap {
  margin-bottom: 22px !important;
}

.problem-audit-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #00c6b5 !important;
  color: #0b1a28 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  padding: 13px 26px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(0, 198, 181, 0.25) !important;
  transition: all 0.2s ease !important;
}

.problem-audit-btn:hover {
  background-color: #00a89a !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(0, 198, 181, 0.4) !important;
}

.problem-mini-proof {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.85rem !important;
  font-style: italic !important;
  line-height: 1.55 !important;
  color: #64748B !important;
  border-left: 3px solid #00c6b5 !important;
  padding-left: 12px !important;
}

/* Right Column: Balanced Timeline Tree */
.problem-right-col {
  position: relative !important;
}

.problem-timeline-tree {
  position: relative !important;
  padding-left: 38px !important;
}

/* Vertical Guide Line */
.problem-tree-line {
  position: absolute !important;
  left: 9px !important;
  top: 15px !important;
  bottom: 25px !important;
  width: 2px !important;
  background: linear-gradient(180deg, #00c6b5 0%, rgba(0, 198, 181, 0.3) 100%) !important;
  z-index: 1 !important;
}

.problem-tree-item {
  position: relative !important;
  margin-bottom: 18px !important;
  z-index: 2 !important;
  transition: transform 0.2s ease !important;
}

.problem-tree-item:last-child {
  margin-bottom: 0 !important;
}

.problem-tree-dot-wrap {
  position: absolute !important;
  left: -38px !important;
  top: 6px !important;
  width: 20px !important;
  height: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.problem-tree-dot {
  width: 13px !important;
  height: 13px !important;
  border-radius: 50% !important;
  background-color: #00c6b5 !important;
  box-shadow: 0 0 0 3px #FFFFFF, 0 2px 8px rgba(0, 198, 181, 0.4) !important;
  transition: all 0.25s ease !important;
}

.problem-tree-item:hover .problem-tree-dot {
  transform: scale(1.3) !important;
  box-shadow: 0 0 0 4px #FFFFFF, 0 0 14px rgba(0, 198, 181, 0.8) !important;
}

.problem-tree-content {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px !important;
  padding: 20px 22px 18px !important;
  box-sizing: border-box !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02) !important;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}

.problem-tree-item:hover .problem-tree-content {
  border-color: #00c6b5 !important;
  background: #FFFFFF !important;
  transform: translateX(4px) !important;
  box-shadow: 0 8px 24px rgba(0, 198, 181, 0.1) !important;
}

.problem-step-label {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #00a89a !important;
  display: inline-block !important;
  margin-bottom: 4px !important;
}

.problem-item-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.12rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 6px !important;
  line-height: 1.3 !important;
}

.problem-item-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.58 !important;
  color: #475569 !important;
  margin: 0 !important;
}

/* Mobile & Tablet Responsive */
@media (max-width: 960px) {
  .problem-split-grid {
    grid-template-columns: 1fr !important;
    gap: 45px !important;
  }
}

@media (max-width: 640px) {
  .section-problem-split {
    padding: 65px 0 75px !important;
  }
  .problem-timeline-tree {
    padding-left: 28px !important;
  }
  .problem-tree-dot-wrap {
    left: -28px !important;
  }
  .problem-tree-content {
    padding: 18px 16px !important;
  }
}



/* ============================================================ */
/* SECTION 3: ULTRA-READABLE EXECUTIVE ICP GRID (MANGOZO NAVY)  */
/* ============================================================ */
.section-icp {
  background-color: #0b1a28 !important;
  padding: 75px 0 85px !important;
  position: relative !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.icp-header-compact {
  margin-bottom: 40px !important;
}

.icp-header-compact .section-h2 {
  font-size: clamp(2rem, 3vw, 2.5rem) !important;
  font-weight: 800 !important;
  margin: 12px 0 12px !important;
  letter-spacing: -0.02em !important;
}

.icp-header-compact .section-intro {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  max-width: 680px !important;
  margin: 0 auto !important;
}

.icp-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  max-width: 1200px !important;
  margin: 0 auto 36px !important;
}

.icp-card {
  background: #122336 !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 18px !important;
  padding: 30px 26px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  box-sizing: border-box !important;
  text-align: left !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18) !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.icp-card:hover {
  transform: translateY(-4px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 16px 36px rgba(0, 198, 181, 0.14) !important;
}

.icp-card-top {
  margin-bottom: 12px !important;
}

.icp-top-label {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #00c6b5 !important;
  background: rgba(0, 198, 181, 0.1) !important;
  border: 1px solid rgba(0, 198, 181, 0.25) !important;
  padding: 4px 10px !important;
  border-radius: 100px !important;
  display: inline-block !important;
}

.icp-card-title {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.22rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.02em !important;
  line-height: 1.35 !important;
  margin: 0 0 12px !important;
  min-height: 50px !important;
  display: flex !important;
  align-items: center !important;
}

.icp-card-body {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  line-height: 1.62 !important;
  color: rgba(245, 245, 247, 0.78) !important;
  margin: 0 !important;
}

.icp-exclusion-note {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.85rem !important;
  font-style: italic !important;
  color: rgba(245, 245, 247, 0.45) !important;
  margin-top: 10px !important;
}

/* Responsive Mobile & Tablet */
@media (max-width: 1024px) {
  .icp-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .section-icp {
    padding: 60px 0 !important;
  }
  .icp-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .icp-card {
    padding: 24px 20px !important;
  }
  .icp-card-title {
    min-height: auto !important;
  }
}



/* ============================================================ */
/* SECTION SPACING FIX: HALF SPACE BETWEEN SEC 2 & SEC 3        */
/* ============================================================ */
.section-problem-split {
  background-color: #FFFFFF !important;
  padding: 75px 0 45px !important;
  position: relative !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.section-icp {
  background-color: #0b1a28 !important;
  padding: 40px 0 75px !important;
  position: relative !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 640px) {
  .section-problem-split {
    padding: 50px 0 35px !important;
  }
  .section-icp {
    padding: 35px 0 50px !important;
  }
}



/* ============================================================ */
/* SECTION 4: EXACT FIGMA MINIMALIST PRODUCT GRID (FIGMA STYLE)  */
/* ============================================================ */
.section-what-we-build {
  background-color: #F8FAFC !important;
  padding: 95px 0 105px !important;
  position: relative !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.figma-section-header {
  max-width: 750px !important;
  margin: 0 auto 55px !important;
  text-align: center !important;
}

.figma-micro-pill {
  display: inline-block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  color: #0b1a28 !important;
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  padding: 4px 14px !important;
  border-radius: 100px !important;
  margin-bottom: 18px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

.figma-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2.3rem, 3.8vw, 3.2rem) !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  line-height: 1.16 !important;
  letter-spacing: -0.03em !important;
  margin: 0 !important;
}

.figma-italic-accent {
  font-family: 'Georgia', 'Times New Roman', serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: #0b1a28 !important;
  display: inline-block !important;
}

/* 2x2 Clean Elevated Feature Cards */
.figma-features-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  max-width: 1060px !important;
  margin: 0 auto 48px !important;
}

.figma-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 38px 36px 36px !important;
  text-align: left !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
  box-sizing: border-box !important;
}

.figma-card:hover {
  transform: translateY(-4px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 16px 36px rgba(0, 198, 181, 0.1) !important;
}

.figma-icon-glyph {
  color: #0b1a28 !important;
  margin-bottom: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.figma-card-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
  margin: 0 0 10px !important;
}

.figma-card-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.96rem !important;
  line-height: 1.62 !important;
  color: #64748B !important;
  margin: 0 !important;
}

/* Bottom Services Pill Bar */
.figma-service-pills-bar {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}

.figma-service-pill {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #0b1a28 !important;
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.025) !important;
  transition: all 0.2s ease !important;
}

.figma-service-pill:hover {
  background: #00c6b5 !important;
  color: #0b1a28 !important;
  border-color: #00c6b5 !important;
  transform: translateY(-2px) !important;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .figma-features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .figma-card {
    padding: 26px 22px !important;
  }
  .figma-service-pills-bar {
    gap: 8px !important;
  }
  .figma-service-pill {
    font-size: 0.8rem !important;
    padding: 6px 14px !important;
  }
}



/* ============================================================ */
/* SECTION 4: 100% INTER BRAND SYSTEM GRID & REAL DELIVERABLES  */
/* ============================================================ */
.section-what-we-build {
  background-color: #F8FAFC !important;
  padding: 85px 0 95px !important;
  position: relative !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.figma-section-header {
  max-width: 820px !important;
  margin: 0 auto 48px !important;
  text-align: center !important;
}

.figma-section-header .section-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2.2rem, 3.4vw, 2.85rem) !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
}

/* 2x2 Clean Feature Cards */
.figma-features-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  max-width: 1100px !important;
  margin: 0 auto 42px !important;
}

.figma-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 34px 32px 30px !important;
  text-align: left !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.025) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.figma-card:hover {
  transform: translateY(-4px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 16px 36px rgba(0, 198, 181, 0.12) !important;
}

.figma-icon-glyph {
  color: #0b1a28 !important;
  margin-bottom: 18px !important;
  display: inline-flex !important;
  align-items: center !important;
}

.figma-card-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.3 !important;
  margin: 0 0 10px !important;
}

.figma-card-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.94rem !important;
  line-height: 1.65 !important;
  color: #475569 !important;
  margin: 0 0 18px !important;
  flex: 1 !important;
}

.figma-card-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  padding-top: 14px !important;
  border-top: 1px solid #F1F5F9 !important;
}

.figma-check-tag {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: #00a89a !important;
  background: rgba(0, 198, 181, 0.08) !important;
  border: 1px solid rgba(0, 198, 181, 0.2) !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
}

/* Bottom Services Pill Bar */
.figma-service-pills-bar {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}

.figma-service-pill {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  color: #0b1a28 !important;
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

.figma-service-pill:hover {
  background: #00c6b5 !important;
  color: #0b1a28 !important;
  border-color: #00c6b5 !important;
  transform: translateY(-2px) !important;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .figma-features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .figma-card {
    padding: 24px 20px !important;
  }
  .figma-service-pills-bar {
    gap: 8px !important;
  }
  .figma-service-pill {
    font-size: 0.78rem !important;
    padding: 6px 12px !important;
  }
}



/* ============================================================ */
/* SECTION: FEATURED CASE STUDIES SHOWCASE (DARK NAVY THEME)    */
/* ============================================================ */
.section-home-case-studies {
  background-color: #0b1a28 !important;
  padding: 100px 0 115px !important;
  position: relative !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.home-cs-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 50px !important;
  max-width: 1180px !important;
  margin: 55px auto 0 !important;
}

.home-cs-card {
  background: #122336 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px !important;
  padding: 42px 42px !important;
  box-sizing: border-box !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.home-cs-card:hover {
  border-color: #00c6b5 !important;
  box-shadow: 0 20px 50px rgba(0, 198, 181, 0.16) !important;
}

.home-cs-grid {
  display: grid !important;
  grid-template-columns: 1.15fr 1fr !important;
  gap: 50px !important;
  align-items: center !important;
}

.home-cs-grid-reverse {
  grid-template-columns: 1fr 1.15fr !important;
}

/* Info Side */
.home-cs-info {
  text-align: left !important;
}

.home-cs-pill {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #00c6b5 !important;
  background: rgba(0, 198, 181, 0.12) !important;
  border: 1px solid rgba(0, 198, 181, 0.25) !important;
  padding: 5px 12px !important;
  border-radius: 100px !important;
  display: inline-block !important;
  margin-bottom: 12px !important;
}

.home-cs-name {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.85rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 4px !important;
}

.home-cs-role {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: rgba(245, 245, 247, 0.7) !important;
  margin-bottom: 22px !important;
}

/* Metric Chips */
.home-cs-metrics-row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
  margin-bottom: 24px !important;
  padding: 14px 16px !important;
  background: rgba(0, 0, 0, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 14px !important;
}

.home-cs-chip {
  text-align: left !important;
}

.chip-val {
  display: block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #00c6b5 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
}

.chip-label {
  display: block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: rgba(245, 245, 247, 0.65) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-top: 3px !important;
}

.home-cs-block {
  margin-bottom: 12px !important;
}

.cs-label-bold {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #00c6b5 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  display: inline-block !important;
  margin-bottom: 2px !important;
}

.cs-desc-text {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: rgba(245, 245, 247, 0.8) !important;
  margin: 0 !important;
}

.home-cs-quote {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-style: italic !important;
  line-height: 1.6 !important;
  color: rgba(245, 245, 247, 0.65) !important;
  border-left: 3px solid #00c6b5 !important;
  padding-left: 14px !important;
  margin: 20px 0 24px !important;
}

.home-cs-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: #00c6b5 !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

.home-cs-link:hover {
  color: #FFFFFF !important;
  transform: translateX(4px) !important;
}

/* Browser Mockup Visual Frame */
.home-cs-browser-frame {
  background: #0b1a28 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3) !important;
}

.browser-dots-bar {
  background: rgba(0, 0, 0, 0.35) !important;
  padding: 10px 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.b-dot {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
}
.b-red { background: #FF5F56 !important; }
.b-yellow { background: #FFBD2E !important; }
.b-green { background: #27C93F !important; }

.browser-url-pill {
  font-family: 'Inter', system-ui, monospace, sans-serif !important;
  font-size: 0.72rem !important;
  color: rgba(245, 245, 247, 0.5) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  padding: 2px 10px !important;
  border-radius: 4px !important;
  margin-left: 8px !important;
}

.home-cs-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.home-cs-card:hover .home-cs-img {
  transform: scale(1.02) !important;
}

/* Responsive Mobile */
@media (max-width: 960px) {
  .home-cs-grid, .home-cs-grid-reverse {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .home-cs-card {
    padding: 30px 24px !important;
  }
  .home-cs-metrics-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
}



/* ============================================================ */
/* SECTION: SINGLE FEATURED CASE STUDY SHOWCASE + VIEW ALL BTN  */
/* ============================================================ */
.section-home-case-studies {
  background-color: #0b1a28 !important;
  padding: 85px 0 95px !important;
  position: relative !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.home-cs-btn-row {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.cs-outline-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 11px 20px !important;
  border-radius: 9px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.cs-outline-btn:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #FFFFFF !important;
  transform: translateY(-2px) !important;
}

.cs-purple-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: #00c6b5 !important;
  color: #0b1a28 !important;
  padding: 11px 22px !important;
  border-radius: 9px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(0, 198, 181, 0.3) !important;
  transition: all 0.2s ease !important;
}

.cs-purple-btn:hover {
  background: #00a89a !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 198, 181, 0.45) !important;
}

/* View All Case Studies Big Button */
.btn-view-all-cs {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: transparent !important;
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  padding: 14px 32px !important;
  border-radius: 100px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.btn-view-all-cs:hover {
  background: #00c6b5 !important;
  color: #0b1a28 !important;
  border-color: #00c6b5 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(0, 198, 181, 0.3) !important;
}



/* ============================================================ */
/* INTERACTIVE BEFORE / AFTER SLIDER SHOWCASE (FIGMA ACCURATE)  */
/* ============================================================ */
.ba-slider-container {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  background: #0b1a28 !important;
}

.ba-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  pointer-events: none !important;
}

.ba-after-img {
  position: relative !important;
  z-index: 1 !important;
}

.ba-before-layer {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 50% !important;
  height: 100% !important;
  overflow: hidden !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.ba-before-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: left top !important;
}

/* Floating Badges */
.ba-badge {
  position: absolute !important;
  top: 14px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  padding: 4px 12px !important;
  border-radius: 6px !important;
  z-index: 4 !important;
  pointer-events: none !important;
}

.ba-badge-after {
  right: 14px !important;
  background: rgba(0, 198, 181, 0.9) !important;
  color: #0b1a28 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3) !important;
}

.ba-badge-before {
  left: 14px !important;
  background: rgba(147, 51, 234, 0.9) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3) !important;
}

/* Draggable Vertical Divider Handle */
.ba-handle-line {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50%;
  width: 3px !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6) !important;
  z-index: 5 !important;
  transform: translateX(-50%) !important;
  pointer-events: none !important;
}

.ba-handle-btn {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  border: 2px solid #00c6b5 !important;
  box-shadow: 0 0 0 4px rgba(0, 198, 181, 0.35), 0 6px 20px rgba(0, 0, 0, 0.5) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.15s ease !important;
}

.ba-slider-container:hover .ba-handle-btn {
  transform: translate(-50%, -50%) scale(1.1) !important;
}

/* Invisible Range Slider on top of everything for fluid dragging */
.ba-range-slider {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  opacity: 0 !important;
  cursor: ew-resize !important;
  z-index: 10 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

/* Bottom Comparison Caption Bar */
.ba-bottom-caption {
  background: rgba(0, 0, 0, 0.45) !important;
  padding: 10px 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
}

.ba-cap-before {
  color: #c084fc !important;
  text-transform: uppercase !important;
}

.ba-cap-center {
  color: rgba(245, 245, 247, 0.6) !important;
}

.ba-cap-after {
  color: #00c6b5 !important;
  text-transform: uppercase !important;
}



/* ============================================================ */
/* FOOLPROOF CLIP-PATH BEFORE / AFTER COMPARISON SLIDER         */
/* ============================================================ */
.ba-slider-container {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  background: #0b1a28 !important;
  cursor: ew-resize !important;
  touch-action: none !important;
}

.ba-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  pointer-events: none !important;
}

.ba-after-img {
  position: relative !important;
  z-index: 1 !important;
}

.ba-before-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 2 !important;
  object-fit: cover !important;
  pointer-events: none !important;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  transition: none !important;
}

/* Floating Badges */
.ba-badge {
  position: absolute !important;
  top: 14px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  padding: 4px 12px !important;
  border-radius: 6px !important;
  z-index: 4 !important;
  pointer-events: none !important;
}

.ba-badge-after {
  right: 14px !important;
  background: rgba(0, 198, 181, 0.95) !important;
  color: #0b1a28 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4) !important;
}

.ba-badge-before {
  left: 14px !important;
  background: rgba(147, 51, 234, 0.95) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4) !important;
}

/* Draggable Vertical Divider Handle Line */
.ba-handle-line {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50%;
  width: 3px !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.8) !important;
  z-index: 5 !important;
  transform: translateX(-50%) !important;
  pointer-events: none !important;
  transition: none !important;
}

.ba-handle-btn {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  border: 2.5px solid #00c6b5 !important;
  box-shadow: 0 0 0 4px rgba(0, 198, 181, 0.4), 0 8px 24px rgba(0, 0, 0, 0.6) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: auto !important;
  cursor: ew-resize !important;
}

/* Bottom Comparison Caption Bar */
.ba-bottom-caption {
  background: rgba(0, 0, 0, 0.45) !important;
  padding: 10px 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
}

.ba-cap-before {
  color: #c084fc !important;
  text-transform: uppercase !important;
}

.ba-cap-center {
  color: rgba(245, 245, 247, 0.65) !important;
}

.ba-cap-after {
  color: #00c6b5 !important;
  text-transform: uppercase !important;
}



/* =========================================================================
   UNIVERSAL RESPONSIVE DESIGN SUITE (MOBILE, TABLET, LAPTOP, DESKTOP)
   ========================================================================= */

/* Prevent any horizontal overflow on all screen sizes */
html, body {
  max-width: 100vw !important;
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100% !important;
}

/* -------------------------------------------------------------
   TABLET RESPONSIVE (768px - 1024px)
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .wrap {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  /* Hero Section */
  .hero-section {
    padding: 36px 0 60px !important;
  }
  .hero-title {
    font-size: 2.8rem !important;
    line-height: 1.2 !important;
  }
  .hero-subtitle {
    font-size: 1.05rem !important;
    max-width: 680px !important;
  }

  /* Section 2: Why Profiles Fail */
  .problem-split-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .problem-left-col {
    position: static !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-right: 0 !important;
  }

  /* Section 3: ICP Grid */
  .icp-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* Section 4: System Grid */
  .figma-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* Section 6: Case Study Showcase */
  .home-cs-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .home-cs-card {
    padding: 36px 30px !important;
  }
}

/* -------------------------------------------------------------
   MOBILE SCREENS (Up to 767px)
   ------------------------------------------------------------- */
@media (max-width: 767px) {
  .wrap {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  /* Section Spacings on Mobile */
  .section-problem-split,
  .section-icp,
  .section-what-we-build,
  .section-timeline-process,
  .section-home-case-studies,
  .section-testimonials {
    padding: 55px 0 65px !important;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 24px 0 45px !important;
  }
  .hero-social-badge {
    padding: 4px 10px 4px 4px !important;
    margin-bottom: 16px !important;
  }
  .badge-text {
    font-size: 0.74rem !important;
  }
  .category-label {
    font-size: 0.68rem !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 12px !important;
  }
  .hero-title {
    font-size: 2.1rem !important;
    line-height: 1.22 !important;
    margin-bottom: 16px !important;
  }
  .hero-subtitle {
    font-size: 0.96rem !important;
    line-height: 1.65 !important;
    margin-bottom: 24px !important;
  }
  .hero-cta-group {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .btn-green-cta,
  .btn-ghost-cta {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
  }
  .hero-trust-strip {
    font-size: 0.78rem !important;
    margin-top: 24px !important;
    line-height: 1.5 !important;
  }

  /* Section 2: Why Profiles Fail Mobile */
  .problem-split-h2 {
    font-size: 1.85rem !important;
  }
  .problem-split-intro {
    font-size: 0.92rem !important;
  }
  .problem-audit-btn {
    width: 100% !important;
  }
  .problem-timeline-tree {
    padding-left: 28px !important;
  }
  .problem-tree-dot-wrap {
    left: -28px !important;
  }
  .problem-tree-content {
    padding: 20px 18px !important;
  }
  .problem-item-h3 {
    font-size: 1.15rem !important;
  }
  .problem-item-p {
    font-size: 0.88rem !important;
  }

  /* Section 3: ICP Mobile */
  .icp-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .icp-card {
    padding: 24px 20px !important;
  }
  .icp-card-title {
    font-size: 1.15rem !important;
    min-height: auto !important;
  }

  /* Section 4: System Grid Mobile */
  .figma-h2 {
    font-size: 1.95rem !important;
  }
  .figma-features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .figma-card {
    padding: 24px 20px !important;
  }
  .figma-card-h3 {
    font-size: 1.15rem !important;
  }
  .figma-service-pills-bar {
    gap: 8px !important;
  }
  .figma-service-pill {
    font-size: 0.76rem !important;
    padding: 6px 12px !important;
  }

  /* Section 5: Timeline Mobile */
  .timeline-center-line {
    left: 22px !important;
    transform: none !important;
  }
  .timeline-row {
    margin-left: 54px !important;
    margin-bottom: 40px !important;
  }
  .timeline-node-wrap {
    left: -32px !important;
    top: 18px !important;
    transform: none !important;
  }
  .timeline-number-node {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.95rem !important;
  }
  .timeline-step-h3 {
    font-size: 1.18rem !important;
  }
  .timeline-step-p {
    font-size: 0.88rem !important;
  }

  /* Section 6: Case Study Mobile Slider */
  .home-cs-name {
    font-size: 1.55rem !important;
  }
  .home-cs-card {
    padding: 24px 18px !important;
  }
  .home-cs-metrics-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .home-cs-btn-row {
    flex-direction: column !important;
    width: 100% !important;
  }
  .cs-outline-btn,
  .cs-purple-btn,
  .btn-view-all-cs {
    width: 100% !important;
    justify-content: center !important;
  }
  .ba-handle-btn {
    width: 36px !important;
    height: 36px !important;
  }

  /* Section 7: Testimonials Mobile */
  .marquee-review-card {
    width: 310px !important;
    padding: 22px 20px !important;
  }
  .review-quote-text {
    font-size: 0.86rem !important;
  }
  .stats-counters-row {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .stat-divider {
    display: none !important;
  }

  /* Pre-Footer Global CTA Mobile */
  .pre-footer-cta-card {
    padding: 36px 20px !important;
    border-radius: 18px !important;
  }
  .pre-footer-h2 {
    font-size: 1.85rem !important;
  }
  .pre-footer-btn-group {
    flex-direction: column !important;
    width: 100% !important;
  }
  .pre-footer-btn-group .btn-green-cta,
  .pre-footer-btn-group .btn-ghost-cta {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Footer Mobile */
  .footer-grid-4 {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    text-align: left !important;
  }
}

/* -------------------------------------------------------------
   EXTRA SMALL MOBILE (<= 380px)
   ------------------------------------------------------------- */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.85rem !important;
  }
  .section-h2 {
    font-size: 1.65rem !important;
  }
  .marquee-review-card {
    width: 280px !important;
  }
}



/* ============================================================ */
/* FOOTER BOTTOM BAR: HIGH CONTRAST DARK TEXT ON WHITE FOOTER   */
/* ============================================================ */
.clean-mango-footer {
  background-color: #FFFFFF !important;
  border-top: 1px solid #E2E8F0 !important;
  padding: 65px 0 32px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.footer-bottom-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-top: 28px !important;
  margin-top: 48px !important;
  border-top: 1px solid #E2E8F0 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  color: #64748B !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
}

.footer-copyright-text {
  color: #64748B !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.footer-legal-links {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.footer-legal-links a {
  color: #64748B !important;
  text-decoration: none !important;
  font-size: 0.88rem !important;
  transition: color 0.2s ease !important;
}

.footer-legal-links a:hover {
  color: #00a89a !important;
}

.legal-pipe {
  color: #CBD5E1 !important;
}

@media (max-width: 767px) {
  .footer-bottom-bar {
    flex-direction: column !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 12px !important;
  }
}



/* ============================================================ */
/* ABOUT US PAGE STYLES (ZELYK LOCKED BRAND IDENTITY)          */
/* ============================================================ */
.about-hero-section {
  background-color: #0b1a28 !important;
  padding: 120px 0 75px !important;
  position: relative !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.about-hero-h1 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2.3rem, 4vw, 3.3rem) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.18 !important;
  letter-spacing: -0.03em !important;
  margin: 18px 0 20px !important;
}

.about-hero-sub {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.12rem !important;
  line-height: 1.7 !important;
  color: rgba(245, 245, 247, 0.8) !important;
  max-width: 780px !important;
  margin: 0 auto !important;
}

/* Story Section */
.about-story-section {
  background-color: #FFFFFF !important;
  padding: 90px 0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.about-story-container {
  max-width: 820px !important;
  margin: 0 auto !important;
}

.about-sec-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2rem, 3.2vw, 2.6rem) !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.02em !important;
  margin: 12px 0 28px !important;
}

.about-story-content .about-p-lead {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.18rem !important;
  line-height: 1.75 !important;
  color: #0b1a28 !important;
  font-weight: 500 !important;
  margin-bottom: 20px !important;
}

.about-story-content .about-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  color: #475569 !important;
  margin-bottom: 20px !important;
}

/* Founders Section */
.about-founders-section {
  background-color: #0b1a28 !important;
  padding: 95px 0 105px !important;
  position: relative !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.founders-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 36px !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}

.founder-card {
  background: #122336 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px !important;
  padding: 36px 32px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.founder-card:hover {
  transform: translateY(-4px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 20px 48px rgba(0, 198, 181, 0.16) !important;
}

.founder-photo-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1.05 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #0b1a28 !important;
  margin-bottom: 24px !important;
}

.founder-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}

.founder-role-tag {
  position: absolute !important;
  bottom: 14px !important;
  left: 14px !important;
  background: rgba(11, 26, 40, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(0, 198, 181, 0.4) !important;
  color: #00c6b5 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  padding: 5px 12px !important;
  border-radius: 8px !important;
}

.founder-name {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin: 0 0 6px !important;
}

.founder-title {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  color: #00c6b5 !important;
  margin-bottom: 16px !important;
}

.founder-bio {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.94rem !important;
  line-height: 1.68 !important;
  color: rgba(245, 245, 247, 0.8) !important;
  margin: 0 0 24px !important;
  flex: 1 !important;
}

.founder-linkedin-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  padding: 10px 18px !important;
  border-radius: 8px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.founder-linkedin-btn:hover {
  background: rgba(0, 198, 181, 0.15) !important;
  border-color: #00c6b5 !important;
  color: #00c6b5 !important;
}

/* Values Section */
.about-values-section {
  background-color: #F8FAFC !important;
  padding: 95px 0 105px !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.about-values-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}

.about-value-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 34px 30px !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.2s ease, border-color 0.2s ease !important;
}

.about-value-card:hover {
  transform: translateY(-4px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 12px 30px rgba(0, 198, 181, 0.1) !important;
}

.value-number-pill {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  color: #00c6b5 !important;
  background: rgba(0, 198, 181, 0.1) !important;
  border: 1px solid rgba(0, 198, 181, 0.25) !important;
  display: inline-block !important;
  padding: 4px 12px !important;
  border-radius: 8px !important;
  margin-bottom: 18px !important;
}

.value-card-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.28rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 12px !important;
}

.value-card-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.94rem !important;
  line-height: 1.68 !important;
  color: #64748B !important;
  margin: 0 !important;
}

/* Responsive */
@media (max-width: 960px) {
  .founders-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .about-values-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}
@media (max-width: 767px) {
  .about-hero-section {
    padding: 95px 0 55px !important;
  }
  .about-hero-h1 {
    font-size: 2rem !important;
  }
  .about-story-section,
  .about-founders-section,
  .about-values-section {
    padding: 60px 0 !important;
  }
  .founder-card {
    padding: 24px 20px !important;
  }
}



/* ============================================================ */
/* ABOUT US HERO 2-LINE HEADLINE LOCK                          */
/* ============================================================ */
.about-hero-section {
  background-color: #0b1a28 !important;
  padding: 100px 0 70px !important;
  position: relative !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.about-hero-h1 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2rem, 3.1vw, 2.85rem) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.22 !important;
  letter-spacing: -0.03em !important;
  margin: 18px auto 20px !important;
  max-width: 1060px !important;
}

.about-hero-sub {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.08rem !important;
  line-height: 1.7 !important;
  color: rgba(245, 245, 247, 0.8) !important;
  max-width: 820px !important;
  margin: 0 auto !important;
}

@media (max-width: 767px) {
  .about-hero-section {
    padding: 75px 0 45px !important;
  }
  .about-hero-h1 {
    font-size: 1.95rem !important;
    line-height: 1.25 !important;
  }
  .about-hero-sub {
    font-size: 0.95rem !important;
  }
}



/* ============================================================ */
/* ABOUT US: EXECUTIVE STORY SECTION (EFFORTLESS READABILITY)   */
/* ============================================================ */
.about-story-section {
  background-color: #FFFFFF !important;
  padding: 85px 0 95px !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.about-story-header {
  max-width: 780px !important;
  margin: 0 auto 45px !important;
}

.about-sec-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2.2rem, 3.5vw, 2.75rem) !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.025em !important;
  margin: 12px 0 10px !important;
}

.about-sec-sub {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
  color: #64748B !important;
  margin: 0 auto !important;
}

/* Story Box Container */
.about-story-box {
  max-width: 1100px !important;
  margin: 0 auto !important;
}

/* Callout Banner */
.story-callout-banner {
  background: #0b1a28 !important;
  border: 1px solid rgba(0, 198, 181, 0.3) !important;
  border-radius: 18px !important;
  padding: 26px 32px !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  margin-bottom: 36px !important;
  box-shadow: 0 10px 30px rgba(11, 26, 40, 0.1) !important;
}

.story-callout-icon {
  flex-shrink: 0 !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 12px !important;
  background: rgba(0, 198, 181, 0.12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.story-callout-text {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.12rem !important;
  font-weight: 600 !important;
  line-height: 1.6 !important;
  color: #FFFFFF !important;
  margin: 0 !important;
}

/* 3 Structured Story Cards Grid */
.story-steps-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

.story-step-card {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 18px !important;
  padding: 32px 28px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02) !important;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
  display: flex !important;
  flex-direction: column !important;
}

.story-step-card:hover {
  transform: translateY(-3px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 10px 24px rgba(0, 198, 181, 0.1) !important;
  background: #FFFFFF !important;
}

.story-step-tag {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  color: #00a89a !important;
  margin-bottom: 12px !important;
}

.story-step-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.22rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.3 !important;
  margin: 0 0 12px !important;
}

.story-step-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.94rem !important;
  line-height: 1.68 !important;
  color: #475569 !important;
  margin: 0 !important;
  flex: 1 !important;
}

/* Mobile & Tablet */
@media (max-width: 960px) {
  .story-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .story-callout-banner {
    flex-direction: column !important;
    text-align: center !important;
    padding: 22px 20px !important;
  }
}



/* ============================================================ */
/* CATEGORY-WISE FAQ ACCORDION SECTION (FIGMA ACCURATE STYLING) */
/* ============================================================ */
.about-faq-section {
  background-color: #0b1a28 !important;
  padding: 100px 0 110px !important;
  position: relative !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.about-faq-container {
  max-width: 860px !important;
  margin: 0 auto !important;
  background: #FFFFFF !important;
  border-radius: 28px !important;
  padding: 55px 48px 48px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
  box-sizing: border-box !important;
}

.faq-header {
  margin-bottom: 34px !important;
}

.faq-micro-pill {
  display: inline-block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  color: #0b1a28 !important;
  background: #F1F5F9 !important;
  border: 1px solid #E2E8F0 !important;
  padding: 4px 14px !important;
  border-radius: 100px !important;
  margin-bottom: 14px !important;
}

.faq-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2.1rem, 3.5vw, 2.85rem) !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 10px !important;
}

.faq-sub {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.98rem !important;
  line-height: 1.6 !important;
  color: #64748B !important;
  max-width: 620px !important;
  margin: 0 auto !important;
}

/* Category Filter Tabs */
.faq-category-tabs {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-bottom: 32px !important;
}

.faq-tab-btn {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  color: #64748B !important;
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.faq-tab-btn:hover {
  background: #E2E8F0 !important;
  color: #0b1a28 !important;
}

.faq-tab-btn.active {
  background: #0b1a28 !important;
  color: #00c6b5 !important;
  border-color: #0b1a28 !important;
  box-shadow: 0 4px 14px rgba(11, 26, 40, 0.2) !important;
}

/* Accordion Items */
.faq-accordion-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.faq-item {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  transition: all 0.25s ease !important;
}

.faq-item:hover {
  border-color: #CBD5E1 !important;
  background: #FFFFFF !important;
}

.faq-item.active {
  background: #FFFFFF !important;
  border: 1.5px solid #00c6b5 !important;
  box-shadow: 0 8px 24px rgba(0, 198, 181, 0.12) !important;
}

.faq-item-header {
  padding: 18px 22px !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  cursor: pointer !important;
  user-select: none !important;
}

.faq-num {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  flex-shrink: 0 !important;
}

.faq-item.active .faq-num {
  background: #00c6b5 !important;
  color: #0b1a28 !important;
  border-color: #00c6b5 !important;
}

.faq-question {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #0b1a28 !important;
  line-height: 1.35 !important;
  flex: 1 !important;
}

.faq-toggle-btn {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: #0b1a28 !important;
  color: #FFFFFF !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  transition: transform 0.2s ease, background 0.2s ease !important;
}

.faq-item:hover .faq-toggle-btn {
  background: #00c6b5 !important;
  color: #0b1a28 !important;
}

.faq-item.active .faq-toggle-btn {
  background: #F1F5F9 !important;
  color: #0b1a28 !important;
  border: 1px solid #E2E8F0 !important;
}

.faq-toggle-btn .icon-close {
  display: none !important;
}
.faq-toggle-btn .icon-plus {
  display: block !important;
}

.faq-item.active .faq-toggle-btn .icon-close {
  display: block !important;
}
.faq-item.active .faq-toggle-btn .icon-plus {
  display: none !important;
}

.faq-item-body {
  display: none;
  padding: 0 22px 20px 66px !important;
}

.faq-answer-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.94rem !important;
  line-height: 1.68 !important;
  color: #475569 !important;
  margin: 0 !important;
}

/* Bottom Help */
.faq-bottom-help {
  margin-top: 36px !important;
  padding-top: 24px !important;
  border-top: 1px solid #E2E8F0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.faq-help-text {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  color: #64748B !important;
  margin: 0 !important;
}

.faq-contact-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: #00a89a !important;
  text-decoration: underline !important;
  transition: color 0.2s ease !important;
}

.faq-contact-link:hover {
  color: #0b1a28 !important;
}

/* Mobile */
@media (max-width: 767px) {
  .about-faq-container {
    padding: 34px 20px !important;
    border-radius: 20px !important;
  }
  .faq-h2 {
    font-size: 1.85rem !important;
  }
  .faq-category-tabs {
    gap: 6px !important;
  }
  .faq-tab-btn {
    font-size: 0.76rem !important;
    padding: 6px 12px !important;
  }
  .faq-question {
    font-size: 0.96rem !important;
  }
  .faq-item-body {
    padding: 0 18px 18px 18px !important;
  }
  .faq-bottom-help {
    flex-direction: column !important;
    gap: 4px !important;
  }
}



/* ============================================================ */
/* FULL-WIDTH EDGE-TO-EDGE FAQ SECTION (NO AWKWARD SIDE SPACES) */
/* ============================================================ */
.about-faq-section {
  background-color: #FFFFFF !important;
  padding: 95px 0 110px !important;
  position: relative !important;
  width: 100% !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
  box-sizing: border-box !important;
}

.about-faq-container {
  max-width: 1000px !important;
  margin: 0 auto !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

.faq-header {
  margin-bottom: 38px !important;
}

.faq-micro-pill {
  display: inline-block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  color: #0b1a28 !important;
  background: #F1F5F9 !important;
  border: 1px solid #E2E8F0 !important;
  padding: 5px 16px !important;
  border-radius: 100px !important;
  margin-bottom: 16px !important;
}

.faq-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2.3rem, 3.8vw, 3.1rem) !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 12px !important;
}

.faq-sub {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
  color: #64748B !important;
  max-width: 680px !important;
  margin: 0 auto !important;
}

/* Category Filter Tabs */
.faq-category-tabs {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin-bottom: 38px !important;
}

.faq-tab-btn {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #64748B !important;
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  padding: 9px 22px !important;
  border-radius: 100px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.faq-tab-btn:hover {
  background: #E2E8F0 !important;
  color: #0b1a28 !important;
}

.faq-tab-btn.active {
  background: #0b1a28 !important;
  color: #00c6b5 !important;
  border-color: #0b1a28 !important;
  box-shadow: 0 4px 16px rgba(11, 26, 40, 0.15) !important;
}

/* Accordion Items */
.faq-accordion-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.faq-item {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  transition: all 0.25s ease !important;
}

.faq-item:hover {
  border-color: #CBD5E1 !important;
  background: #FFFFFF !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03) !important;
}

.faq-item.active {
  background: #FFFFFF !important;
  border: 1.5px solid #00c6b5 !important;
  box-shadow: 0 10px 30px rgba(0, 198, 181, 0.12) !important;
}

.faq-item-header {
  padding: 22px 26px !important;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  cursor: pointer !important;
  user-select: none !important;
}

.faq-num {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  flex-shrink: 0 !important;
}

.faq-item.active .faq-num {
  background: #00c6b5 !important;
  color: #0b1a28 !important;
  border-color: #00c6b5 !important;
}

.faq-question {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #0b1a28 !important;
  line-height: 1.35 !important;
  flex: 1 !important;
}

.faq-toggle-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: #0b1a28 !important;
  color: #FFFFFF !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  transition: transform 0.2s ease, background 0.2s ease !important;
}

.faq-item:hover .faq-toggle-btn {
  background: #00c6b5 !important;
  color: #0b1a28 !important;
}

.faq-item.active .faq-toggle-btn {
  background: #F1F5F9 !important;
  color: #0b1a28 !important;
  border: 1px solid #E2E8F0 !important;
}

.faq-toggle-btn .icon-close {
  display: none !important;
}
.faq-toggle-btn .icon-plus {
  display: block !important;
}

.faq-item.active .faq-toggle-btn .icon-close {
  display: block !important;
}
.faq-item.active .faq-toggle-btn .icon-plus {
  display: none !important;
}

.faq-item-body {
  display: none;
  padding: 0 26px 24px 76px !important;
}

.faq-answer-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.98rem !important;
  line-height: 1.7 !important;
  color: #475569 !important;
  margin: 0 !important;
}

/* Bottom Help */
.faq-bottom-help {
  margin-top: 42px !important;
  padding-top: 26px !important;
  border-top: 1px solid #E2E8F0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.faq-help-text {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.96rem !important;
  color: #64748B !important;
  margin: 0 !important;
}

.faq-contact-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.96rem !important;
  font-weight: 700 !important;
  color: #00a89a !important;
  text-decoration: underline !important;
  transition: color 0.2s ease !important;
}

.faq-contact-link:hover {
  color: #0b1a28 !important;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .about-faq-section {
    padding: 60px 0 !important;
  }
  .faq-h2 {
    font-size: 1.9rem !important;
  }
  .faq-category-tabs {
    gap: 8px !important;
  }
  .faq-tab-btn {
    font-size: 0.78rem !important;
    padding: 6px 14px !important;
  }
  .faq-item-header {
    padding: 18px 18px !important;
    gap: 12px !important;
  }
  .faq-question {
    font-size: 0.98rem !important;
  }
  .faq-item-body {
    padding: 0 18px 20px 18px !important;
  }
  .faq-bottom-help {
    flex-direction: column !important;
    gap: 6px !important;
  }
}



/* ============================================================ */
/* FULL-WIDTH EDGE-TO-EDGE PRE-FOOTER CTA (NO WHITE SIDEBARS)   */
/* ============================================================ */
.global-cta-section {
  background-color: #0b1a28 !important;
  padding: 95px 0 100px !important;
  position: relative !important;
  width: 100% !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.global-cta-wrap {
  max-width: 960px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
  text-align: center !important;
}

.global-cta-card {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  position: relative !important;
  overflow: visible !important;
}

.global-cta-card::before {
  display: none !important;
}

.global-cta-badge {
  display: inline-block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #00c6b5 !important;
  background: rgba(0, 198, 181, 0.12) !important;
  border: 1px solid rgba(0, 198, 181, 0.3) !important;
  padding: 5px 16px !important;
  border-radius: 100px !important;
  margin-bottom: 20px !important;
}

.global-cta-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.18 !important;
  letter-spacing: -0.03em !important;
  margin: 0 auto 18px !important;
  max-width: 820px !important;
}

.global-cta-sub {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.08rem !important;
  line-height: 1.7 !important;
  color: rgba(245, 245, 247, 0.78) !important;
  margin: 0 auto 32px !important;
  max-width: 700px !important;
}

.global-cta-btn-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 24px !important;
}

.global-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 15px 36px !important;
  background-color: #00c6b5 !important;
  color: #0b1a28 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(0, 198, 181, 0.35) !important;
  transition: all 0.2s ease !important;
}

.global-cta-btn:hover {
  background-color: #00a89a !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 30px rgba(0, 198, 181, 0.5) !important;
  transform: translateY(-2px) !important;
}

.global-cta-trust-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.85rem !important;
  color: rgba(245, 245, 247, 0.65) !important;
}

@media (max-width: 767px) {
  .global-cta-section {
    padding: 60px 0 65px !important;
  }
  .global-cta-h2 {
    font-size: 1.95rem !important;
  }
  .global-cta-sub {
    font-size: 0.94rem !important;
    margin-bottom: 24px !important;
  }
  .global-cta-btn {
    width: 100% !important;
    padding: 14px 20px !important;
  }
  .global-cta-trust-row {
    gap: 8px !important;
    font-size: 0.78rem !important;
  }
}



/* ============================================================ */
/* HERO TOP PADDING: REDUCED BY HALF (COMPACT & BALANCED)       */
/* ============================================================ */
.about-hero-section {
  background-color: #0b1a28 !important;
  padding: 48px 0 60px !important;
  position: relative !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 767px) {
  .about-hero-section {
    padding: 36px 0 45px !important;
  }
}



/* ============================================================ */
/* SERVICES PAGE STYLES (ZELYK LOCKED BRAND IDENTITY)          */
/* ============================================================ */
.services-packages-section {
  background-color: #0b1a28 !important;
  padding: 85px 0 100px !important;
  position: relative !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.packages-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 32px !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  align-items: stretch !important;
}

.package-card {
  background: #122336 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px !important;
  padding: 40px 36px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25) !important;
  position: relative !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
  box-sizing: border-box !important;
}

.package-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(0, 198, 181, 0.5) !important;
  box-shadow: 0 20px 50px rgba(0, 198, 181, 0.15) !important;
}

.package-card.featured-package {
  border: 2px solid #00c6b5 !important;
  box-shadow: 0 20px 50px rgba(0, 198, 181, 0.22) !important;
}

.featured-ribbon {
  position: absolute !important;
  top: 20px !important;
  right: 24px !important;
  background: #00c6b5 !important;
  color: #0b1a28 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  padding: 4px 12px !important;
  border-radius: 100px !important;
}

.pkg-badge {
  display: inline-block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  color: #00c6b5 !important;
  background: rgba(0, 198, 181, 0.1) !important;
  border: 1px solid rgba(0, 198, 181, 0.25) !important;
  padding: 4px 12px !important;
  border-radius: 6px !important;
  margin-bottom: 14px !important;
}

.pkg-title {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.85rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 6px !important;
}

.pkg-subtitle {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  color: rgba(245, 245, 247, 0.7) !important;
  margin-bottom: 20px !important;
}

.pkg-price-tag {
  padding-bottom: 22px !important;
  margin-bottom: 24px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.price-val {
  display: block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  color: #00c6b5 !important;
  letter-spacing: -0.02em !important;
}

.sub-mo {
  font-size: 1rem !important;
  color: rgba(245, 245, 247, 0.6) !important;
  font-weight: 600 !important;
}

.price-type {
  display: block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.8rem !important;
  color: rgba(245, 245, 247, 0.6) !important;
  margin-top: 2px !important;
}

.pkg-block-label {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 14px !important;
}

.pkg-checklist {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 28px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.pkg-checklist li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
  color: rgba(245, 245, 247, 0.85) !important;
}

.check-icon {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

.pkg-for-box {
  background: rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 14px !important;
  padding: 16px 18px !important;
  margin-bottom: 28px !important;
}

.pkg-for-label {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.82rem !important;
  color: #00c6b5 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  display: block !important;
  margin-bottom: 4px !important;
}

.pkg-for-text {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
  color: rgba(245, 245, 247, 0.75) !important;
  margin: 0 !important;
}

.pkg-btn-outline {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 14px 24px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 10px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.pkg-btn-outline:hover {
  background: #00c6b5 !important;
  color: #0b1a28 !important;
  border-color: #00c6b5 !important;
}

.pkg-btn-green {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 14px 24px !important;
  background: #00c6b5 !important;
  color: #0b1a28 !important;
  border-radius: 10px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(0, 198, 181, 0.35) !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.pkg-btn-green:hover {
  background: #00a89a !important;
  color: #FFFFFF !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(0, 198, 181, 0.5) !important;
}

/* Comparison Table Section */
.services-comparison-section {
  background-color: #FFFFFF !important;
  padding: 90px 0 100px !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.comparison-table-wrap {
  max-width: 1000px !important;
  margin: 0 auto !important;
  overflow-x: auto !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 18px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

.services-table {
  width: 100% !important;
  border-collapse: collapse !important;
  text-align: left !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}

.services-table th, .services-table td {
  padding: 18px 24px !important;
  border-bottom: 1px solid #E2E8F0 !important;
  font-size: 0.94rem !important;
}

.services-table th {
  background: #F8FAFC !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
}

.th-featured {
  background: rgba(0, 198, 181, 0.08) !important;
  color: #008f82 !important;
}

.td-feature {
  font-weight: 600 !important;
  color: #0b1a28 !important;
}

.td-status {
  color: #334155 !important;
}

.td-featured {
  background: rgba(0, 198, 181, 0.03) !important;
  font-weight: 600 !important;
}

.check-mark {
  color: #00a89a !important;
  font-weight: 800 !important;
  margin-right: 4px !important;
}

.pill-optional {
  display: inline-block !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #008f82 !important;
  background: rgba(0, 198, 181, 0.12) !important;
  padding: 2px 8px !important;
  border-radius: 4px !important;
}

@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}



/* ============================================================ */
/* MODERN MOBILE NAVIGATION DRAWER & BREAKPOINTS                */
/* ============================================================ */
.site-header {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background-color: #0b1a28 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  z-index: 99999 !important;
}

.nav-container-fullscreen {
  width: 100% !important;
  margin: 0 auto !important;
  padding: 16px 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
}

.nav-brand .header-logo-img {
  display: block !important;
  width: 118px !important;
  height: auto !important;
}

.nav-menu-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 !important;
}

.nav-menu-list {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.nav-item-link {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  color: rgba(245, 245, 247, 0.85) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.nav-item-link:hover {
  color: #00c6b5 !important;
}

.nav-actions-right {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.nav-ghost-link {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  transition: background 0.2s ease !important;
}

.nav-ghost-link:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}

.nav-mango-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 10px 20px !important;
  background-color: #00c6b5 !important;
  color: #0b1a28 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 2px 10px rgba(0, 198, 181, 0.3) !important;
  transition: all 0.2s ease !important;
}

.nav-mango-btn:hover {
  background-color: #00a89a !important;
  color: #FFFFFF !important;
}

.nav-mobile-toggle {
  display: none !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}

.nav-mobile-toggle:hover {
  background: rgba(0, 198, 181, 0.15) !important;
  border-color: #00c6b5 !important;
}

/* ============================================================ */
/* MOBILE DRAWER SHEET (FULL SLIDE-OUT WITH BLUR OVERLAY)       */
/* ============================================================ */
.mobile-sheet {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 999999 !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: visibility 0.3s ease, opacity 0.3s ease !important;
}

.mobile-sheet.open {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.sheet-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(4, 10, 18, 0.75) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.sheet-content {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 320px !important;
  height: 100% !important;
  background: #0b1a28 !important;
  border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 24px 22px !important;
  box-sizing: border-box !important;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5) !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mobile-sheet.open .sheet-content {
  transform: translateX(0) !important;
}

.sheet-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.sheet-close {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: background 0.2s ease !important;
}

.sheet-close:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

.sheet-body {
  flex: 1 !important;
  padding: 24px 0 !important;
  overflow-y: auto !important;
}

.sheet-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.sheet-nav-item {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.12rem !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  display: block !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.sheet-nav-item:hover {
  background: rgba(0, 198, 181, 0.12) !important;
  color: #00c6b5 !important;
  padding-left: 16px !important;
}

.sheet-footer {
  padding-top: 18px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  text-align: center !important;
}

/* ============================================================ */
/* RESPONSIVE HEADER MEDIA QUERIES                              */
/* ============================================================ */
@media (max-width: 1023px) {
  .nav-container-fullscreen {
    padding: 14px 20px !important;
  }
  .nav-menu-center {
    display: none !important;
  }
  .nav-ghost-link {
    display: none !important;
  }
  .nav-mango-btn {
    padding: 8px 14px !important;
    font-size: 0.82rem !important;
  }
  .nav-mobile-toggle {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .nav-brand .header-logo-img {
    width: 102px !important;
  }
  .nav-mango-btn {
    display: none !important;
  }
  .sheet-content {
    max-width: 290px !important;
  }
}



/* ============================================================ */
/* MOBILE DRAWER: BRAND TEAL HOVER & EMAIL US BUTTON            */
/* ============================================================ */
.sheet-links a,
.sheet-links li a,
.sheet-nav-item {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  display: block !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  background: transparent !important;
  transition: all 0.2s ease !important;
}

.sheet-links a:hover,
.sheet-links a:active,
.sheet-links a.active,
.sheet-links li a:hover,
.sheet-links li a.active,
.sheet-nav-item:hover,
.sheet-nav-item.active {
  background: rgba(0, 198, 181, 0.14) !important;
  color: #00c6b5 !important;
  padding-left: 18px !important;
}

.sheet-close:hover {
  background: rgba(0, 198, 181, 0.2) !important;
  border-color: #00c6b5 !important;
  color: #00c6b5 !important;
}

.sheet-footer {
  padding-top: 18px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.sheet-email-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 12px 18px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 8px !important;
  color: #FFFFFF !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.sheet-email-btn:hover {
  background: rgba(0, 198, 181, 0.15) !important;
  border-color: #00c6b5 !important;
  color: #00c6b5 !important;
}



/* ============================================================ */
/* ZERO-SCROLL SINGLE VIEWPORT MOBILE DRAWER (NO SCROLLBARS)    */
/* ============================================================ */
.mobile-sheet {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  z-index: 999999 !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  transition: visibility 0.25s ease, opacity 0.25s ease !important;
}

.mobile-sheet.open {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.sheet-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(4, 10, 18, 0.8) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.sheet-content {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 310px !important;
  height: 100% !important;
  height: 100dvh !important;
  max-height: 100vh !important;
  max-height: 100dvh !important;
  background: #0b1a28 !important;
  border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 18px 20px 20px !important;
  box-sizing: border-box !important;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6) !important;
  transform: translateX(100%) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden !important;
}

.mobile-sheet.open .sheet-content {
  transform: translateX(0) !important;
}

.sheet-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 12px !important;
  margin-bottom: 6px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  flex-shrink: 0 !important;
}

.sheet-close {
  width: 34px !important;
  height: 34px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}

.sheet-close:hover {
  background: rgba(0, 198, 181, 0.18) !important;
  border-color: #00c6b5 !important;
  color: #00c6b5 !important;
}

.sheet-body {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.sheet-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.sheet-nav-item,
.sheet-links a,
.sheet-links li a {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.96rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none !important;
  display: block !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  background: transparent !important;
  transition: all 0.18s ease !important;
  line-height: 1.3 !important;
}

.sheet-nav-item:hover,
.sheet-nav-item:active,
.sheet-nav-item.active,
.sheet-links a:hover,
.sheet-links a.active {
  background: rgba(0, 198, 181, 0.14) !important;
  color: #00c6b5 !important;
  padding-left: 16px !important;
}

.sheet-footer {
  padding-top: 14px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
}

.sheet-footer .btn-green-cta {
  padding: 11px 18px !important;
  font-size: 0.88rem !important;
  width: 100% !important;
  justify-content: center !important;
}

.sheet-email-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 10px 16px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 8px !important;
  color: #FFFFFF !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.sheet-email-btn:hover {
  background: rgba(0, 198, 181, 0.14) !important;
  border-color: #00c6b5 !important;
  color: #00c6b5 !important;
}

/* Hide scrollbars everywhere in drawer */
.sheet-content::-webkit-scrollbar,
.sheet-body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
}
.sheet-content,
.sheet-body {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}



/* ============================================================ */
/* COMPACT MOBILE HEADINGS (NO AWKWARD 5-LINE WRAPPING)         */
/* ============================================================ */
.s4-system-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2.2rem, 3.5vw, 3rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
  margin: 14px auto 18px !important;
  max-width: 900px !important;
}

@media (max-width: 767px) {
  .s4-system-h2 {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em !important;
    margin: 10px auto 14px !important;
    padding: 0 10px !important;
  }
  .desktop-br {
    display: inline !important;
  }
  .section-h2.text-dark {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
  }
  .section-badge,
  .figma-micro-pill {
    font-size: 0.72rem !important;
    padding: 4px 12px !important;
  }
}

@media (max-width: 420px) {
  .s4-system-h2 {
    font-size: 1.32rem !important;
    line-height: 1.25 !important;
  }
}



/* ============================================================ */
/* EXECUTIVE TIMELINE: CLEAN TYPOGRAPHY & ZERO-OVERLAP MOBILE   */
/* ============================================================ */
.section-timeline-process {
  background-color: #0b1a28 !important;
  padding: 95px 0 105px !important;
  position: relative !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.timeline-container {
  position: relative !important;
  max-width: 1040px !important;
  margin: 60px auto 0 !important;
  padding: 20px 0 !important;
}

.timeline-center-line {
  position: absolute !important;
  top: 30px !important;
  bottom: 30px !important;
  left: 50% !important;
  width: 2px !important;
  background: linear-gradient(180deg, rgba(0, 198, 181, 0.15) 0%, rgba(0, 198, 181, 0.85) 50%, rgba(0, 198, 181, 0.15) 100%) !important;
  transform: translateX(-50%) !important;
  z-index: 1 !important;
}

.timeline-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: relative !important;
  margin-bottom: 65px !important;
  z-index: 2 !important;
}

.timeline-row:last-child {
  margin-bottom: 0 !important;
}

.timeline-col {
  width: calc(50% - 50px) !important;
  box-sizing: border-box !important;
}

.timeline-node-wrap {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 3 !important;
}

.timeline-number-node {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background-color: #00c6b5 !important;
  color: #0b1a28 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.12rem !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 0 0 6px #0b1a28, 0 4px 18px rgba(0, 198, 181, 0.4) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.timeline-row:hover .timeline-number-node {
  transform: scale(1.12) !important;
  box-shadow: 0 0 0 8px #0b1a28, 0 6px 24px rgba(0, 198, 181, 0.6) !important;
}

.timeline-step-meta {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 8px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.timeline-step-2 .timeline-step-meta,
.timeline-step-4 .timeline-step-meta {
  justify-content: flex-end !important;
}

.timeline-step-label {
  color: #00c6b5 !important;
}

.timeline-meta-dot {
  color: rgba(245, 245, 247, 0.4) !important;
}

.timeline-time-text {
  color: rgba(245, 245, 247, 0.7) !important;
}

.timeline-step-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 10px !important;
  line-height: 1.25 !important;
}

.timeline-step-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.94rem !important;
  line-height: 1.65 !important;
  color: rgba(245, 245, 247, 0.76) !important;
  margin: 0 !important;
}

.timeline-graphic-box {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100px !important;
  height: 100px !important;
  border-radius: 50% !important;
  background: rgba(0, 198, 181, 0.06) !important;
  border: 1px dashed rgba(0, 198, 181, 0.3) !important;
  transition: all 0.3s ease !important;
}

.timeline-row:hover .timeline-graphic-box {
  background: rgba(0, 198, 181, 0.12) !important;
  border-color: #00c6b5 !important;
}

/* ============================================================ */
/* PERFECT MOBILE TIMELINE (NO OVERLAPS / ZERO CLASH)           */
/* ============================================================ */
@media (max-width: 767px) {
  .section-timeline-process {
    padding: 65px 0 75px !important;
  }
  .timeline-container {
    margin-top: 40px !important;
    padding: 10px 0 !important;
  }
  .timeline-center-line {
    left: 20px !important;
    transform: none !important;
    top: 15px !important;
    bottom: 15px !important;
  }
  .timeline-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-left: 0 !important;
    padding-left: 56px !important;
    margin-bottom: 45px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }
  .timeline-row-reverse {
    flex-direction: column !important;
  }
  .timeline-col {
    width: 100% !important;
    text-align: left !important;
  }
  .timeline-visual-col {
    display: none !important;
  }
  .timeline-content-col {
    text-align: left !important;
  }
  .timeline-node-wrap {
    left: 20px !important;
    top: 4px !important;
    transform: translate(-50%, 0) !important;
  }
  .timeline-number-node {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.92rem !important;
    box-shadow: 0 0 0 5px #0b1a28, 0 3px 12px rgba(0, 198, 181, 0.4) !important;
  }
  .timeline-step-meta {
    justify-content: flex-start !important;
    font-size: 0.72rem !important;
    margin-bottom: 6px !important;
  }
  .timeline-step-h3 {
    font-size: 1.15rem !important;
    margin-bottom: 8px !important;
  }
  .timeline-step-p {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }
}



/* ============================================================ */
/* UNIFORM MOBILE TIMELINE ALIGNMENT (IDENTICAL 1-4 STEPS)      */
/* ============================================================ */
@media (max-width: 1023px) {
  .timeline-container {
    padding: 10px 0 !important;
    margin-top: 36px !important;
  }
  
  .timeline-center-line {
    left: 18px !important;
    transform: none !important;
    top: 10px !important;
    bottom: 10px !important;
  }

  .timeline-row,
  .timeline-row-reverse,
  .timeline-step-1,
  .timeline-step-2,
  .timeline-step-3,
  .timeline-step-4 {
    display: block !important;
    position: relative !important;
    padding-left: 50px !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 40px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }

  .timeline-row:last-child {
    margin-bottom: 0 !important;
  }

  .timeline-col,
  .timeline-content-col {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .timeline-visual-col {
    display: none !important;
  }

  .timeline-node-wrap {
    position: absolute !important;
    left: 18px !important;
    top: 0 !important;
    transform: translate(-50%, 0) !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 3 !important;
  }

  .timeline-number-node {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.92rem !important;
    box-shadow: 0 0 0 5px #0b1a28, 0 3px 12px rgba(0, 198, 181, 0.4) !important;
  }

  .timeline-content-card {
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
    width: 100% !important;
  }

  .timeline-step-meta,
  .timeline-step-1 .timeline-step-meta,
  .timeline-step-2 .timeline-step-meta,
  .timeline-step-3 .timeline-step-meta,
  .timeline-step-4 .timeline-step-meta {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 8px !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
    font-size: 0.74rem !important;
  }

  .timeline-step-h3 {
    text-align: left !important;
    font-size: 1.15rem !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.25 !important;
  }

  .timeline-step-p {
    text-align: left !important;
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }
}



/* ============================================================ */
/* LOW-NOISE EXECUTIVE TRUST METRICS (SENIOR CFO CLARITY)       */
/* ============================================================ */
.executive-stats-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  max-width: 1040px !important;
  margin: 50px auto 0 !important;
  box-sizing: border-box !important;
}

.exec-stat-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 18px !important;
  padding: 30px 24px !important;
  text-align: center !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
  box-sizing: border-box !important;
}

.exec-stat-card:hover {
  transform: translateY(-2px) !important;
  border-color: #CBD5E1 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
}

.exec-stat-num {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2.1rem, 3.2vw, 2.75rem) !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 8px !important;
}

.stat-accent {
  color: #00c6b5 !important;
  margin-left: 2px !important;
}

.stat-sep {
  color: #00c6b5 !important;
  font-weight: 600 !important;
  margin: 0 2px !important;
}

.exec-stat-title {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #0b1a28 !important;
  line-height: 1.3 !important;
  margin-bottom: 4px !important;
}

.exec-stat-sub {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.82rem !important;
  color: #64748B !important;
  line-height: 1.4 !important;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .executive-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 36px !important;
  }
  
  .exec-stat-card {
    padding: 22px 20px !important;
    border-radius: 14px !important;
  }

  .exec-stat-num {
    font-size: 2.1rem !important;
    margin-bottom: 6px !important;
  }

  .exec-stat-title {
    font-size: 0.95rem !important;
  }

  .exec-stat-sub {
    font-size: 0.78rem !important;
  }
}



/* ============================================================ */
/* OFFICIAL HOMEPAGE SERVICES GRID (LOW NOISE / SENIOR CFO UI)  */
/* ============================================================ */
.service-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  max-width: 1040px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

.service-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 36px 32px !important;
  text-align: left !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
  box-sizing: border-box !important;
}

.service-card:hover {
  transform: translateY(-2px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 10px 30px rgba(0, 198, 181, 0.12) !important;
}

.service-card-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 12px !important;
  line-height: 1.25 !important;
}

.service-card-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.65 !important;
  color: #475569 !important;
  margin: 0 0 24px !important;
  flex: 1 !important;
}

.card-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: #00a89a !important;
  text-decoration: none !important;
  transition: color 0.2s ease, gap 0.2s ease !important;
  align-self: flex-start !important;
}

.card-link:hover {
  color: #0b1a28 !important;
  gap: 9px !important;
}

@media (max-width: 767px) {
  .service-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .service-card {
    padding: 24px 20px !important;
    border-radius: 16px !important;
  }
  .service-card-h3 {
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
  }
  .service-card-p {
    font-size: 0.88rem !important;
    margin-bottom: 18px !important;
  }
}



/* ============================================================ */
/* COMPACT SINGLE-SCREEN VIEWPORT SERVICES GRID                 */
/* ============================================================ */
.section-what-we-build {
  padding: 60px 0 65px !important;
}

.service-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  max-width: 1040px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

.service-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 18px !important;
  padding: 26px 26px !important;
  text-align: left !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
  box-sizing: border-box !important;
}

.service-card:hover {
  transform: translateY(-2px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 8px 24px rgba(0, 198, 181, 0.12) !important;
}

.service-card-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 8px !important;
  line-height: 1.25 !important;
}

.service-card-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
  color: #475569 !important;
  margin: 0 0 16px !important;
  flex: 1 !important;
}

.card-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #00a89a !important;
  text-decoration: none !important;
  transition: color 0.2s ease, gap 0.2s ease !important;
  align-self: flex-start !important;
}

.card-link:hover {
  color: #0b1a28 !important;
  gap: 9px !important;
}

@media (max-width: 767px) {
  .section-what-we-build {
    padding: 45px 0 50px !important;
  }
  .service-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .service-card {
    padding: 20px 18px !important;
    border-radius: 14px !important;
  }
}



/* ============================================================ */
/* OFFICIAL 6-STEP SERVICES PAGE INFRASTRUCTURE STYLES          */
/* ============================================================ */
.services-hero-cta-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.btn-outline-white {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 13px 26px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 8px !important;
  color: #FFFFFF !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
}

/* 4 Pillars Grid */
.pillars-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  max-width: 1060px !important;
  margin: 0 auto !important;
}

.pillar-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 34px 30px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.pillar-card:hover {
  transform: translateY(-2px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 10px 30px rgba(0, 198, 181, 0.12) !important;
}

.pillar-label {
  display: inline-block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  color: #00a89a !important;
  background: rgba(0, 198, 181, 0.1) !important;
  padding: 4px 12px !important;
  border-radius: 6px !important;
  margin-bottom: 14px !important;
  align-self: flex-start !important;
}

.pillar-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 10px !important;
  line-height: 1.25 !important;
}

.pillar-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.94rem !important;
  line-height: 1.6 !important;
  color: #475569 !important;
  margin: 0 0 20px !important;
}

.pillar-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.pillar-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  color: #334155 !important;
}

/* 3-Step Process Cards */
.process-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  max-width: 1060px !important;
  margin: 0 auto !important;
}

.process-card {
  background: #122336 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 18px !important;
  padding: 34px 26px !important;
  text-align: left !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2) !important;
  transition: transform 0.2s ease, border-color 0.2s ease !important;
}

.process-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(0, 198, 181, 0.5) !important;
}

.process-step-num {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  color: #00c6b5 !important;
  line-height: 1 !important;
  margin-bottom: 14px !important;
}

.process-step-h4 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
}

.process-step-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: rgba(245, 245, 247, 0.75) !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .process-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .pillar-card {
    padding: 24px 20px !important;
  }
  .process-card {
    padding: 24px 20px !important;
  }
}



/* ============================================================ */
/* SERVICES PAGE: COMPACT SPACING & CLEAN MOBILE TYPOGRAPHY     */
/* ============================================================ */
.services-hero-h1 {
  font-size: clamp(2.3rem, 3.8vw, 3.2rem) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.03em !important;
  margin: 12px auto 18px !important;
}

.services-pillars-section {
  padding: 55px 0 65px !important;
}

.services-process-section {
  padding: 55px 0 65px !important;
}

@media (max-width: 767px) {
  .services-hero-h1 {
    font-size: 1.55rem !important;
    line-height: 1.22 !important;
    letter-spacing: -0.02em !important;
    margin: 10px auto 14px !important;
    padding: 0 8px !important;
  }
  .services-pillars-section {
    padding: 40px 0 45px !important;
  }
  .services-process-section {
    padding: 40px 0 45px !important;
  }
  .section-header {
    margin-bottom: 30px !important;
  }
  .process-cards-grid {
    gap: 14px !important;
  }
}



/* ============================================================ */
/* PROCESS SECTION: HIGH-CONTRAST WHITE TITLE & TIGHT SPACING   */
/* ============================================================ */
.process-sec-h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.025em !important;
  margin: 10px auto 12px !important;
  line-height: 1.2 !important;
  max-width: 800px !important;
}

@media (max-width: 767px) {
  .process-sec-h2 {
    font-size: 1.4rem !important;
    line-height: 1.25 !important;
    margin: 8px auto 10px !important;
    padding: 0 10px !important;
  }
}



/* ============================================================ */
/* LARGER, BOLD FAQ TOGGLE BUTTON PLUS & CLOSE ICONS            */
/* ============================================================ */
.faq-toggle-btn {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: #0b1a28 !important;
  color: #FFFFFF !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease !important;
}

.faq-toggle-btn svg {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 2.8 !important;
  display: block !important;
}

.faq-item:hover .faq-toggle-btn {
  background: #00c6b5 !important;
  color: #0b1a28 !important;
}

.faq-item.active .faq-toggle-btn {
  background: #F1F5F9 !important;
  color: #0b1a28 !important;
  border: 1px solid #E2E8F0 !important;
}



/* ============================================================ */
/* EDITORIAL THESIS BLOCK (NO AI ALERT WIDGETS)                 */
/* ============================================================ */
.editorial-thesis-box {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-left: 4px solid #00c6b5 !important;
  border-radius: 16px !important;
  padding: 30px 36px !important;
  margin: 0 auto 36px !important;
  max-width: 1040px !important;
  text-align: left !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02) !important;
  box-sizing: border-box !important;
}

.editorial-thesis-quote {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem) !important;
  font-weight: 600 !important;
  line-height: 1.65 !important;
  color: #0b1a28 !important;
  margin: 0 0 12px 0 !important;
  letter-spacing: -0.01em !important;
}

.thesis-attribution {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.thesis-dot {
  color: #00c6b5 !important;
  font-size: 1.1rem !important;
  line-height: 1 !important;
}

.thesis-author {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #00a89a !important;
}

@media (max-width: 767px) {
  .editorial-thesis-box {
    padding: 22px 20px !important;
    margin-bottom: 26px !important;
    border-radius: 12px !important;
  }
  .editorial-thesis-quote {
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
  }
}



/* ============================================================ */
/* ARTICLE & BLOG STYLES (CRISP HIGH-CONTRAST TYPOGRAPHY)       */
/* ============================================================ */
.article-rich-body {
  color: #334155 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.08rem !important;
  line-height: 1.82 !important;
}

.article-rich-body h1,
.article-rich-body h2,
.article-rich-body h3,
.article-rich-body h4 {
  font-family: 'Inter', system-ui, sans-serif !important;
  color: #0b1a28 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  margin: 36px 0 16px !important;
  line-height: 1.3 !important;
}

.article-rich-body h2 {
  font-size: 1.65rem !important;
}

.article-rich-body h3 {
  font-size: 1.35rem !important;
}

.article-rich-body p {
  margin-bottom: 22px !important;
  color: #334155 !important;
}

.article-rich-body ul,
.article-rich-body ol {
  margin: 0 0 24px 20px !important;
  padding: 0 !important;
  color: #334155 !important;
}

.article-rich-body li {
  margin-bottom: 10px !important;
  line-height: 1.7 !important;
}

.article-rich-body blockquote {
  border-left: 4px solid #00c6b5 !important;
  background: #F8FAFC !important;
  border-radius: 8px !important;
  padding: 20px 24px !important;
  margin: 28px 0 !important;
  font-style: italic !important;
  color: #0b1a28 !important;
  font-size: 1.12rem !important;
  line-height: 1.65 !important;
}

.article-rich-body strong {
  color: #0b1a28 !important;
  font-weight: 700 !important;
}

.blog-post-card:hover {
  transform: translateY(-3px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 12px 28px rgba(0, 198, 181, 0.12) !important;
}

.blog-post-card:hover img {
  transform: scale(1.03) !important;
}



/* ============================================================ */
/* MVO (MISSION, VISION, OUTCOME) 3-COLUMN CARDS                */
/* ============================================================ */
.mvo-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 26px !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
}

.mvo-card {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 18px !important;
  padding: 34px 28px !important;
  text-align: left !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02) !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.mvo-card:hover {
  transform: translateY(-3px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 10px 26px rgba(0, 198, 181, 0.12) !important;
}

.mvo-num {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #00a89a !important;
  margin-bottom: 12px !important;
  display: block !important;
  line-height: 1 !important;
}

.mvo-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: #0b1a28 !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
}

.mvo-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.93rem !important;
  line-height: 1.62 !important;
  color: #475569 !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  .mvo-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .mvo-card {
    padding: 24px 20px !important;
  }
}



/* ============================================================ */
/* SECTION 5: EXECUTIVE 4-STAGE PIPELINE GRID (NO AI BUBBLES)   */
/* ============================================================ */
.process-pipeline-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

.pipeline-card {
  background: #122336 !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 18px !important;
  padding: 26px 22px !important;
  text-align: left !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
  position: relative !important;
  box-sizing: border-box !important;
}

.pipeline-card:hover {
  transform: translateY(-3px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 14px 34px rgba(0, 198, 181, 0.15) !important;
}

.pipeline-card-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 14px !important;
}

.pipeline-num {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #00c6b5 !important;
  line-height: 1 !important;
}

.pipeline-kicker {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: #00c6b5 !important;
  background: rgba(0, 198, 181, 0.12) !important;
  border: 1px solid rgba(0, 198, 181, 0.25) !important;
  border-radius: 6px !important;
  padding: 3px 8px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.pipeline-h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
}

.pipeline-p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.58 !important;
  color: rgba(245, 245, 247, 0.75) !important;
  margin: 0 !important;
}

/* ============================================================ */
/* HERO SOCIAL PROOF BADGE: ZERO MOBILE OVERLAP FIX             */
/* ============================================================ */
@media (max-width: 991px) {
  .process-pipeline-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 767px) {
  .section-timeline-process {
    padding: 50px 0 55px !important;
  }
  .process-pipeline-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .pipeline-card {
    padding: 22px 18px !important;
    border-radius: 14px !important;
  }

  /* Hero Social Proof Badge Mobile Fit */
  .hero-social-badge {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 5px 12px 5px 5px !important;
    max-width: 95vw !important;
    box-sizing: border-box !important;
  }
  .avatar-stack {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }
  .avatar-stack .avatar-img {
    width: 25px !important;
    height: 25px !important;
    margin-left: -7px !important;
    border-width: 1.5px !important;
  }
  .avatar-stack .avatar-img:first-child {
    margin-left: 0 !important;
  }
  .hero-social-badge .badge-text {
    font-size: 0.75rem !important;
    line-height: 1.25 !important;
    text-align: left !important;
    white-space: normal !important;
  }
}



/* ============================================================ */
/* HERO & SECTION BADGES: 1 SINGLE LINE ON MOBILE               */
/* ============================================================ */
.section-badge,
.figma-micro-pill,
.pill-badge {
  white-space: nowrap !important;
  display: inline-block !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .section-badge,
  .figma-micro-pill,
  .pill-badge {
    font-size: clamp(0.62rem, 2.7vw, 0.72rem) !important;
    letter-spacing: 0.08em !important;
    padding: 4px 10px !important;
    white-space: nowrap !important;
    max-width: 96vw !important;
    box-sizing: border-box !important;
    margin-bottom: 12px !important;
  }
}



/* ============================================================ */
/* NO AI CAPSULE BUBBLES: CLEAN EXECUTIVE TEXT KICKERS          */
/* ============================================================ */
.home-cs-pill,
.cs-tag {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #00c6b5 !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: inline-block !important;
  margin-bottom: 8px !important;
  white-space: nowrap !important;
}

@media (max-width: 767px) {
  .home-cs-pill,
  .cs-tag {
    font-size: 0.72rem !important;
    letter-spacing: 0.06em !important;
    white-space: nowrap !important;
  }
  
  /* Optimize Case Study Card Padding on Mobile */
  .home-cs-card {
    padding: 22px 16px !important;
    border-radius: 14px !important;
  }

  .home-cs-metrics-row {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }

  .home-cs-chip {
    padding: 12px 6px !important;
    border-radius: 10px !important;
  }

  .home-cs-chip .chip-val {
    font-size: 1.15rem !important;
  }

  .home-cs-chip .chip-label {
    font-size: 0.65rem !important;
    line-height: 1.2 !important;
  }
}



/* ============================================================ */
/* CASE STUDIES RICH PORTFOLIO RESPONSIVE RULES                 */
/* ============================================================ */
@media (max-width: 900px) {
  .cs-strategy-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .cs-assets-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .cs-portfolio-block {
    padding: 30px 20px !important;
    border-radius: 18px !important;
  }
}



/* ============================================================ */
/* CASE STUDIES: 2-COLUMN COMPACT SPLIT & SINGLE SCREEN FIT     */
/* ============================================================ */
.cs-compact-ba {
  max-height: 480px !important;
  aspect-ratio: 16 / 11 !important;
}

@media (max-width: 991px) {
  .cs-split-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .cs-compact-ba {
    max-height: 400px !important;
  }
  .cs-assets-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .cs-portfolio-block {
    padding: 28px 18px !important;
    border-radius: 18px !important;
  }
}



/* ============================================================ */
/* CASE STUDIES: UNCUT 100% NATURAL HEIGHT SLIDER & CLEAN TEXT  */
/* ============================================================ */
.cs-uncut-ba {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  line-height: 0 !important;
  display: block !important;
}

.cs-uncut-ba .ba-after-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.cs-uncut-ba .ba-before-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 991px) {
  .cs-split-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .cs-assets-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .cs-portfolio-block {
    padding: 28px 18px !important;
    border-radius: 18px !important;
  }
}



/* ============================================================ */
/* CASE STUDIES: ASPECT-RATIO MATCHED SECTIONS & CARDS          */
/* ============================================================ */
@media (max-width: 767px) {
  .cs-featured-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}



/* ============================================================ */
/* CASE STUDIES: LIGHTBOX & MOBILE BROWSER BAR FIX              */
/* ============================================================ */
.cs-assets-grid img,
.cs-featured-cards-grid img {
  cursor: zoom-in !important;
  transition: transform 0.25s ease !important;
}

.cs-assets-grid img:hover,
.cs-featured-cards-grid img:hover {
  transform: scale(1.02) !important;
}

.browser-dots-bar {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 16px !important;
  background: #0f1c2b !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.browser-url-pill {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.75rem !important;
  color: #64748b !important;
  background: rgba(0, 0, 0, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 100px !important;
  padding: 4px 14px !important;
  margin-left: 6px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 480px !important;
}

@media (max-width: 767px) {
  .browser-dots-bar {
    padding: 6px 10px !important;
    gap: 6px !important;
  }
  .browser-url-pill {
    font-size: 0.66rem !important;
    max-width: 65% !important;
    padding: 3px 8px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .cs-banner-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }
}



/* ============================================================ */
/* SERVICES PAGE: 7 PILLARS GRID, SILENCE CALC & MATRIX TABLE   */
/* ============================================================ */
@media (max-width: 991px) {
  .seven-pillars-grid {
    grid-template-columns: 1fr !important;
  }
  #pillar07Full {
    grid-column: span 1 !important;
  }
  #pillar07Full > div {
    grid-template-columns: 1fr !important;
  }
  .silence-calc-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .diagnostic-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}



/* ============================================================ */
/* SERVICES PAGE BLUEPRINT: 6-GRID, MATRIX, CHAINS, REACTIONS   */
/* ============================================================ */
@media (max-width: 991px) {
  .services-grid-6 {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .system-chain-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .silence-calc-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .reactions-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}


/* ============================================================ */
/* HUMAN EXECUTIVE TEXT KICKERS (NO AI CAPSULE PILLS / BORDERS)  */
/* ============================================================ */
.section-badge,
.figma-micro-pill,
.home-cs-pill {
  display: inline-block !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: #00c6b5 !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
  box-shadow: none !important;
  max-width: 100% !important;
  line-height: 1.4 !important;
}

/* On light surfaces */
.services-pillars-section .section-badge,
.services-pillars-section .figma-micro-pill,
.services-comparison-section .figma-micro-pill,
.about-faq-section .figma-micro-pill,
.about-faq-section .section-badge {
  color: #00a89a !important;
}

.hero-micro-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(245, 245, 247, 0.75);
  font-size: 0.84rem;
  font-weight: 500;
}


/* ============================================================ */
/* TARGETED MOBILE UI & FORM POLISH (IOS ZOOM & TABLE SCROLL)   */
/* ============================================================ */
input, select, textarea {
  font-size: 16px !important; /* Prevents iOS Safari auto-zoom layout shift */
}

@media (max-width: 991px) {
  .mobile-table-scroll-hint {
    display: block !important;
  }
  .silence-calculator-card {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }
}

@media (max-width: 600px) {
  .global-cta-btn, 
  .btn-green-cta,
  .btn-outline-white {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .services-hero-cta-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
}


/* ============================================================ */
/* SECTION KICKER TEXT (PERFECTLY CENTERED, NEVER ABSOLUTE)     */
/* ============================================================ */
.section-kicker-text {
  position: static !important;
  display: inline-block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin: 0 auto 8px !important;
  text-align: center !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}


/* ============================================================ */
/* ULTRA-SMOOTH SLOW MARQUEE & MOBILE ZERO-CUT REVIEWS FIX      */
/* ============================================================ */
.reviews-marquee-container {
  width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
  padding: 15px 0 25px !important;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent) !important;
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent) !important;
}

.reviews-marquee-track {
  display: flex !important;
  gap: 20px !important;
  width: max-content !important;
  animation: marqueeSlowScroll 120s linear infinite !important; /* Calm, slow executive speed */
  will-change: transform !important;
}

.reviews-marquee-container:hover .reviews-marquee-track,
.reviews-marquee-container:active .reviews-marquee-track,
.reviews-marquee-track:hover,
.reviews-marquee-track:active {
  animation-play-state: paused !important; /* Pause on touch or hover for easy reading */
}

@keyframes marqueeSlowScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-review-card-original {
  width: 440px !important;
  max-width: 85vw !important;
  flex-shrink: 0 !important;
  background: #070e17 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  padding: 10px !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35) !important;
  cursor: pointer !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.marquee-review-card-original:hover {
  transform: translateY(-4px) !important;
  border-color: #00c6b5 !important;
  box-shadow: 0 16px 36px rgba(0, 198, 181, 0.15) !important;
}

.marquee-review-card-original img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 8px !important;
}

@media (max-width: 768px) {
  .reviews-marquee-container {
    mask-image: none !important; /* Prevent side gradient cut-off on mobile */
    -webkit-mask-image: none !important;
    padding: 10px 0 20px !important;
  }
  .reviews-marquee-track {
    gap: 14px !important;
    animation-duration: 90s !important; /* Ultra-slow smooth glide on mobile */
  }
  .marquee-review-card-original {
    width: 300px !important;
    max-width: 84vw !important;
    padding: 8px !important;
    border-radius: 12px !important;
  }
}


/* ============================================================ */
/* LEAD AUDIT BANNER COMPACT MOBILE OPTIMIZATION (ZERO EXCESS)  */
/* ============================================================ */
@media (max-width: 768px) {
  .section-lead-banner {
    padding: 35px 0 !important; /* Drastically reduced empty top/bottom gap */
  }
  .lead-banner-card {
    padding: 22px 16px !important; /* Maximum usable horizontal width */
    border-radius: 14px !important;
  }
  .lead-banner-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important; /* Compact gap between copy and form */
  }
  .lead-banner-h3 {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }
  .lead-banner-body {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
  }
  .lead-trust-items {
    margin-top: 14px !important;
    font-size: 0.75rem !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
  }
  .lead-input-group {
    margin-bottom: 12px !important;
  }
  .lead-input-group label {
    font-size: 0.8rem !important;
    margin-bottom: 4px !important;
  }
  .lead-input-group input {
    padding: 10px 14px !important;
    font-size: 16px !important;
  }
  .scarcity-subnote {
    font-size: 0.74rem !important;
    margin-top: 10px !important;
  }
}


/* ============================================================ */
/* EXECUTIVE BUTTON CORNERS (8PX STANDARD - NO 100PX PILLS)     */
/* ============================================================ */
.btn-green-cta,
.btn-ghost-cta,
.btn-outline-white,
.global-cta-btn,
.nav-cta-btn,
.btn-primary,
.btn-ghost,
.btn-outline-pill {
  border-radius: 8px !important;
}

.value-number-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(0, 198, 181, 0.1);
  border: 1px solid rgba(0, 198, 181, 0.3);
  border-radius: 6px;
  color: #00c6b5;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 12px;
}


/* ============================================================ */
/* HERO SOCIAL STRIP & CATEGORY KICKER (CLEAN BORDERLESS STYLE) */
/* ============================================================ */
.hero-social-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin-bottom: 16px !important;
}

.avatar-stack {
  display: flex !important;
  align-items: center !important;
}

.avatar-stack .avatar-img {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  border: 2px solid #0b1a28 !important;
  margin-right: -8px !important;
  object-fit: cover !important;
}

.hero-social-badge .badge-text {
  color: rgba(245, 245, 247, 0.85) !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

.category-label {
  display: inline-block !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: #00c6b5 !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
  box-shadow: none !important;
}


/* ============================================================ */
/* EXACT HERO SOCIAL PROOF BADGE & AVATAR STACK (RESTORED)      */
/* ============================================================ */
.hero-social-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 6px 16px 6px 8px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 100px !important;
  margin: 0 auto 20px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important;
}

.avatar-stack {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

.avatar-stack .avatar-img {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  border: 2px solid #0b1a28 !important;
  margin-left: -7px !important;
  object-fit: cover !important;
  display: inline-block !important;
}

.avatar-stack .avatar-img:first-child {
  margin-left: 0 !important;
}

.hero-social-badge .badge-text {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  color: #FFFFFF !important;
  white-space: nowrap !important;
}

.category-label {
  display: inline-block !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  color: #00c6b5 !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin-bottom: 14px !important;
}

@media (max-width: 768px) {
  .hero-social-badge {
    padding: 4px 12px 4px 6px !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
    max-width: 95vw !important;
  }
  .avatar-stack .avatar-img {
    width: 24px !important;
    height: 24px !important;
    margin-left: -6px !important;
  }
  .hero-social-badge .badge-text {
    font-size: 0.74rem !important;
  }
  .category-label {
    font-size: 0.68rem !important;
    letter-spacing: 0.06em !important;
  }
}


/* ============================================================ */
/* HERO H1 HEADLINE & HIGHLIGHT COLOR FIX (WHITE + GROWTH GREEN)*/
/* ============================================================ */
.hero-section .hero-h1,
h1.hero-h1 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(2rem, 3.8vw, 3.2rem) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.18 !important;
  letter-spacing: -0.03em !important;
  max-width: 960px !important;
  margin: 0 auto 16px !important;
  text-align: center !important;
}

.hero-section .hero-h1 .hero-green-text,
.hero-section .hero-green-text {
  color: #00c6b5 !important;
  display: inline-block !important;
}

.hero-section .hero-subtitle {
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
  color: rgba(245, 245, 247, 0.78) !important;
  max-width: 760px !important;
  margin: 0 auto 28px !important;
  text-align: center !important;
}


/* ============================================================ */
/* HERO H1 SINGLE LINE WHITE TITLE (ZERO WRAPPING ON DESKTOP)   */
/* ============================================================ */
.hero-section .hero-h1,
h1.hero-h1 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(1.6rem, 3.2vw, 2.75rem) !important; /* Calibrated to fit 1 line */
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.22 !important;
  letter-spacing: -0.025em !important;
  max-width: 1140px !important;
  margin: 0 auto 18px !important;
  text-align: center !important;
}

.hero-section .hero-white-line {
  display: block !important;
  color: #FFFFFF !important;
  margin-bottom: 2px !important;
}

.hero-section .hero-green-text {
  display: block !important;
  color: #00c6b5 !important;
}

@media (min-width: 992px) {
  .hero-section .hero-white-line {
    white-space: nowrap !important; /* Force strictly 1 line on desktop/laptops */
  }
}

@media (max-width: 768px) {
  .hero-section .hero-h1 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }
}


/* ============================================================ */
/* SECTION KICKER TEXT (HIGH CONTRAST BRIGHT TEAL)              */
/* ============================================================ */
.section-kicker-text {
  position: static !important;
  display: inline-block !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #00c6b5 !important; /* High contrast bright growth teal */
  margin: 0 0 10px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.bg-white .section-kicker-text,
.section-problem-split .section-kicker-text,
.services-pillars-section .section-kicker-text {
  color: #009688 !important;
}
