/* style.css */



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

html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

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

ul, ol {
  list-style: none;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section-sm {
  padding: var(--space-xl) 0;
}

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

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

.bg-navy {
  background-color: var(--dark-navy);
  color: var(--text-white);
}

.bg-subtle {
  background-color: var(--light-subtle);
}

/* --- Helper Utility Classes --- */
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Device Visibility Utilities */
.desktop-only {
  display: block;
}
.tablet-only,
.mobile-only {
  display: none;
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.section-header.text-left {
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: var(--primary-light);
  color: var(--primary);
  margin-bottom: 1rem;
}

.badge-dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.section-header.text-left .section-subtitle {
  margin-left: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 82, 255, 0.45);
}

.btn-secondary {
  background-color: var(--light-card);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--light-subtle);
  border-color: var(--border-subtle);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--dark-navy);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  background-color: var(--dark-navy-card);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* --- TOP NOTIFICATION BARS --- */
.zeb-notif-bar {
  width: 100%;
  min-height: 38px;
  padding: 0.4rem 1rem;
  margin: 0;
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  z-index: 1000;
  transition: all 0.3s ease;
}

.zeb-notif-bar.is-hidden {
  display: none !important;
}

.zeb-notif-bar.notif-blue {
  background-color: #0052FF !important;
  color: #FFFFFF !important;
}

.zeb-notif-bar.notif-dark,
.zeb-notif-bar.notif-brand {
  background-color: #0A0F1D !important;
  color: #F8FAFC !important;
  border-bottom: 1px solid #1E293B;
}

.announcement-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  opacity: 0.9;
}

.notif-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1200px;
  width: 100%;
  justify-content: center;
}

.notif-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notif-text svg {
  flex-shrink: 0;
}

.notif-cta-btn {
  background: #FFFFFF !important;
  color: #0052FF !important;
  padding: 0.25rem 0.9rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none !important;
}

.zeb-notif-bar.notif-blue .notif-cta-btn:hover {
  background: #E0E7FF !important;
  transform: translateY(-1px);
}

.zeb-notif-bar.notif-dark .notif-cta-btn,
.zeb-notif-bar.notif-brand .notif-cta-btn {
  background: #FFFFFF !important;
  color: #0A0F1D !important;
}

.zeb-notif-bar.notif-dark .notif-cta-btn:hover,
.zeb-notif-bar.notif-brand .notif-cta-btn:hover {
  background: #E2E8F0 !important;
}

.notif-close-btn {
  position: absolute !important;
  right: 1.25rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: none !important;
  border: none !important;
  color: currentColor !important;
  opacity: 0.7;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: opacity 0.2s ease;
}

.notif-close-btn:hover {
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .zeb-notif-bar {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    min-height: 34px;
  }
  .notif-content {
    gap: 0.5rem;
  }
  .notif-text {
    gap: 0.35rem;
  }
  .notif-text span:last-child {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    max-width: none !important;
  }
  .notif-cta-btn {
    font-size: 0.7rem;
    padding: 0.2rem 0.65rem;
  }
  .notif-close-btn {
    right: 0.5rem;
    font-size: 1rem;
  }
}

/* --- HEADER & NAVIGATION --- */
.site-header {
  position: fixed;
  top: 0 !important;
  left: 0;
  width: 100%;
  margin: 0 !important;
  z-index: var(--z-header);
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal), padding var(--transition-normal);
  padding: 0 0 0.85rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.site-header.transparent {
  background-color: rgba(255, 255, 255, 0.95);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  padding: 0 0 0.75rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
}

/* Brand Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark-navy);
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.3);
}

.logo-text {
  font-weight: 800;
  font-size: 1.35rem;
  color: #0A0F1D;
  transition: color 0.3s ease;
}

.logo-text span {
  color: var(--primary);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--text-dark);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link svg {
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown / Mega Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--light-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: var(--z-dropdown);
  min-width: 260px;
}

.mega-menu {
  width: 840px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-height: 82vh;
  overflow-y: auto;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--primary-light);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--light-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.dropdown-title {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--text-dark);
}

.dropdown-desc {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.4;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  padding: 0.5rem;
}

/* --- SHARED SITE HEADER ---
   Standard pages load this single component from /includes/header.html.
   The dedicated mlp and glp landing-page headers use .site-header-lp instead. */
.site-header {
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom: 1px solid rgba(203, 213, 225, 0.8);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
  isolation: isolate;
}

.site-header.transparent,
.site-header.scrolled {
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.98) !important;
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.site-header > .zeb-notif-bar {
  min-height: 42px;
  padding: 0.45rem 3.75rem;
  background: var(--primary) !important;
  color: #fff !important;
  border: 0;
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: 0.005em;
}

.site-header .notif-content {
  max-width: none;
  justify-content: center;
  gap: 1rem;
}

.site-header .notif-text {
  min-width: 0;
  gap: 0.55rem;
}

.site-header .announcement-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.92;
}

.site-header .notif-cta-btn {
  min-height: 26px;
  padding: 0.25rem 0.8rem;
  color: #10205f !important;
  background: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 2px 8px rgba(7, 21, 90, 0.15);
  font-size: 0.72rem;
  line-height: 1;
}

.site-header .notif-cta-btn:hover {
  background: #eef2ff !important;
  transform: translateY(-1px);
}

.site-header .notif-close-btn {
  right: 1.25rem !important;
  color: #fff !important;
  opacity: 0.72;
}

.site-header .header-inner {
  min-height: 68px;
  padding-top: 0;
  gap: 1.5rem;
}

.site-header .logo {
  flex: 0 0 auto;
  gap: 0.55rem;
}

.site-header .logo-icon {
  width: 39px;
  height: 39px;
  border-radius: 11px;
}

.site-header .logo-text {
  font-size: 1.32rem;
  line-height: 1;
}

.site-header .nav-menu {
  gap: clamp(1rem, 1.65vw, 1.75rem);
  margin-left: auto;
}

.site-header .nav-link {
  font-size: 0.83rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-header .header-actions {
  flex: 0 0 auto;
  gap: 0.85rem;
}

.site-header .btn-phone {
  min-height: 42px;
  padding: 0.58rem 1rem !important;
  border: 1px solid #dbe3ef !important;
  background: #fff;
  color: #172033;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);
  font-size: 0.79rem !important;
  font-weight: 700;
}

.site-header .contact-icon {
  width: 15px;
  height: 15px;
  margin-right: 0.4rem;
  fill: #1e3a8a;
  flex: 0 0 15px;
}

.site-header .header-actions .btn-primary {
  min-height: 42px;
  padding: 0.58rem 1.25rem !important;
  border-radius: 999px;
  font-size: 0.8rem !important;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 82, 255, 0.2);
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  flex: 0 0 16px;
  fill: none;
  stroke: #38bdf8;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-call-icon {
  fill: #38bdf8;
  stroke: none;
}

.footer-whatsapp-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: #131B2E !important;
  border: 1px solid #1E293B !important;
  color: #64748B !important;
  padding: 0 !important;
}

.footer-whatsapp-link svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor !important;
}

.social-row-lp a {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: #131B2E !important;
  border: 1px solid #1E293B !important;
  color: #64748B !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

@media (max-width: 1200px) {
  .site-header .nav-menu { gap: 0.9rem; }
  .site-header .nav-link { font-size: 0.77rem; }
  .site-header .btn-phone { padding: 0.58rem 0.8rem !important; }
}

/* Mobile Menu Header & Close Button */
.mobile-menu-header {
  display: none !important;
}

@media (max-width: 992px) {
  .mobile-menu-header {
    display: none !important;
  }
  .nav-menu.active .mobile-menu-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem 0.8rem 1.25rem;
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 0.75rem;
    width: 100%;
  }
  .mobile-menu-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .mobile-menu-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F1F5F9;
    border: none;
    color: #475569;
    font-size: 22px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
    padding: 0;
  }
  .mobile-menu-close:hover {
    background: #0052FF;
    color: #FFFFFF;
  }

  .site-header .header-inner { min-height: 64px; }
  .site-header .nav-menu { margin-left: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 2.5rem !important; }
  /* Mobile & Tablet Services Dropdown / Mega Menu overrides */
  .site-header .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0.5rem 0 0.5rem 1rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none !important;
    min-width: auto !important;
    width: 100% !important;
    background: transparent !important;
  }

  .site-header .nav-item.active-mobile .dropdown-menu {
    display: block !important;
  }

  .site-header .mega-menu {
    width: 100% !important;
    max-width: 100% !important;
    display: none !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    max-height: none !important;
    overflow-y: visible !important;
    padding: 0.5rem 0 0.5rem 0.5rem !important;
  }

  .site-header .nav-item.active-mobile .mega-menu {
    display: flex !important;
  }

  .site-header .dropdown-item {
    padding: 0.4rem 0.5rem !important;
    gap: 0.6rem !important;
    width: 100% !important;
    background: transparent !important;
  }
  
  .site-header .dropdown-item:hover {
    background: rgba(0, 82, 255, 0.05) !important;
  }

  .site-header .dropdown-desc {
    display: none !important;
  }

  .site-header .dropdown-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 1rem !important;
    background: rgba(0, 82, 255, 0.05) !important;
  }
  
  .site-header .dropdown-title {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
  }

}

@media (max-width: 768px) {
  .site-header > .zeb-notif-bar { min-height: auto; padding: 0.35rem 1.25rem !important; }
  .site-header .notif-content { justify-content: center; }
  .site-header .notif-text svg { display: none !important; }
  .site-header .notif-text span {
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.015em !important;
    max-width: 100% !important;
  }
  .site-header .notif-cta-btn { display: none; }
  .site-header .header-inner { min-height: 60px; gap: 0.75rem; }

  /* Portfolio Card Image contain on mobile (prevents cut-off logo/mockup) */
  .portfolio-img {
    height: 180px !important;
  }
  .portfolio-img img {
    object-fit: contain !important;
    background: #F8FAFC !important;
    padding: 0.5rem !important;
  }

  /* Global Website Footer Mobile layout */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem 1.5rem !important;
  }
  .footer-brand {
    grid-column: span 2 !important;
    text-align: left !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding-top: 1.5rem !important;
  }
}

/* --- HERO SECTION --- */
.hero {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-mascot-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.hero-mascot-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.08));
  animation: floatMascot 6s ease-in-out infinite;
}

@keyframes floatMascot {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--dark-navy);
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: var(--fs-xl);
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group img, .avatar-group .avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--primary);
}

.avatar-group img:first-child, .avatar-group .avatar-placeholder:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.trust-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

.hero-card-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  width: 100%;
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  position: relative;
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--border-light);
  animation: float 4s ease-in-out infinite alternate;
}

.floating-badge.top-right {
  top: -20px;
  right: -20px;
}

.floating-badge.bottom-left {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* --- CLIENT LOGOS --- */
.logos-strip {
  padding: 2.5rem 0;
  background-color: var(--light-card);
  border-bottom: 1px solid var(--border-light);
}

.logos-title {
  text-align: center;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.logos-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.logo-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-light);
  filter: none !important;
  opacity: 1 !important;
  transition: all var(--transition-fast);
}

.logo-item:hover {
  filter: none !important;
  opacity: 1 !important;
  color: var(--primary);
}

/* --- STATS SECTION --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: var(--light-card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-muted);
}

/* --- SERVICES GRID --- */
.services-grid, .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 15px;
}

.service-card {
  background: var(--light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible !important;
  transform-style: preserve-3d;
}

.service-card > span[style*="position: absolute"] {
  z-index: 100 !important;
  transform: translateX(-50%) translateZ(10px) !important;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 82, 255, 0.3);
}

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
  background: var(--primary);
  color: white;
}

.service-title {
  font-size: var(--fs-xl);
  margin-bottom: 0.85rem;
}

.service-desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link svg {
  transition: transform var(--transition-fast);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* --- INDUSTRIES GRID --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background: var(--light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  background: var(--primary-light);
}

.industry-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  background: var(--light-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.industry-card h3 {
  font-size: var(--fs-base);
  font-weight: 600;
}

/* --- PORTFOLIO & CASE STUDIES --- */
.portfolio-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  background: var(--light-card);
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-card {
  background: var(--light-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.portfolio-img {
  width: 100%;
  height: 240px;
  background-color: var(--light-subtle);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-category {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.portfolio-title {
  font-size: var(--fs-lg);
  margin-bottom: 0.5rem;
}

.portfolio-desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* --- CASE STUDY DETAIL CARDS --- */
.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.case-study-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--light-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: 3rem;
  align-items: center;
}

.case-study-card:nth-child(even) {
  direction: rtl;
}

.case-study-card:nth-child(even) .case-study-content {
  direction: ltr;
}

.case-study-card:nth-child(even) .case-study-media {
  direction: ltr;
}

.metrics-row {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.metric-item .val {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--primary);
}

.metric-item .lbl {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* --- PROCESS TIMELINE --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-card {
  background: var(--light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  position: relative;
}

.process-step {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.process-title {
  font-size: var(--fs-lg);
  margin-bottom: 0.5rem;
}

.process-desc {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* --- TESTIMONIALS & FAQ --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--accent-amber);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}

.client-name {
  font-weight: 700;
  font-size: var(--fs-sm);
}

.client-role {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* FAQ Accordion — 2-Column Left & Right Grid (Boostify.in Inspired) */
.faq-accordion {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  margin-bottom: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  height: fit-content;
}

.faq-item:hover {
  border-color: #CBD5E1;
  box-shadow: 0 6px 16px rgba(0, 82, 255, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0A0F1D;
  cursor: pointer;
  gap: 1rem;
  user-select: none;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: #F8FAFC;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #0052FF;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.faq-active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none !important;
  opacity: 0;
  padding: 0 1.4rem;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  transition: opacity 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0;
}

.faq-item.faq-active .faq-answer {
  display: block !important;
  opacity: 1;
  padding: 0.75rem 1.4rem 1.4rem 1.4rem;
  border-top: 1px solid #F1F5F9;
  animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
  .faq-accordion {
    grid-template-columns: 1fr;
  }
}

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--grad-dark);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 82, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: white;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1.25rem;
}

.cta-banner p {
  color: var(--text-light);
  font-size: var(--fs-lg);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--dark-navy);
  color: var(--text-light);
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--dark-navy-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #94A3B8;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-navy-card);
  border: 1px solid var(--dark-navy-border);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  font-size: var(--fs-base);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: var(--fs-sm);
  color: #94A3B8;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--dark-navy-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: #64748B;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: white;
}

/* --- FORMS & INPUTS --- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: var(--light-card);
  font-size: var(--fs-base);
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

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

/* --- TOAST & MODAL --- */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--dark-navy);
  color: white;
  box-shadow: var(--shadow-xl);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 29, 0.7);
  backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 600px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* Animations Helper Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: none !important;
}

/* --- DEVICE MOCKUPS CUSTOM STYLING --- */
.laptop-container {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.laptop-container:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.phone-container {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.phone-container:hover {
  transform: translateY(-8px) scale(1.03) rotate(1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3) !important;
}

.floating-badge-chart {
  animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* Adjustments for responsive viewports */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 4rem !important;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-card-preview {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .phone-container {
    right: -10px !important;
    width: 110px !important;
  }
  .floating-badge-chart {
    left: -10px !important;
    padding: 6px 10px !important;
  }
}

/* elevated visual system (marquee, glassmorphism, tabs, modals, spotlights) */

/* 1. Glassmorphism Header Fixed Scrolled */
.header-glass {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s ease !important;
}

/* 2. Infinite Continuous Marquee Ticker */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: inline-flex;
  gap: 4.5rem;
  align-items: center;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.marquee-item img {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-item:hover img {
  filter: none !important;
  opacity: 1 !important;
  transform: scale(1.06);
}

/* Ensure client logos remain colorful and vibrant across all pages */
.home-clients-marquee img,
.logos-strip .marquee-track img,
.logos-strip-lp .marquee-track img {
  filter: none !important;
  opacity: 1 !important;
}

/* 3. Hero Preview Interactive Tabs */
.hero-tab-nav {
  display: flex;
  gap: 0.4rem;
  background: rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(8px);
  padding: 0.3rem;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 1.25rem;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.hero-tab-btn {
  background: transparent;
  border: none;
  color: #475569;
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-tab-btn:hover {
  color: #0F172A;
  background: rgba(15, 23, 42, 0.04);
}

.hero-tab-btn.active {
  background: #0052FF;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.3);
}

/* 4. Mouse Spotlight Glow Card */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, -100px);
  left: var(--mouse-x, -100px);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.spotlight-card:hover::before {
  opacity: 1;
}

/* 5. Portfolio Quick-View Modal Lightbox */
.portfolio-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 15, 29, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1.5rem;
}

.portfolio-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.portfolio-modal-card {
  background: #0A0F1D;
  border: 1px solid #1E293B;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: white;
  position: relative;
}

.portfolio-modal-backdrop.active .portfolio-modal-card {
  transform: scale(1) translateY(0);
}

.portfolio-modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #1E293B;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.portfolio-modal-close:hover {
  background: #EF4444;
}

.portfolio-modal-body {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 640px) {
  .portfolio-modal-body {
    grid-template-columns: 1fr;
  }
}

/* 6. Floating Action Bar Bottom Sticky */
.floating-cta-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(10, 15, 29, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.75rem;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: white;
}

.floating-cta-bar.visible {
  transform: translateX(-50%) translateY(0);
}

/* landing pages layout grids */
.hero-grid-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.hero-services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stats-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.comparison-grid-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 950px;
  margin: 0 auto;
}

.capabilities-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-timeline-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.case-studies-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonials-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Laptop screen scrollable container */
.laptop-screen {
  overflow-y: auto !important;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.laptop-screen::-webkit-scrollbar {
  display: none !important; /* Chrome, Safari, Opera */
}

/* global whatsapp cta button overrides */
a[href*="wa.me"]:not(.footer-whatsapp-link):not(.btn-secondary):not(.btn):not(.floating-whatsapp):not(.social-btn):not(.cta-hotspot-whatsapp):not(.cta-btn-secondary):not(.mobile-sticky-whatsapp-btn):not(.mobile-sticky-call-btn) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.55rem !important;
  background-color: #FFFFFF !important;
  color: #1E293B !important;
  border: 1px solid #E2E8F0 !important;
  padding: 0.85rem 2rem !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  border-radius: 9999px !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
}

a[href*="wa.me"]:not(.footer-whatsapp-link):not(.btn-secondary):not(.btn):not(.floating-whatsapp):not(.social-btn):not(.cta-hotspot-whatsapp):not(.cta-btn-secondary):not(.mobile-sticky-whatsapp-btn):not(.mobile-sticky-call-btn):hover {
  background-color: #F8FAFC !important;
  border-color: #CBD5E1 !important;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08) !important;
  transform: translateY(-2px) !important;
}

a[href*="wa.me"]:not(.footer-whatsapp-link):not(.btn-secondary):not(.btn):not(.floating-whatsapp):not(.social-btn):not(.cta-hotspot-whatsapp):not(.cta-btn-secondary):not(.mobile-sticky-whatsapp-btn):not(.mobile-sticky-call-btn) svg {
  width: 18px !important;
  height: 18px !important;
  fill: #25D366 !important;
  color: #25D366 !important;
  margin: 0 !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
}

/* global mobile peeking mascot overrides (all pages) */
@media (max-width: 768px) {
  .hero-grid,
  .hero-lp-grid {
    position: relative !important;
    display: block !important;
    text-align: left !important;
  }

  .hero-content,
  .hero-content-left {
    max-width: 100% !important;
    position: relative !important;
    z-index: 5 !important;
    text-align: left !important;
  }

  .hero-content h1,
  .hero-content-left h1,
  .hero-content p,
  .hero-content-left p,
  .hero-content .badge,
  .hero-content-left .badge {
    max-width: 70% !important;
  }

  /* Left-align buttons and trust elements on mobile */
  .hero-buttons {
    justify-content: flex-start !important;
  }
  .hero-trust,
  .founder-trust-group {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .hero-mascot-container,
  .hero-card-preview {
    position: absolute !important;
    right: -30px !important;
    left: auto !important;
    top: 140px !important;
    width: 260px !important;
    height: auto !important;
    min-height: auto !important;
    z-index: 100 !important;
    pointer-events: none !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-end !important;
  }

  .hero-mascot-image {
    max-width: 100% !important;
    max-height: 380px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* Mobile view: display phone button as a stylish circular call icon */
  .site-header .btn-phone,
  .site-header-lp .btn-phone-lp,
  .header-actions .btn-phone {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    min-width: 38px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: #EEF2FF !important;
    border: 1px solid #BFDBFE !important;
    color: #0052FF !important;
    box-shadow: 0 2px 6px rgba(0, 82, 255, 0.12) !important;
    flex-shrink: 0 !important;
  }
  .site-header .btn-phone span,
  .site-header-lp .btn-phone-lp span,
  .header-actions .btn-phone span,
  .site-header .btn-phone [data-config="phoneNumber"],
  .site-header-lp .phone-text-lp {
    display: none !important;
  }
  .site-header .btn-phone svg,
  .site-header-lp .btn-phone-lp svg,
  .header-actions .btn-phone svg {
    width: 18px !important;
    height: 18px !important;
    fill: #0052FF !important;
    color: #0052FF !important;
    margin: 0 !important;
  }

  /* Hide specific words on mobile to make buttons fit */
  .hide-mobile-inline {
    display: none !important;
  }

  /* Shrink logo image on mobile to leave enough room for header buttons */
  .site-header .logo img,
  .site-header-lp .logo img,
  .header-lp-inner .logo img {
    height: 36px !important;
    width: auto !important;
  }

  /* Shrink book button size on mobile to prevent text clipping */
  .site-header .header-actions .btn-primary,
  .site-header-lp .btn-header-lp {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.72rem !important;
    min-height: 36px !important;
  }

  @media (max-width: 480px) {
    .site-header .header-actions .btn-primary,
    .site-header-lp .btn-header-lp {
      padding: 0.35rem 0.65rem !important;
      font-size: 0.68rem !important;
    }
  }
}

@media (max-width: 640px) {
  .hero-mascot-container,
  .hero-card-preview {
    right: -25px !important;
    top: 110px !important;
    width: 210px !important;
  }
  .hero-content h1,
  .hero-content-left h1,
  .hero-content p,
  .hero-content-left p,
  .hero-content .badge,
  .hero-content-left .badge {
    max-width: 70% !important;
  }
}

@media (max-width: 480px) {
  .hero-mascot-container,
  .hero-card-preview {
    right: -20px !important;
    top: 130px !important;
    width: 190px !important;
  }
  .hero-content h1,
  .hero-content-left h1,
  .hero-content p,
  .hero-content-left p,
  .hero-content .badge,
  .hero-content-left .badge {
    max-width: 68% !important;
  }
}

/* =========================================================
   ZEBsite — FINAL CTA + REALITY SECTION OVERRIDES
   Paste this at the VERY BOTTOM of your main CSS file.
   No HTML changes required.
   ========================================================= */

.cta-banner-lp {
  position: relative !important;
  width: calc(100% - 64px) !important;
  max-width: 1460px !important;
  margin: 5.5rem auto 5rem !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

.cta-banner-card-wrapper {
  position: relative !important;
  width: 100% !important;
  height: 420px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  overflow: hidden !important;
  border-radius: 30px !important;
  background: linear-gradient(135deg, #0052FF 0%, #0040D0 50%, #002299 100%) !important;
  box-shadow: 0 24px 55px rgba(0, 58, 210, 0.24) !important;
}

/* Mascot Column */
.cta-mascot-part {
  flex: 0 0 45% !important;
  width: 45% !important;
  height: 100% !important;
  position: relative !important;
  background-image: url('/assets/images/mascots/zebra-cta-mascot.png') !important;
  background-size: contain !important;
  background-position: left bottom !important;
  background-repeat: no-repeat !important;
  overflow: visible !important;
  z-index: 1 !important;
}

/* Content Column */
.cta-content-part {
  position: relative !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  padding: 42px 58px 38px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  color: #ffffff !important;
  text-align: left !important;
  z-index: 2 !important;
}

/* Button style overrides for wa.me */
a[href*="wa.me"]:not(.footer-whatsapp-link):not(.btn-outline-white):not(.btn-outline):not(.btn-secondary):not(.btn):not(.floating-whatsapp):not(.social-btn):not(.cta-hotspot-whatsapp):not(.cta-btn-secondary):not(.mobile-sticky-whatsapp-btn):not(.mobile-sticky-call-btn) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.55rem !important;
  background-color: #FFFFFF !important;
  color: #1E293B !important;
  border: 1px solid #E2E8F0 !important;
  padding: 0.85rem 2rem !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  border-radius: 9999px !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
}

a[href*="wa.me"]:not(.footer-whatsapp-link):not(.btn-outline-white):not(.btn-outline):not(.btn-secondary):not(.btn):not(.floating-whatsapp):not(.social-btn):not(.cta-hotspot-whatsapp):not(.cta-btn-secondary):not(.mobile-sticky-whatsapp-btn):not(.mobile-sticky-call-btn):hover {
  background-color: #F8FAFC !important;
  border-color: #CBD5E1 !important;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08) !important;
  transform: translateY(-2px) !important;
}

a[href*="wa.me"]:not(.footer-whatsapp-link):not(.btn-outline-white):not(.btn-outline):not(.btn-secondary):not(.btn):not(.floating-whatsapp):not(.social-btn):not(.cta-hotspot-whatsapp):not(.cta-btn-secondary):not(.mobile-sticky-whatsapp-btn):not(.mobile-sticky-call-btn) svg {
  width: 18px !important;
  height: 18px !important;
  fill: #25D366 !important;
  color: #25D366 !important;
  margin: 0 !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
}

/* Tablet (769px - 1180px) */
@media (min-width: 769px) and (max-width: 1180px) {
  .cta-banner-lp {
    width: calc(100% - 40px) !important;
    max-width: none !important;
  }
  .cta-banner-card-wrapper {
    height: 380px !important;
  }
  .cta-mascot-part {
    flex: 0 0 44% !important;
    width: 44% !important;
  }
  .cta-content-part {
    padding: 30px 40px 30px 20px !important;
  }
}

/* Tablet Small (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .cta-banner-card-wrapper {
    height: 360px !important;
  }
  .cta-mascot-part {
    flex: 0 0 44% !important;
    width: 44% !important;
  }
  .cta-content-part {
    padding: 25px 30px 25px 20px !important;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .cta-banner-lp {
    width: calc(100% - 28px) !important;
    max-width: none !important;
    margin: 4.5rem auto 3.5rem !important;
  }
  .cta-banner-card-wrapper {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    border-radius: 26px !important;
    padding: 2.2rem 1.25rem 2rem !important;
  }
  .cta-content-part {
    display: contents !important;
  }
  .cta-eyebrow {
    order: 1 !important;
    margin-bottom: 0.75rem !important;
  }
  .cta-title {
    order: 2 !important;
    font-size: 1.9rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.75rem !important;
    text-align: center !important;
    width: 100% !important;
  }
  .cta-subtitle {
    order: 3 !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    margin: 0 auto 1rem !important;
    text-align: center !important;
  }
  .cta-mascot-part {
    display: block !important;
    order: 4 !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    height: 230px !important;
    background-image: url('/assets/images/mascots/zebra-cta-mascot.png') !important;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    margin: 0.5rem 0 1.25rem !important;
  }
  .cta-buttons-flex {
    order: 5 !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.75rem !important;
    margin-bottom: 1.25rem !important;
  }
  .cta-buttons-flex a {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .cta-trust-row {
    order: 6 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    align-items: center !important;
    width: 100% !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding-top: 1rem !important;
  }
  .cta-avatar-stack {
    margin-left: 8px !important;
  }
  .cta-trust-text {
    text-align: center !important;
    border-left: none !important;
    padding-left: 0 !important;
  }
}

/* =========================================================
   OUR STORY SECTION — Exact 1:1 Pixel-Perfect UI (Matches Image 1 & 2)
   ========================================================= */
.our-story-section {
  padding: 4.5rem 0;
  background: var(--bg-white, #FFFFFF);
  position: relative;
  overflow: hidden;
}

.our-story-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.05);
  padding: 0;
  overflow: hidden;
}

.our-story-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: stretch;
  min-height: 520px;
}

.our-story-mascot-col {
  background: #F4F8FF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 1.25rem;
}

.story-mascot-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-mascot-img {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 16px;
}

.our-story-content-col {
  padding: 2.75rem 3.25rem 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  background: #FFFFFF;
}

.story-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0052FF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.story-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.95rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.story-heading-highlight {
  color: #0052FF;
  position: relative;
  display: inline-block;
  border-bottom: 3.5px solid #0052FF;
  padding-bottom: 2px;
}

.story-paragraphs p {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 0.85rem;
}

.story-paragraphs p:last-child {
  margin-bottom: 1.15rem;
}

.story-paragraphs p strong {
  color: #0F172A;
}

.story-callout-box {
  background: #F0F6FF;
  border: 1px solid #DBEAFE;
  border-left: 3.5px solid #0052FF;
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.story-callout-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #0052FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-callout-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #1E293B;
  line-height: 1.45;
}

.story-callout-text strong,
.text-blue-accent {
  color: #0052FF;
  font-weight: 700;
}

.story-features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.story-feature-pill {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all 0.2s ease;
}

.story-feature-pill:hover {
  border-color: #CBD5E1;
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.06);
}

.story-feat-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #0052FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-feat-text strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.story-feat-text span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #64748B;
}

.story-bottom-banner {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.story-bottom-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.story-trophy-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #0052FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-trophy-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #1E293B;
  line-height: 1.4;
}

.story-trophy-text span {
  display: block;
  color: #475569;
}

.story-trophy-text strong {
  color: #0052FF;
  font-weight: 800;
}

.story-bottom-brand {
  flex-shrink: 0;
}

.story-brand-badge {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 0.35rem 0.85rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
}

.story-brand-badge .brand-zeb {
  color: #0F172A;
}

.story-brand-badge .brand-dot {
  color: #0052FF;
}

.story-mobile-cta {
  display: none;
}

/* Tablet & Mobile responsive (<1024px) */
@media (max-width: 1024px) {
  .our-story-grid {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .our-story-mascot-col {
    width: 100% !important;
    height: auto !important;
    min-height: 280px !important;
    padding: 1.5rem 1rem 0.5rem !important;
    border-radius: 24px 24px 0 0 !important;
  }
  .story-mascot-img {
    width: 100% !important;
    max-width: 380px !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
  }
  .our-story-content-col {
    width: 100% !important;
    padding: 2rem 1.5rem 2rem !important;
  }
}

/* Mobile Screens (<576px) — Pixel-Perfect match to Image 4 */
@media (max-width: 576px) {
  .our-story-section {
    padding: 2rem 0 !important;
  }
  .our-story-card {
    border-radius: 20px !important;
    margin: 0 !important;
  }
  .our-story-grid {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .our-story-mascot-col {
    width: 100% !important;
    height: auto !important;
    min-height: 220px !important;
    padding: 1.25rem 0.75rem 0.25rem !important;
    border-radius: 20px 20px 0 0 !important;
  }
  .story-mascot-img {
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    margin: 0 auto !important;
  }
  .our-story-content-col {
    padding: 1.25rem 1rem 1.5rem !important;
    width: 100% !important;
  }
  .story-eyebrow {
    font-size: 0.78rem !important;
    margin-bottom: 0.5rem !important;
  }
  .story-heading {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.85rem !important;
  }
  .story-paragraphs p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.65rem !important;
  }
  .story-callout-box {
    padding: 0.75rem 0.85rem !important;
    gap: 0.65rem !important;
    margin-bottom: 0.75rem !important;
  }
  .story-callout-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
  }
  .story-callout-text {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }
  .story-features-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    margin-bottom: 0.75rem !important;
    gap: 0 !important;
  }
  .story-feature-pill {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0.85rem 0.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.4rem !important;
  }
  .story-feature-pill:first-child {
    border-right: 1px solid #E2E8F0 !important;
  }
  .story-feat-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }
  .story-feat-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .story-feat-text strong {
    font-size: 0.82rem !important;
    line-height: 1.2 !important;
  }
  .story-feat-text span {
    font-size: 0.72rem !important;
  }
  .story-bottom-banner {
    padding: 0.65rem 0.75rem !important;
    gap: 0.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  .story-trophy-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
  }
  .story-trophy-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .story-trophy-text {
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
  }
  .story-brand-badge {
    font-size: 0.8rem !important;
    padding: 0.25rem 0.5rem !important;
  }
  .story-mobile-cta {
    display: block !important;
    margin-top: 0.85rem !important;
  }
  .btn-story-action {
    display: flex !important;
    width: 100% !important;
    height: 48px !important;
    background: #0052FF !important;
    color: #FFFFFF !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    border-radius: 12px !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.3) !important;
  }
}

/* =========================================================
   SMALL PROJECT BIG IDEA BANNER SECTION
   ========================================================= */
.small-project-banner-section {
  padding: 1rem 0 3.5rem;
  background: var(--bg-white, #FFFFFF);
  position: relative;
}

.small-project-banner-card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 82, 255, 0.18);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(0, 82, 255, 0.15);
  background: #0052FF;
  display: block;
}

.small-project-banner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(0, 82, 255, 0.28);
}

.small-project-banner-card picture {
  display: block;
  width: 100%;
}

.small-project-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .small-project-banner-section {
    padding: 0.75rem 0 2rem;
  }
  .small-project-banner-card {
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 82, 255, 0.15);
  }
}



/* PEOPLE FIRST. TECHNOLOGY SECOND. (2-column grid on mobile) */
@media (max-width: 768px) {
  .tech-showcase-right {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }
}


/* =========================================================
   PRECISION MOBILE ENHANCEMENTS: HERO ACTION ROW & TECH GRID
   ========================================================= */
@media (max-width: 768px) {
  /* 1. HERO ACTION ROW: Button smaller + Avatars & Trust shifted BESIDES in one WOW row */
  .hero-action-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.65rem !important;
    width: 100% !important;
    margin: 1.5rem 0 1.25rem !important;
    flex-wrap: nowrap !important;
  }
  .hero-action-row .btn-primary-blue {
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    padding: 0.62rem 0.95rem !important;
    border-radius: 12px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    background: #0052FF !important;
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.28) !important;
    letter-spacing: -0.01em !important;
    margin: 0 !important;
  }
  .hero-action-row .founder-trust-group {
    display: flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }
  .hero-action-row .avatar-stack {
    display: flex !important;
    align-items: center !important;
  }
  .hero-action-row .avatar-circle {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    border: 2px solid #FFFFFF !important;
    margin-right: -10px !important;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12) !important;
    overflow: hidden !important;
    background: #FFFFFF !important;
    flex-shrink: 0 !important;
  }
  .hero-action-row .founder-trust-text {
    font-size: 0.74rem !important;
    line-height: 1.15 !important;
    color: #475569 !important;
    text-align: left !important;
    margin-left: 14px !important;
    white-space: nowrap !important;
  }
  .hero-action-row .founder-trust-text strong {
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    display: block !important;
  }

  /* 2. PEOPLE FIRST. TECHNOLOGY SECOND. 2-Column Precision Grid (No Horizontal Cutoff) */
  .tech-showcase-card {
    padding: 1.5rem 1rem !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    border-radius: 20px !important;
  }
  .tech-showcase-split {
    width: 100% !important;
  }
  .tech-showcase-right {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.55rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .tech-pill-card {
    padding: 0.65rem 0.55rem !important;
    gap: 0.45rem !important;
    min-width: 0 !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    border: 1.5px solid #E2E8F0 !important;
    background: #FFFFFF !important;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02) !important;
  }
  .tech-pill-card:hover {
    border-color: #0052FF !important;
  }
  .tech-pill-icon-wrapper {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
  }
  .tech-pill-icon-wrapper svg {
    width: 18px !important;
    height: 18px !important;
  }
  .tech-pill-info {
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .tech-pill-info strong {
    font-size: 0.72rem !important;
    line-height: 1.2 !important;
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: #0F172A !important;
  }
  .tech-pill-tag {
    font-size: 0.6rem !important;
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-top: 2px !important;
  }
}


/* =========================================================
   ENHANCED ARCHITECTURE BADGES & BANNER POLISH
   ========================================================= */
.tech-architecture-pills-light {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0.5rem !important;
  width: 100% !important;
  margin: 1.25rem 0 1.5rem !important;
  box-sizing: border-box !important;
}

.arch-badge-light {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 14px !important;
  padding: 0.65rem 0.35rem !important;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
  transition: all 0.25s ease !important;
}

.arch-badge-light:hover {
  border-color: #0052FF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.12) !important;
}

.arch-badge-icon {
  font-size: 1.15rem !important;
  line-height: 1 !important;
  margin-bottom: 0.35rem !important;
  display: block !important;
}

.arch-badge-text {
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  color: #1E293B !important;
  line-height: 1.25 !important;
  display: block !important;
}

@media (max-width: 768px) {
  .tech-architecture-pills-light {
    gap: 0.35rem !important;
  }
  .arch-badge-light {
    padding: 0.5rem 0.25rem !important;
    border-radius: 12px !important;
  }
  .arch-badge-icon {
    font-size: 1rem !important;
    margin-bottom: 0.2rem !important;
  }
  .arch-badge-text {
    font-size: 0.62rem !important;
  }
  
  /* Banners Polish */
  .small-project-banner-card,
  .raksha-bandhan-banner-card {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0, 82, 255, 0.12) !important;
    border: 1px solid rgba(0, 82, 255, 0.12) !important;
  }
  .small-project-banner-img,
  .raksha-bandhan-banner-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 16px !important;
  }
}


/* =========================================================
   WOW BANNER POLISH: SMALL PROJECT & RAKSHA BANDHAN
   ========================================================= */
.small-project-banner-section,
.raksha-bandhan-banner-section {
  padding: 1.5rem 0 2rem !important;
  position: relative !important;
  background: transparent !important;
  width: 100% !important;
}

.small-project-banner-card,
.raksha-bandhan-banner-card {
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 36px rgba(0, 82, 255, 0.16) !important;
  border: 1px solid rgba(0, 82, 255, 0.18) !important;
  background: #0052FF !important;
  cursor: pointer !important;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: block !important;
  box-sizing: border-box !important;
}

.small-project-banner-card:hover,
.raksha-bandhan-banner-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 48px rgba(0, 82, 255, 0.26) !important;
  border-color: rgba(0, 82, 255, 0.35) !important;
}

.small-project-banner-img,
.raksha-bandhan-banner-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 19px !important;
  object-fit: contain !important;
  background: #0052FF !important;
}

@media (max-width: 768px) {
  .small-project-banner-section,
  .raksha-bandhan-banner-section {
    padding: 1rem 0 1.5rem !important;
  }
  .small-project-banner-card,
  .raksha-bandhan-banner-card {
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(0, 82, 255, 0.14) !important;
  }
  .small-project-banner-img,
  .raksha-bandhan-banner-img {
    border-radius: 15px !important;
  }
}


/* =========================================================
   MOBILE HERO ACTION ROW & FULL-BLEED RAKSHA BANDHAN BANNER
   ========================================================= */
@media (max-width: 768px) {
  /* Fix AK PM RS 1000+ Founders cutting off on mobile */
  .hero-action-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.9rem !important;
    width: 100% !important;
    margin: 1.5rem 0 1.25rem !important;
    box-sizing: border-box !important;
  }
  .hero-action-row .btn-primary-blue {
    width: 100% !important;
    max-width: 320px !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.3) !important;
  }
  .hero-action-row .founder-trust-group {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .hero-action-row .avatar-stack {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }
  .hero-action-row .avatar-circle {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    border: 2px solid #FFFFFF !important;
    margin-right: -10px !important;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12) !important;
    background: #FFFFFF !important;
  }
  .hero-action-row .founder-trust-text {
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
    color: #475569 !important;
    text-align: left !important;
    margin-left: 14px !important;
    white-space: nowrap !important;
  }
  .hero-action-row .founder-trust-text strong {
    font-size: 0.86rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    display: block !important;
  }

  /* Raksha Bandhan banner touch both side borders on mobile (Full-bleed edge-to-edge) */
  .raksha-bandhan-banner-section {
    padding: 1.25rem 0 !important;
    overflow: hidden !important;
    width: 100% !important;
  }
  .raksha-bandhan-banner-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .raksha-bandhan-banner-card {
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.14) !important;
  }
  .raksha-bandhan-banner-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 0 !important;
  }
}


/* =========================================================
   PERFECT MOBILE ALIGNMENT & FULL-BLEED BANNERS (TOUCH BORDERS)
   ========================================================= */
@media (max-width: 768px) {
  /* Hero Action Row: Button + Trust side-by-side without cutting */
  .hero-action-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem !important;
    width: 100% !important;
    margin: 1.25rem 0 !important;
    box-sizing: border-box !important;
  }
  .hero-action-row .btn-primary-blue {
    padding: 0.55rem 0.75rem !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    border-radius: 10px !important;
    box-shadow: 0 3px 10px rgba(0, 82, 255, 0.25) !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-action-row .founder-trust-group {
    display: flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
    margin: 0 !important;
  }
  .hero-action-row .avatar-stack {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }
  .hero-action-row .avatar-circle {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    border: 1.5px solid #FFFFFF !important;
    margin-right: -8px !important;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.1) !important;
    background: #FFFFFF !important;
  }
  .hero-action-row .founder-trust-text {
    font-size: 0.65rem !important;
    line-height: 1.15 !important;
    margin-left: 8px !important;
    white-space: nowrap !important;
    color: #475569 !important;
  }
  .hero-action-row .founder-trust-text strong {
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    display: block !important;
  }

  /* Both Banners Touch Both Side Borders on Mobile (Full Bleed) */
  .small-project-banner-section,
  .raksha-bandhan-banner-section {
    padding: 1rem 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    background: transparent !important;
  }
  .small-project-banner-section .container,
  .raksha-bandhan-banner-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .small-project-banner-card,
  .raksha-bandhan-banner-card {
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid rgba(0, 82, 255, 0.15) !important;
    border-bottom: 1px solid rgba(0, 82, 255, 0.15) !important;
    box-shadow: 0 4px 16px rgba(0, 82, 255, 0.12) !important;
  }
  .small-project-banner-img,
  .raksha-bandhan-banner-img {
    border-radius: 0 !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

/* Ensure all auto popups are completely hidden by default */
.smart-popup-overlay {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.smart-popup-overlay.active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
}


/* Desktop/Mobile button text switcher */
.btn-text-desktop { display: inline !important; }
.btn-text-mobile { display: none !important; }

@media (max-width: 768px) {
  .btn-text-desktop { display: none !important; }
  .btn-text-mobile { display: inline !important; }

  /* Hero row side-by-side beside button */
  .hero-action-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem !important;
    width: 100% !important;
    margin: 1.25rem 0 1rem !important;
    box-sizing: border-box !important;
  }
  .hero-action-row .btn-primary-blue {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    padding: 0.52rem 0.68rem !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    border-radius: 10px !important;
    box-shadow: 0 3px 10px rgba(0, 82, 255, 0.25) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-action-row .founder-trust-group {
    display: flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    width: auto !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
  }
  .hero-action-row .avatar-stack {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }
  .hero-action-row .avatar-circle {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    border: 1.5px solid #FFFFFF !important;
    margin-right: -7px !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1) !important;
    background: #FFFFFF !important;
  }
  .hero-action-row .founder-trust-text {
    font-size: 0.64rem !important;
    line-height: 1.15 !important;
    margin-left: 8px !important;
    white-space: nowrap !important;
    color: #475569 !important;
  }
  .hero-action-row .founder-trust-text strong {
    font-size: 0.70rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    display: block !important;
  }

  /* Full-bleed banners touching both side borders */
  .small-project-banner-section,
  .raksha-bandhan-banner-section {
    padding: 0.85rem 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    background: transparent !important;
  }
  .small-project-banner-section .container,
  .raksha-bandhan-banner-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .small-project-banner-card,
  .raksha-bandhan-banner-card {
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.12) !important;
  }
  .small-project-banner-img,
  .raksha-bandhan-banner-img {
    border-radius: 0 !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}


/* Small Project White Box Container */
.small-project-white-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 24px !important;
  padding: 1.5rem !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .small-project-white-card {
    padding: 1rem !important;
    border-radius: 20px !important;
  }
  .small-project-banner-card {
    border-radius: 14px !important;
  }
  .small-project-banner-img {
    border-radius: 14px !important;
  }
}


/* =========================================================
   TECH SHOWCASE & ARCHITECTURE BADGES POLISH
   ========================================================= */
.tech-architecture-pills-light {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0.75rem !important;
  margin: 1.5rem 0 2rem !important;
  width: 100% !important;
}

.arch-badge-light {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 82, 255, 0.18) !important;
  border-radius: 12px !important;
  padding: 0.65rem 0.85rem !important;
  text-align: center !important;
  box-shadow: 0 2px 8px rgba(0, 82, 255, 0.04) !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.arch-badge-text {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #0F172A !important;
  line-height: 1.25 !important;
  text-align: center !important;
}

/* Fix languages not completely visible: NO truncation, full visibility */
.tech-pill-info {
  min-width: 0 !important;
  overflow: visible !important;
}

.tech-pill-info strong {
  font-size: 0.76rem !important;
  line-height: 1.25 !important;
  display: block !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  color: #0F172A !important;
  word-break: normal !important;
}

.tech-pill-tag {
  font-size: 0.62rem !important;
  display: block !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  margin-top: 2px !important;
  line-height: 1.2 !important;
}

@media (max-width: 768px) {
  .tech-architecture-pills-light {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.4rem !important;
    margin: 1.25rem 0 1.5rem !important;
  }
  .arch-badge-light {
    padding: 0.6rem 0.35rem !important;
    border-radius: 10px !important;
  }
  .arch-badge-text {
    font-size: 0.68rem !important;
    font-weight: 700 !important;
  }
  .tech-pill-card {
    padding: 0.6rem 0.5rem !important;
    gap: 0.5rem !important;
    align-items: center !important;
  }
  .tech-pill-info strong {
    font-size: 0.70rem !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
  .tech-pill-tag {
    font-size: 0.58rem !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
}

/* --- TOP ANNOUNCEMENT TICKER (RIGHT TO LEFT SMOOTH MOTION) --- */
.zeb-notif-bar {
  width: 100% !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  line-height: 38px !important;
  padding: 0 !important;
  margin: 0 !important;
  background-color: #0052FF !important;
  color: #FFFFFF !important;
  position: relative !important;
  z-index: 1000 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
}

.zeb-notif-bar.is-hidden,
.zeb-notif-bar[data-notif-hidden="true"],
.zeb-notif-bar[style*="display: none"],
.zeb-notif-bar[style*="display:none"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

.notif-ticker-container,
.notif-marquee-wrapper {
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  padding-right: 38px !important;
  box-sizing: border-box !important;
  mask-image: linear-gradient(to right, transparent, black 14px, black calc(100% - 44px), transparent calc(100% - 34px));
  -webkit-mask-image: linear-gradient(to right, transparent, black 14px, black calc(100% - 44px), transparent calc(100% - 34px));
}

.notif-ticker-track,
.notif-marquee-track {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  width: max-content !important;
  padding-left: 0 !important;
  animation: notifSeamlessScroll 28s linear infinite !important;
  will-change: transform !important;
}

.notif-ticker-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 1.25rem !important;
  padding-right: 4rem !important;
  flex-shrink: 0 !important;
}

.notif-ticker-container:hover .notif-ticker-track,
.notif-ticker-container:active .notif-ticker-track,
.notif-ticker-track:hover,
.notif-ticker-track:active,
.notif-marquee-wrapper:hover .notif-marquee-track,
.notif-marquee-wrapper:active .notif-marquee-track {
  animation-play-state: paused !important;
}

@keyframes notifSeamlessScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.notif-ticker-badge {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #FFFFFF !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  padding: 0.15rem 0.5rem !important;
  border-radius: 9999px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  display: inline-flex !important;
  align-items: center !important;
  line-height: normal !important;
  flex-shrink: 0 !important;
}

.notif-ticker-text {
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  letter-spacing: -0.01em !important;
}

.notif-ticker-cta {
  background: #FFFFFF !important;
  color: #0052FF !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  padding: 0.2rem 0.75rem !important;
  border-radius: 9999px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12) !important;
  transition: transform 0.2s ease, background 0.2s ease !important;
  line-height: normal !important;
}

.notif-ticker-cta:hover {
  background: #EFF6FF !important;
  transform: translateY(-1px) !important;
}

.notif-close-btn {
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: none !important;
  border: none !important;
  color: #FFFFFF !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
  cursor: pointer !important;
  z-index: 10 !important;
  padding: 4px !important;
  opacity: 0.85 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.notif-close-btn:hover {
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .notif-ticker-container,
  .notif-marquee-wrapper {
    padding-right: 32px !important;
  }
  .notif-ticker-track,
  .notif-marquee-track {
    animation-duration: 32s !important;
  }
  .notif-ticker-item {
    gap: 0.75rem !important;
    padding-right: 3rem !important;
  }
  .notif-ticker-badge {
    font-size: 0.62rem !important;
    padding: 0.12rem 0.45rem !important;
  }
  .notif-ticker-text {
    font-size: 0.76rem !important;
  }
  .notif-ticker-cta {
    font-size: 0.70rem !important;
    padding: 0.16rem 0.6rem !important;
  }
  .notif-close-btn {
    right: 6px !important;
    font-size: 1.2rem !important;
  }
}

/* --- NEWS LOGOS MARQUEE (HOMEPAGE & ALL PAGES) --- */
.news-logos-marquee {
  display: flex !important;
  overflow: hidden !important;
  user-select: none !important;
  gap: 1.5rem !important;
  padding: 1.25rem 0 !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  position: relative !important;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent) !important;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent) !important;
}

.news-logos-slide {
  display: flex !important;
  flex-shrink: 0 !important;
  align-items: center !important;
  gap: 1.5rem !important;
  animation: scrollNewsMarquee 35s linear infinite !important;
}

.news-logos-marquee:hover .news-logos-slide {
  animation-play-state: paused !important;
}

.news-logo-card {
  width: 190px !important;
  min-height: 80px !important;
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 16px !important;
  padding: 1rem 1.25rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02) !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease !important;
}

.news-logo-card:hover {
  border-color: #0052FF !important;
  box-shadow: 0 10px 24px rgba(0, 82, 255, 0.12) !important;
  transform: translateY(-2px) !important;
}

.news-logo-card img {
  height: 38px !important;
  width: auto !important;
  max-width: 100% !important;
  max-height: 48px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

@keyframes scrollNewsMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 1.5rem)); }
}

@media (max-width: 768px) {
  .news-logos-marquee {
    gap: 0.75rem !important;
    padding: 0.75rem 0 !important;
  }
  .news-logos-slide {
    gap: 0.75rem !important;
    animation-duration: 25s !important;
  }
  .news-logo-card {
    width: 130px !important;
    min-height: 60px !important;
    padding: 0.5rem !important;
    border-radius: 12px !important;
  }
  .news-logo-card img {
    height: 26px !important;
    max-height: 32px !important;
  }
}

/* --- BANNER FULLBLEED & CARDS --- */
.banner-fullbleed-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.small-project-banner-card,
.festival-banner-card,
.raksha-bandhan-banner-card {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 82, 255, 0.18);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.small-project-banner-card:hover,
.festival-banner-card:hover,
.raksha-bandhan-banner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 82, 255, 0.24);
}

.small-project-banner-img,
.festival-banner-img,
.raksha-bandhan-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

@media (max-width: 768px) {
  .small-project-banner-section,
  .festival-banner-section,
  .raksha-bandhan-banner-section {
    padding: 0.75rem 0 !important;
  }
  .banner-fullbleed-wrapper {
    padding: 0 0.5rem !important;
  }
  .small-project-banner-card,
  .festival-banner-card,
  .raksha-bandhan-banner-card {
    border-radius: 14px !important;
  }
  .small-project-banner-img,
  .festival-banner-img,
  .raksha-bandhan-banner-img {
    border-radius: 14px !important;
  }
}

/* ==========================================================================
   ANTI-THEFT: IMAGE DOWNLOAD LOCK & SCREENSHOT / PRINT SHIELD
   ========================================================================== */
img, picture, svg, video, canvas,
.festival-banner-img, .small-project-banner-img, .hero-mascot-image {
  -webkit-user-drag: none !important;
  -khtml-user-drag: none !important;
  -moz-user-drag: none !important;
  -o-user-drag: none !important;
  user-drag: none !important;
  -webkit-touch-callout: none !important; /* Disables iOS long-press save menu */
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.festival-banner-card, .small-project-banner-card, .hero-mascot-container {
  position: relative;
  user-select: none;
  -webkit-touch-callout: none;
}

.hero-mascot-container::after,
.festival-banner-card::after,
.small-project-banner-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 5;
  pointer-events: auto;
  -webkit-user-drag: none;
  user-drag: none;
}


/* Print / Save-as-PDF Protection */
@media print {
  html, body {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

/* =========================================================
   UNIVERSAL SHARED COMPONENTS: WTB GRID, THE REALITY, 
   WHY FOUNDERS CHOOSE ZEBSITE, PEOPLE FIRST TECH SHOWCASE,
   AND MOTIVATIONAL BANNERS
   ========================================================= */

/* Full-bleed banners wrapper */
.banner-fullbleed-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .small-project-banner-section,
  .festival-banner-section,
  .raksha-bandhan-banner-section {
    padding: 0.75rem 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    background: transparent !important;
  }
  .banner-fullbleed-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .small-project-banner-card,
  .festival-banner-card,
  .raksha-bandhan-banner-card {
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid rgba(0, 82, 255, 0.15) !important;
    box-shadow: none !important;
  }
  .small-project-banner-img,
  .festival-banner-img {
    border-radius: 0 !important;
  }
}

/* 1. What You Are Trying To Build (6-Card Grid) */
.wtb-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.wtb-card-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  cursor: pointer;
}
.wtb-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 82, 255, 0.12);
  border-color: #0052FF;
}
.wtb-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}
.wtb-card-item:hover .wtb-icon-box {
  background: #0052FF;
}
.wtb-card-item:hover .wtb-icon-box svg {
  stroke: #FFFFFF !important;
}
.wtb-card-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.35;
  margin-bottom: 1rem;
}
.wtb-arrow-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #0052FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s ease;
}
.wtb-card-item:hover .wtb-arrow-circle {
  background: #0052FF;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .wtb-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 640px) {
  .wtb-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .wtb-card-item {
    padding: 1.15rem 0.75rem;
  }
  .wtb-card-label {
    font-size: 0.85rem;
  }
}

/* 2. The Reality: Most Projects Go Wrong & Not Too Expensive */
.project-lessons-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
}
.wrong-lessons-card {
  background: #FFFFFF;
  border: 1px solid #FEE2E2;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.04);
}
.wrong-lessons-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}
.wrong-bullets-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.wrong-bullets-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #B91C1C;
}
.wrong-bullet-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #EF4444;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.right-pricing-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.horizontal-flow-container {
  position: relative !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  margin: 2.5rem 0 2rem !important;
  width: 100% !important;
}
.horizontal-flow-line {
  position: absolute !important;
  top: 22px !important;
  left: 8% !important;
  right: 8% !important;
  height: 1px !important;
  border-top: 1.5px dashed rgba(226, 232, 240, 0.9) !important;
  z-index: 1 !important;
}
.flow-step-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 18% !important;
  position: relative !important;
  z-index: 2 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.flow-step-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  border: 2px solid #0052FF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.08) !important;
  margin-bottom: 0.85rem !important;
  flex-shrink: 0 !important;
}
.flow-step-label {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
}
.flow-step-label strong {
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
}
.flow-step-label span {
  font-size: 0.65rem !important;
  color: #64748B !important;
  line-height: 1.25 !important;
}

@media (max-width: 1200px) {
  .horizontal-flow-container {
    flex-direction: column !important;
    gap: 1.25rem !important;
    margin: 1.5rem 0 !important;
  }
  .horizontal-flow-line {
    display: none !important;
  }
  .flow-step-item {
    flex-direction: row !important;
    width: 100% !important;
    text-align: left !important;
    gap: 1rem !important;
  }
  .flow-step-icon {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 1024px) {
  .project-lessons-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 640px) {
  .wrong-lessons-split {
    grid-template-columns: 1fr;
  }
  .wrong-lessons-illustration {
    display: none;
  }
  .wrong-lessons-card,
  .right-pricing-card {
    padding: 1.75rem 1.25rem;
  }
}

/* 3. Why Founders Choose Zebsite (Comparison Matrix) */
.why-grid-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
  align-items: start;
}
.why-points-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}
.why-points-list li {
  font-size: 1.02rem;
  color: #334155;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.why-points-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0052FF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.comparison-table-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  background: #FFFFFF;
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: #FFFFFF;
}
.comp-table th {
  padding: 1.1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  color: #FFFFFF;
}
.comp-table th.th-zebsite-head {
  background: #0052FF;
  width: 44%;
}
.comp-table th.th-vs-head {
  background: #0F172A;
  width: 12%;
  font-size: 0.95rem;
}
.comp-table th.th-agency-head {
  background: #0F172A;
  width: 44%;
}
.comp-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  border-bottom: 1px solid #F1F5F9;
  vertical-align: middle;
}
.comp-table tr:last-child td {
  border-bottom: none;
}
.comp-table td.td-zebsite-col {
  background: rgba(0, 82, 255, 0.025);
  font-weight: 700;
  color: #0F172A;
}
.comp-table td.td-vs-col {
  text-align: center;
  background: #FFFFFF;
}
.comp-table td.td-agency-col {
  background: #FFFFFF;
  color: #475569;
  font-weight: 500;
}
.cell-content-inline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.blue-check-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0052FF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}
.mid-arrow-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #CBD5E1;
  color: #64748B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: #FFFFFF;
}
.red-cross-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  background: #F8FAFC;
}
.comp-table tr:nth-child(even) td {
  background: #FAFBFC;
}
@media (max-width: 1024px) {
  .why-grid-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 640px) {
  .comp-table th, .comp-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.82rem;
  }
  .cell-content-inline {
    gap: 0.45rem;
  }
  .blue-check-circle, .red-cross-circle, .mid-arrow-circle {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
  }
}

/* 4. People First Technology Second Showcase */
.tech-showcase-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 28px;
  padding: 3.25rem 3rem;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.05);
  margin-top: 1rem;
  position: relative;
}
.tech-showcase-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}
.tech-glow-pill-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #EEF2FF;
  border: 1px solid #BFDBFE;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0052FF;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 82, 255, 0.6);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(0, 82, 255, 0);
  }
}
.tech-pulse-dot-blue {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0052FF;
  box-shadow: 0 0 8px #0052FF;
  animation: pulseDot 2s infinite ease-in-out;
}
.tech-showcase-title {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.text-blue-highlight {
  color: #0052FF;
  border-bottom: 3.5px solid #0052FF;
  border-radius: 2px;
  padding-bottom: 2px;
  display: inline-block;
}
.tech-showcase-desc {
  font-size: 0.98rem;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.tech-stack-showcase-pills {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #F1F5F9;
  width: 100%;
}
.stack-pills-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748B;
  margin-bottom: 0.75rem;
}
.stack-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0052FF;
}
.stack-pills-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.stack-pill-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 0.38rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1E293B;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02);
}
.stack-pill-chip:hover {
  background: #EFF6FF;
  border-color: #BFDBFE;
  color: #0052FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.1);
}
.stack-pill-chip svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.tech-architecture-pills-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: 100%;
}
.arch-badge-light {
  background: #FFFFFF;
  border: 1px solid rgba(0, 82, 255, 0.18);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 82, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.arch-badge-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.25;
}
.tech-showcase-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.tech-pill-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.tech-pill-card:hover {
  transform: translateY(-3px);
  border-color: #0052FF;
  box-shadow: 0 10px 25px rgba(0, 82, 255, 0.12);
  background: #F8FAFC;
}
.tech-pill-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tech-pill-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.tech-pill-info strong {
  font-size: 0.92rem;
  color: #0F172A;
  font-weight: 800;
}
.tech-pill-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
}
.tag-cyan { background: #ECFEFF; color: #0891B2; }
.tag-green { background: #F0FDF4; color: #16A34A; }
.tag-yellow { background: #FEFCE8; color: #CA8A04; }
.tag-sky { background: #F0F9FF; color: #0284C7; }
.tag-blue { background: #EFF6FF; color: #2563EB; }
.tag-emerald { background: #ECFDF5; color: #059669; }
.tag-orange { background: #FFF7ED; color: #EA580C; }
.tag-purple { background: #FAF5FF; color: #7C3AED; }

@media (max-width: 1024px) {
  .tech-showcase-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 640px) {
  .tech-showcase-card {
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }
  .tech-architecture-pills-light {
    grid-template-columns: 1fr;
  }
  .tech-showcase-right {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
}

/* =========================================================
   SITE-WIDE FIXED STICKY MOBILE ACTION BAR
   ========================================================= */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-top: 1px solid rgba(0, 82, 255, 0.14) !important;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 9999 !important;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08) !important;
    align-items: center !important;
    gap: 0.75rem !important;
    box-sizing: border-box !important;
  }

  body {
    padding-bottom: 75px !important;
  }

  .floating-widgets-container {
    display: none !important;
  }
}

.mobile-sticky-cta .mobile-sticky-whatsapp-btn,
.mobile-sticky-cta .mobile-sticky-call-btn,
.mobile-sticky-whatsapp-btn,
.mobile-sticky-call-btn {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.mobile-sticky-cta .mobile-sticky-whatsapp-btn:hover,
.mobile-sticky-cta .mobile-sticky-whatsapp-btn:active,
.mobile-sticky-cta .mobile-sticky-call-btn:hover,
.mobile-sticky-cta .mobile-sticky-call-btn:active,
.mobile-sticky-whatsapp-btn:hover,
.mobile-sticky-whatsapp-btn:active,
.mobile-sticky-call-btn:hover,
.mobile-sticky-call-btn:active {
  background: linear-gradient(135deg, #22BF5B 0%, #17A34E 100%) !important;
  color: #FFFFFF !important;
  transform: scale(0.96) !important;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.32) !important;
}

.mobile-sticky-cta .mobile-sticky-whatsapp-btn svg,
.mobile-sticky-cta .mobile-sticky-call-btn svg,
.mobile-sticky-whatsapp-btn svg,
.mobile-sticky-call-btn svg {
  display: block !important;
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  min-height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  fill: #FFFFFF !important;
  color: #FFFFFF !important;
  stroke: none !important;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15)) !important;
  flex-shrink: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.mobile-sticky-cta .mobile-sticky-whatsapp-btn svg path,
.mobile-sticky-cta .mobile-sticky-call-btn svg path,
.mobile-sticky-whatsapp-btn svg path,
.mobile-sticky-call-btn svg path {
  fill: #FFFFFF !important;
}

.mobile-sticky-book-btn {
  flex: 1;
  height: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 1rem;
  background: linear-gradient(135deg, #0052FF 0%, #0045D8 100%);
  color: #FFFFFF !important;
  border-radius: 50px;
  text-decoration: none !important;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.mobile-sticky-book-btn:hover,
.mobile-sticky-book-btn:active {
  background: linear-gradient(135deg, #0045D8 0%, #0036A8 100%);
  color: #FFFFFF !important;
  transform: scale(0.98);
  box-shadow: 0 2px 10px rgba(0, 82, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mobile-book-text {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.mobile-book-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.mobile-sticky-book-btn:hover .mobile-book-arrow,
.mobile-sticky-book-btn:active .mobile-book-arrow {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(2px);
}

.mobile-book-arrow svg {
  width: 14px;
  height: 14px;
  stroke: #FFFFFF;
  stroke-width: 2.5;
}

.mobile-sticky-book-btn .cta-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.mobile-sticky-book-btn:hover .cta-arrow {
  transform: translateX(3px);
}

@media (max-width: 360px) {
  .mobile-sticky-cta {
    padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom, 8px)) !important;
    gap: 0.5rem !important;
  }
  .mobile-sticky-whatsapp-btn,
  .mobile-sticky-call-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  .mobile-sticky-book-btn {
    height: 44px;
    min-height: 44px;
    padding: 0 0.65rem 0 0.85rem;
  }
  .mobile-book-text {
    font-size: 0.8rem;
  }
}



