/* ===========================
   GrowthPixel - Main Stylesheet
   Colors: Navy #1B2C6B | Orange #F47B20 | White #FFFFFF
   Fonts: Manrope + Inter
=========================== */

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

:root {
  --navy: #1B2C6B;
  --navy-dark: #111d4a;
  --navy-light: #2a3f8f;
  --orange: #F47B20;
  --orange-dark: #d4660f;
  --orange-light: #ff9a45;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #f0f2f8;
  --gray: #6b7280;
  --dark-text: #0f1729;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(27,44,107,0.10);
  --shadow-lg: 0 12px 48px rgba(27,44,107,0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
  cursor: default;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}


/* =========================
   GROWTHPIXEL NAVBAR
   Replace all old navbar CSS with this only
========================= */

.gp-navbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 44, 107, 0.08);
  box-shadow: 0 2px 16px rgba(27, 44, 107, 0.06);
  padding: 10px 0;
}

.gp-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gp-navbar .navbar-brand img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.gp-navbar .navbar-toggler {
  border: 0 !important;
  padding: 6px 8px;
  box-shadow: none !important;
  outline: none !important;
}

.gp-navbar .navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

.gp-navbar .navbar-toggler-icon {
  width: 1.4em;
  height: 1.4em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%2827,44,107,0.9%29' stroke-width='2.4' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.gp-navbar .navbar-nav {
  align-items: center;
}

.gp-navbar .nav-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy) !important;
  padding: 9px 14px !important;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.2;
  background: transparent;
}

.gp-navbar .nav-link:hover,
.gp-navbar .nav-link.active {
  color: var(--orange) !important;
  background: rgba(244, 123, 32, 0.08);
}

.gp-navbar .dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
}

/* =========================
   DESKTOP DROPDOWN
========================= */
@media (min-width: 992px) {
  .gp-navbar .dropdown {
    position: relative;
  }

  .gp-navbar .dropdown-menu {
    display: block !important;
    position: absolute;
    top: calc(70% + 10px);
    left: 0;
    min-width: 280px;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(27, 44, 107, 0.14);
    z-index: 1300;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .gp-navbar .dropdown:hover > .dropdown-menu,
  .gp-navbar .dropdown:focus-within > .dropdown-menu,
  .gp-navbar .dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .gp-navbar .dropdown-item {
    border-radius: 12px;
    padding: 11px 14px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy);
    white-space: normal;
    transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
  }

  .gp-navbar .dropdown-item:hover,
  .gp-navbar .dropdown-item:focus,
  .gp-navbar .dropdown-item.active {
    background: rgba(244, 123, 32, 0.1);
    color: var(--orange);
    padding-left: 18px;
  }

  .gp-navbar .btn-nav-cta {
    padding: 10px 22px !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--orange), #ff9a45);
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(244, 123, 32, 0.28);
  }

  .gp-navbar .btn-nav-cta:hover {
    background: linear-gradient(135deg, #d9660a, var(--orange)) !important;
    color: #fff !important;
  }
}

/* =========================
   MOBILE DROPDOWN
========================= */
@media (max-width: 991.98px) {
  .gp-navbar {
    padding: 8px 0;
  }

  .gp-navbar .navbar-brand img {
    height: 38px;
  }

  .gp-navbar .navbar-collapse {
    position: static !important;
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(27, 44, 107, 0.09);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(27, 44, 107, 0.12);
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .gp-navbar .navbar-nav {
    width: 100%;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0;
    margin: 0;
  }

  .gp-navbar .navbar-nav .nav-item {
    width: 100%;
    list-style: none;
  }

  .gp-navbar .nav-link {
    width: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 13px 14px !important;
    margin: 3px 0 !important;
    border-radius: 12px !important;
    font-size: 0.97rem !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    background: transparent !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  .gp-navbar .nav-link:hover,
  .gp-navbar .nav-link:active,
  .gp-navbar .nav-link.active {
    background: rgba(244, 123, 32, 0.08) !important;
    color: var(--orange) !important;
  }

  .gp-navbar .dropdown-toggle::after {
    margin-left: auto;
    transition: transform 0.25s ease;
  }

  .gp-navbar .dropdown.show > .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .gp-navbar .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin: 4px 0 8px !important;
    padding: 8px !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: rgba(27, 44, 107, 0.04) !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .gp-navbar .dropdown-item {
    display: block;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    white-space: normal;
    text-decoration: none;
  }

  .gp-navbar .dropdown-item:hover,
  .gp-navbar .dropdown-item:active,
  .gp-navbar .dropdown-item:focus {
    background: rgba(244, 123, 32, 0.1) !important;
    color: var(--orange) !important;
  }

  .gp-navbar .nav-item.ms-2 {
    margin-left: 0 !important;
    margin-top: 8px !important;
    width: 100%;
  }

  .gp-navbar .btn-nav-cta,
  .gp-navbar .nav-link.btn-nav-cta,
  .gp-navbar a.btn-nav-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 14px 16px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, var(--orange), #ff9a45) !important;
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 0.97rem !important;
    text-align: center !important;
    text-decoration: none !important;
    box-shadow: 0 8px 22px rgba(244, 123, 32, 0.32) !important;
    border: none !important;
    line-height: 1.2 !important;
  }

  .gp-navbar .btn-nav-cta:hover,
  .gp-navbar .btn-nav-cta:active,
  .gp-navbar .btn-nav-cta:focus {
    background: linear-gradient(135deg, #d9660a, var(--orange)) !important;
    color: #fff !important;
    text-decoration: none !important;
  }
}

@media (max-width: 575.98px) {
  .gp-navbar .navbar-brand img {
    height: 34px;
  }

  .gp-navbar .navbar-collapse {
    padding: 10px;
    border-radius: 16px;
    max-height: 70vh;
  }

  .gp-navbar .nav-link {
    font-size: 0.93rem !important;
    padding: 11px 12px !important;
  }

  .gp-navbar .dropdown-item {
    font-size: 0.88rem;
    padding: 10px 10px;
  }

  .gp-navbar .btn-nav-cta {
    font-size: 0.93rem !important;
    padding: 12px 14px !important;
  }
}






/* Mobile-only stability fix */
@media (max-width: 991px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
  }

  * {
    box-sizing: border-box;
  }

  img, video, iframe, svg {
    max-width: 100%;
    height: auto;
  }

  .container, .container-fluid, section, header, footer, main {
    max-width: 100%;
    overflow-x: hidden;
  }
}
/* =========================
   STAT BAR - CLEAN FIX
========================= */
/* =========================
   STAT BAR - STABLE MOBILE FIX
========================= */

.stats-bar {
  background: #020617;
  padding: 70px 0;
  overflow: hidden;
  position: relative;
}

.stat-item {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 28px 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(27,44,107,0.95), rgba(2,6,23,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  transform: none !important;
  animation: none !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  will-change: auto;
}

/* Remove all decorative layers that can cause mobile paint issues */
.stat-item::before,
.stat-item::after {
  content: none !important;
  display: none !important;
}

/* Stop any hover movement */
.stat-item:hover {
  transform: none !important;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  border-color: rgba(244,123,32,0.22);
}

.stat-item .num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  text-shadow: none;
  transform: none !important;
}

.stat-item .num span:last-child {
  color: var(--orange);
  text-shadow: none;
}

.stat-item .desc {
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transform: none !important;
}

/* Make sure any child elements never inherit motion */
.stat-item *,
.stat-item *::before,
.stat-item *::after {
  animation: none !important;
  transform: none !important;
  filter: none !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Mobile layout and spacing */
@media (max-width: 768px) {
  .stats-bar {
    padding: 44px 0;
  }

  .stats-bar .row {
    row-gap: 14px;
  }

  .stat-item {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .stat-item .num {
    font-size: 1.7rem;
  }

  .stat-item .desc {
    font-size: 0.78rem;
    margin-top: 8px;
  }
}

/* Extra small phones */
@media (max-width: 380px) {
  .stats-bar {
    padding: 36px 0;
  }

  .stat-item {
    padding: 18px 12px;
  }

  .stat-item .num {
    font-size: 1.5rem;
  }

  .stat-item .desc {
    font-size: 0.74rem;
  }
}







/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }


/* ===== BUTTONS ===== */
.btn-primary-gp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  border: 2px solid var(--orange);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(244,123,32,0.35);
}

.btn-primary-gp:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(244,123,32,0.45);
}

.btn-primary-gp:active { transform: translateY(-1px); }

.btn-outline-gp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  border: 2px solid var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-gp:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(27,44,107,0.25);
}

.btn-white-gp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white-gp:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,123,32,0.1);
  color: var(--orange);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(244,123,32,0.25);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #EEF2FF 50%, #FFF7ED 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

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

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27,44,107,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,123,32,0.1);
  border: 1px solid rgba(244,123,32,0.3);
  color: #0f1729;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--dark-text);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .highlight { color: var(--orange); }
.hero-title .navy-text { color: var(--navy); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

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

.hero-stat .value {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.hero-stat .value span { color: var(--orange); }

.hero-stat .label {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  padding: 20px;
}

.hero-card-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  position: relative;
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}

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

.hero-card-stat {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 20px;
  position: absolute;
  animation: floatCardAlt 4s ease-in-out infinite;
}

.hero-card-stat.top-right { top: 0; right: -20px; z-index: 3; }
.hero-card-stat.bottom-left { bottom: 20px; left: -20px; z-index: 3; }

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

.stat-label { font-size: 0.72rem; color: var(--gray); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.stat-value { font-family: 'Manrope', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--navy); }
.stat-up { font-size: 0.78rem; font-weight: 700; color: #22c55e; }

/* ===== TICKER ===== */
.service-ticker {
  width: 100%;
  overflow: hidden;
  background: #27459a;
  white-space: nowrap;
}

.service-ticker .ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  padding: 14px 24px;
  will-change: transform;
  animation: tickerScroll 28s linear infinite;
}

.service-ticker .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  flex-shrink: 0;
  position: relative;
  padding-left: 18px;
}

.service-ticker .ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff7a1a;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.service-ticker:hover .ticker-track {
  animation-play-state: paused;
}

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

@media (max-width: 768px) {
  .service-ticker .ticker-track {
    gap: 28px;
    padding: 12px 16px;
    animation-duration: 22s;
  }

  .service-ticker .ticker-item {
    font-size: 14px;
    padding-left: 14px;
  }

  .service-ticker .ticker-dot {
    width: 7px;
    height: 7px;
  }
} 


/* ===== SERVICES SECTION ===== */
.services-section { padding: 100px 0; background: var(--white); }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,123,32,0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(244,123,32,0.15), rgba(27,44,107,0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .service-icon .icon-emoji {
  filter: brightness(10);
}

.service-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-link:hover { gap: 10px; color: var(--orange-dark); }

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(244,123,32,0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.why-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(244,123,32,0.15);
  border: 1px solid rgba(244,123,32,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s;
}

.why-feature:hover .why-feature-icon {
  background: var(--orange);
  transform: scale(1.1);
}

.why-feature h5 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.why-feature p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.6;
}

.why-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.why-metric {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}

.why-metric:hover {
  background: rgba(244,123,32,0.12);
  border-color: rgba(244,123,32,0.3);
  transform: translateY(-4px);
}

.why-metric .m-value {
  font-family: 'Manrope', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
}

.why-metric .m-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ===== PROCESS SECTION ===== */
.process-section { padding: 100px 0; background: var(--off-white); }

.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  border: 1.5px solid var(--border);
  transition: all 0.35s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.step-number {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(244,123,32,0.12);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
  transition: color 0.35s;
}

.process-step:hover .step-number { color: rgba(244,123,32,0.25); }

.step-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.process-step h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ===== INDUSTRIES ===== */
.industries-section { padding: 80px 0; background: var(--white); }

.industry-ticker {
  display: flex;
  gap: 12px;
  overflow: hidden;
  position: relative;
}

.industry-ticker::before, .industry-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}

.industry-ticker::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.industry-ticker::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.ticker-track {
  display: flex;
  gap: 12px;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}
.industry-ticker:hover .industry-tag {
  animation-play-state: paused;
}

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

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.3s;
  flex-shrink: 0;
}

.industry-tag:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--off-white); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1.5px solid var(--border);
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Manrope', sans-serif;
  font-size: 6rem;
  color: rgba(244,123,32,0.12);
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,123,32,0.3);
}

.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 20px; }

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 0.95rem;
}

.author-role { font-size: 0.82rem; color: var(--gray); }

/* ===== PRODUCTS SECTION ===== */
.products-section { padding: 100px 0; background: var(--white); }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,123,32,0.3);
}

.product-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.product-img::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(244,123,32,0.2);
  border-radius: 50%;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 50px;
}

.product-body { padding: 24px; }

.product-body h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }

/* ===== BLOG SECTION ===== */
.blog-section { padding: 100px 0; background: var(--off-white); }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  height: 100%;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,123,32,0.25);
}

.blog-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.blog-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--light-gray), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.blog-tag {
  display: inline-block;
  background: rgba(244,123,32,0.1);
  color: var(--orange);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-body h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  flex: 1;
}

.blog-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(244,123,32,0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-section h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.cta-section h2 span { color: var(--orange); }

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
}

/* ===== CONTACT SECTION ===== */
.contact-section { padding: 100px 0; background: var(--white); }

.contact-info-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 280px; height: 280px;
  background: rgba(244,123,32,0.15);
  border-radius: 50%;
}

.contact-info-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info-card p { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 36px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(244,123,32,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item-text { color: rgba(255,255,255,0.85); font-size: 0.92rem; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 48px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}

.form-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--dark-text);
  transition: all 0.2s;
  background: var(--off-white);
}

.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244,123,32,0.12);
  background: var(--white);
  outline: none;
}

/* ===== FAQ SECTION ===== */
.faq-section { padding: 80px 0; background: var(--off-white); }

.accordion-button {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius) !important;
  padding: 20px 24px;
}

.accordion-button:not(.collapsed) {
  color: var(--orange);
  background: rgba(244,123,32,0.05);
  box-shadow: none;
}

.accordion-button::after {
  filter: hue-rotate(200deg);
}

.accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-body {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  background: var(--white);
  padding: 0 24px 24px;
}





/* ===== FOOTER ===== */
/* =========================
   GROWTHPIXEL FOOTER
========================= */

.gp-footer {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 70px 0 24px;
  position: relative;
  overflow: hidden;
}

.gp-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'%3E%3Cpath d='M0 30h120M0 60h120M0 90h120M30 0v120M60 0v120M90 0v120'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}

.gp-footer .container {
  position: relative;
  z-index: 1;
}

.gp-footer-brand {
  display: inline-block;
  margin-bottom: 18px;
}

.gp-footer-logo {
  max-width: 185px;
  width: 100%;
  height: auto;
  display: block;
}

.gp-footer-about {
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 320px;
}

.gp-footer-subtitle,
.gp-footer-title {
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.gp-footer-subtitle::after,
.gp-footer-title::after {
  content: "";
  display: block;
  width: 68px;
  height: 3px;
  background: var(--orange);
  margin-top: 8px;
  border-radius: 999px;
}

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

.gp-footer-links li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

.gp-footer-links li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0;
  color: #b7d52b;
  font-size: 0.75rem;
  line-height: 1.6;
}

.gp-footer-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.gp-footer-links a:hover {
  color: #F47B20;
  padding-left: 2px;
}

.gp-footer-social-wrap {
  margin-top: 6px;
}

.gp-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gp-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(183,213,43,0.35);
  transition: all 0.2s ease;
  background: rgba(255,255,255,0.03);
}

.gp-social-links a:hover {
  background: #F47B20;
  color: var(--navy);
  transform: translateY(-2px);
}

.gp-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.86);
  font-size: 1rem;
}

.gp-contact-item i {
  width: 22px;
  text-align: center;
  color: #b7d52b;
}

.gp-contact-item a,
.gp-contact-item span {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.gp-contact-item a:hover {
  color: #F47B20;
}

.gp-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(244,123,32,0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 8px;
}

.gp-footer-cta:hover {
  color:#F47B20;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(244,123,32,0.34);
}

.gp-footer-divider {
  border: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 28px 0 18px;
}

.gp-footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gp-footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
}

.gp-footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gp-footer-bottom-links a {
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 0.92rem;
}

.gp-footer-bottom-links a:hover {
  color: #F47B20;
}

/* =========================
   FLOATING WHATSAPP / CALL
========================= */

.gp-float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.gp-float-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.gp-float-label {
  background: #1B2C6B;
  color: #fff;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(255,43,43,0.25);
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.gp-float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 0 0 auto;
}

.gp-float-btn i {
  font-size: 1.35rem;
}

.gp-float-whatsapp .gp-float-btn {
  background: #25d366;
}

.gp-float-call .gp-float-btn {
  background: #ff2b2b;
}

/* show label on hover/focus and on tap-open */
.gp-float-item:hover .gp-float-label,
.gp-float-item:focus-visible .gp-float-label,
.gp-float-item.is-open .gp-float-label {
  opacity: 1;
  transform: translateX(0);
}

.gp-float-item:hover .gp-float-btn,
.gp-float-item:focus-visible .gp-float-btn,
.gp-float-item.is-open .gp-float-btn {
  transform: translateY(-2px) scale(1.03);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991.98px) {
  .gp-footer {
    padding: 54px 0 20px;
  }

  .gp-footer-logo {
    max-width: 170px;
  }

  .gp-footer-about {
    max-width: 100%;
  }

  .gp-footer-title,
  .gp-footer-subtitle {
    font-size: 1.08rem;
  }

  .gp-footer-cta {
    width: 100%;
    justify-content: center;
  }

  .gp-footer-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .gp-footer {
    padding: 42px 0 18px;
  }

  .gp-footer-logo {
    max-width: 150px;
  }

  .gp-footer-about {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .gp-footer-links li {
    margin-bottom: 10px;
  }

  .gp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .gp-float-actions {
    right: 14px;
    bottom: 14px;
  }

  .gp-float-btn {
    width: 56px;
    height: 56px;
  }

  .gp-float-label {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}


/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.visible { opacity: 1; transform: translateX(0); }

/* Delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(244,123,32,0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.page-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }

.breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.breadcrumb-item a { color: var(--orange); text-decoration: none; }
.breadcrumb-item.active { color: var(--white); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== UTILITY ===== */
.text-orange { color: var(--orange) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-orange { background: var(--orange) !important; }

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
  border-radius: 2px;
  margin: 20px 0;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-icon {
  width: 100px; height: 100px;
  background: rgba(34,197,94,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 28px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-section { padding: 60px 0; min-height: auto; }
  .hero-visual { margin-top: 48px; }
  .stat-item + .stat-item::before { display: none; }
  .why-metrics { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .hero-stats { gap: 10px; }
  .hero-card-stat { display: none; }
  .contact-form-card { padding: 28px 20px; }
  .contact-info-card { padding: 32px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
