/* ==========================================================================
   BZCOMPOSITION MAIN LANDING PAGE CSS (ISOLATED & MODULAR SECTIONS)
   ========================================================================== */

/* ==========================================================================
   1. HERO BANNER & FLOATING HEADER NAV (.hero-*)
   ========================================================================== */
.hero-redesign-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #060e20;
  overflow: hidden;
}

.hero-slider-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}

.hero-slide-item {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide-item.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 6s ease-out;
}

.hero-slide-item.active .hero-slide-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(6, 14, 32, 0.75) 0%, rgba(6, 14, 32, 0.85) 100%);
  z-index: 3;
}

.hero-header-nav {
  position: absolute;
  top: 0; left: 0; right: 0; width: 100% !important;
  z-index: 100;
}

/* ==========================================================================
   2-ROW HEADER NAVBAR OVERLAYING HERO BACKGROUND IMAGE
   ========================================================================== */
.two-row-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

/* ROW 1: TOP ROW (TRANSPARENT OVERLAY OVER HERO IMAGE) */
.header-top-row {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 16px 0 10px;
  border-bottom: none;
}

.header-top-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.header-brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* SEARCH INPUT BOX (CENTER OF TOP ROW) */
.header-search-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 14px;
  font-size: 14px;
  color: #0f172a;
  background: transparent;
}

.header-search-input::placeholder {
  color: #64748b;
}

.header-search-btn {
  background: #3174b5;
  color: #ffffff;
  border: none;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.header-search-btn:hover {
  background: #2563eb;
}

/* TOP ROW RIGHT TRIAL BUTTON */
.header-top-right {
  display: flex;
  align-items: center;
}

.header-trial-btn {
  background: #3174b5;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(49, 116, 181, 0.35);
}

.header-trial-btn:hover {
  background: #2563eb;
  color: #ffffff !important;
}

/* ROW 2: BOTTOM NAV BAR (TRANSPARENT OVERLAY OVER HERO IMAGE) */
.header-bottom-row {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  padding: 10px 0 16px;
}

.header-bottom-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}

.header-nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.header-nav-link {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.header-nav-link:hover {
  color: #38bdf8 !important;
}

.header-dropdown-item {
  position: relative;
}

.header-dropdown-item .caret-icon {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.header-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  min-width: 220px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
}

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

.header-dropdown-menu a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  color: #e2e8f0 !important;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease;
}

.header-dropdown-menu a:hover {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8 !important;
}

.header-bottom-right {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.header-login-btn {
  background: #3174b5;
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  padding: 7px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.header-login-btn:hover {
  background: #2563eb;
}

.hero-nav-container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
}

.hero-brand-logo {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
}

.hero-brand-logo img {
  max-height: 48px;
  width: auto;
}

.hero-nav-menu {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hero-nav-link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-nav-link:hover,
.hero-nav-link.active,
.hero-nav-item.active > .hero-nav-link {
  color: #00a2ff;
  text-decoration: none;
}

.hero-dropdown-item {
  position: relative;
}

.hero-dropdown-item .caret-icon {
  width: 12px; height: 12px; stroke: currentColor; fill: none; margin-left: 4px; stroke-width: 2.5;
}

.hero-dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 0;
  min-width: 220px;
  display: none;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 100;
}

.hero-dropdown-item:hover .hero-dropdown-menu {
  display: block;
}

.hero-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.hero-dropdown-menu a:hover {
  background: rgba(0, 162, 255, 0.15);
  color: #00a2ff;
}

.hero-header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin: 0 !important;
}

.hero-circle-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

.hero-circle-btn svg {
  width: 18px; height: 18px;
}

.hero-trial-btn {
  padding: 10px 22px;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #ffffff !important;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 13.5px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 114, 255, 0.4);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.hero-trial-btn:hover {
  background: linear-gradient(135deg, #0056cc, #00a2ff);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 114, 255, 0.5);
  color: #ffffff !important;
  text-decoration: none !important;
}

.hero-login-btn {
  padding: 10px 26px;
  background: #0072ff;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.25s ease;
}

.hero-login-btn:hover {
  background: #0056cc;
}

.hero-body-content-wrap {
  position: relative;
  z-index: 5;
  max-width: 1320px;
  margin: 0 auto;
  padding: 180px 24px 120px;
}

.hero-slide-content {
  display: none;
}

.hero-slide-content.active {
  display: block;
}

.hero-main-title {
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtext {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-white-pill-btn {
  display: inline-block;
  padding: 16px 38px;
  background: #ffffff;
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-white-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
  color: #0072ff;
  text-decoration: none;
}

.hero-bottom-controls {
  position: absolute;
  bottom: 40px; left: 0; width: 100%;
  z-index: 6;
}

.hero-tabs-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 40px;
}

.hero-tab-btn {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  padding-bottom: 8px;
  font-weight: 700;
  position: relative;
  font-size: 15px;
  transition: color 0.2s;
}

.hero-tab-btn.active {
  color: #ffffff;
}

.hero-tab-indicator {
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 3px;
  background: #0072ff;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.hero-tab-btn.active .hero-tab-indicator {
  width: 100%;
}


/* ==========================================================================
/* ==========================================================================
   2. SERVICE FOR YOUR DEVELOPMENT SECTION (.services-* / .clean-services-*)
   ========================================================================== */
.clean-services-section {
  padding: 85px 0 95px;
  background-color: #ffffff;
}

.clean-services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.clean-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.clean-services-title {
  font-size: 26px;
  font-weight: 700;
  color: #1b365d;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.clean-services-line {
  width: 50px;
  height: 3px;
  background-color: #1b365d;
  margin: 0 auto;
  border-radius: 2px;
}

.clean-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 54px;
}

.clean-service-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clean-service-icon-box {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: #1b365d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(27, 54, 93, 0.2);
}

.clean-service-card:hover .clean-service-icon-box {
  transform: translateY(-5px);
  background-color: #0f2647;
  box-shadow: 0 10px 25px rgba(27, 54, 93, 0.3);
}

.clean-service-icon-box svg {
  width: 30px;
  height: 30px;
  stroke: #ffffff;
  stroke-width: 1.8;
  fill: none;
}

.clean-service-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
}

.clean-service-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #94a3b8;
  margin: 0 0 16px 0;
}

.clean-service-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
  max-width: 340px;
}

.clean-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1b365d;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.clean-service-link:hover {
  color: #0072ff;
  transform: translateX(3px);
  text-decoration: none;
}

@media (max-width: 992px) {
  .clean-services-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 36px;
    row-gap: 44px;
  }
}

@media (max-width: 640px) {
  .clean-services-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

.services-redesign-section {
  padding: 90px 0 80px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.services-sub-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #0072ff;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.services-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.services-sub-heading {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.services-title-line {
  width: 60px; height: 3px;
  background: #e2e8f0;
  margin: 0 auto;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}

.services-line-highlight {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, #00a2ff, #0072ff);
}

.services-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-dev-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-dev-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 114, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 114, 255, 0.12);
}

.service-dev-img-box {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.service-dev-img-box img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 220px !important;
  object-fit: cover !important;
  transition: transform 0.4s ease;
}

.service-dev-card:hover .service-dev-img-box img {
  transform: scale(1.06);
}

.service-dev-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 44px !important; height: 44px !important;
  min-width: 44px !important; min-height: 44px !important;
  max-width: 44px !important; max-height: 44px !important;
  background: #ffffff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  border: 1px solid #f1f5f9;
  z-index: 2;
}

.service-dev-badge svg {
  width: 22px !important; height: 22px !important;
  min-width: 22px !important; min-height: 22px !important;
  max-width: 22px !important; max-height: 22px !important;
  stroke: #0f172a;
}

.service-dev-content {
  padding: 28px 24px 24px;
  display: flex; flex-direction: column; flex-grow: 1;
}

.service-dev-title {
  font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 12px; line-height: 1.3;
}

.service-dev-desc {
  font-size: 14px; color: #64748b; line-height: 1.65; margin-bottom: 24px; flex-grow: 1;
}

.service-dev-link {
  display: inline-flex; align-items: center; justify-content: space-between;
  width: 100%; padding-top: 16px; border-top: 1px solid #f1f5f9;
  color: #0072ff; font-size: 14.5px; font-weight: 700; text-decoration: none;
  transition: color 0.2s ease;
}

.service-dev-link:hover {
  color: #0056cc;
  text-decoration: none;
}

.service-dev-arrow {
  width: 32px !important; height: 32px !important;
  min-width: 32px !important; min-height: 32px !important;
  max-width: 32px !important; max-height: 32px !important;
  border-radius: 50%; background: #e0f2fe;
  display: flex; align-items: center; justify-content: center; color: #0072ff;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.service-dev-arrow svg {
  width: 16px !important; height: 16px !important;
  min-width: 16px !important; min-height: 16px !important;
  max-width: 16px !important; max-height: 16px !important;
}

.service-dev-card:hover .service-dev-arrow {
  transform: translateX(4px);
  background: #0072ff;
  color: #ffffff;
}


/* ==========================================================================
   3. FREE TRIAL STEPS SECTION (.fts-*)
   ========================================================================== */
.free-trial-steps-section {
  padding: 20px 0 60px;
  background-color: #ffffff;
}

.free-trial-steps-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.fts-header {
  margin-bottom: 32px;
}

.fts-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 2px; color: #0072ff; display: block; margin-bottom: 10px;
}

.fts-title {
  font-size: 40px; font-weight: 800; color: #0f172a; margin-bottom: 12px;
}

.fts-subtitle {
  font-size: 16px; color: #64748b; margin-bottom: 24px;
}

.fts-divider-wrap {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 auto;
}

.fts-divider-line {
  width: 40px; height: 2px; background: #e2e8f0;
}

.fts-divider-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #0072ff;
}

.fts-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.fts-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fts-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.fts-card-active {
  background: #ffffff;
  border-color: #0072ff;
  box-shadow: 0 15px 35px rgba(0, 114, 255, 0.12);
}

.fts-icon-box {
  width: 52px; height: 52px; border-radius: 14px; background: #e0f2fe; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}

.fts-icon-box svg {
  width: 26px !important; height: 26px !important; stroke: #0072ff;
}

.fts-card-title {
  font-size: 22px; font-weight: 800; color: #0f172a; margin-bottom: 6px;
}

.fts-card-desc {
  font-size: 14.5px; color: #64748b; line-height: 1.6; margin-bottom: 0;
}

.fts-cta-btn {
  display: inline-block;
  padding: 16px 44px;
  background: #0072ff;
  color: #ffffff;
  font-size: 16px; font-weight: 700;
  border-radius: 50px; text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.fts-cta-btn:hover {
  background: #0056cc;
  transform: translateY(-2px);
  color: #ffffff;
  text-decoration: none;
}


/* ==========================================================================
   4. PARTNERS SECTION (.prt-*)
   ========================================================================== */
.prt-section {
  padding: 25px 0 70px;
  background-color: #060e20;
}

.prt-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.prt-header {
  text-align: left;
  margin-bottom: 24px;
}

.prt-title {
  font-size: 42px; font-weight: 800; color: #ffffff; margin-bottom: 10px;
}

.prt-title-underline {
  width: 50px; height: 4px; background: #0072ff; border-radius: 2px; margin-bottom: 16px;
}

.prt-subtitle {
  font-size: 16px; color: #94a3b8; line-height: 1.6;
}

.prt-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.prt-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 16px 24px 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.prt-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 114, 255, 0.4);
}

.prt-card-check {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(0, 114, 255, 0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}

.prt-card-check svg {
  width: 20px !important; height: 20px !important; stroke: #0072ff;
}

.prt-card-title {
  font-size: 22px; font-weight: 700; color: #ffffff; margin-bottom: 12px;
}

.prt-card-desc {
  font-size: 14.5px; color: #94a3b8; line-height: 1.6; margin-bottom: 28px;
}

.prt-card-img-wrap {
  width: 100%; height: 200px; margin-top: auto; border-radius: 12px 12px 0 0; overflow: hidden;
}

.prt-card-img {
  width: 100% !important; height: 100% !important; object-fit: cover !important;
}


/* ==========================================================================
   5. TESTIMONIALS SECTION (.tst-*)
   ========================================================================== */
.tst-fullwidth-section {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #e8eaed !important;
  overflow: hidden !important;
}

.tst-split-wrap {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  width: 100% !important;
  min-height: 600px !important;
}

.tst-left {
  padding: 70px 80px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  position: relative !important;
}

.tst-big-quote {
  font-size: 90px !important;
  font-family: Georgia, serif !important;
  color: #111827 !important;
  line-height: 0.6 !important;
  margin-bottom: 20px !important;
}

.tst-subtitle {
  font-size: 12px !important;
  letter-spacing: 2px !important;
  color: #64748b !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
}

.tst-title {
  font-size: 40px !important;
  font-weight: 900 !important;
  color: #111827 !important;
  margin-bottom: 16px !important;
  line-height: 1.15 !important;
}

.tst-accent-line {
  width: 36px !important;
  height: 3px !important;
  background: #111827 !important;
  margin-bottom: 32px !important;
}

.tst-slider-container {
  position: relative !important;
  min-height: 200px !important;
}

.tst-slide {
  display: none !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}

.tst-slide.active {
  display: block !important;
  opacity: 1 !important;
}

.tst-quote-text {
  font-size: 16px !important;
  color: #374151 !important;
  line-height: 1.7 !important;
  margin-bottom: 28px !important;
  font-style: italic !important;
}

.tst-user-info {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

.tst-avatar-fixed {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

.tst-user-name {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin: 0 0 4px !important;
}

.tst-stars-row {
  display: flex !important;
  gap: 3px !important;
  color: #eab308 !important;
  margin-bottom: 4px !important;
}

.tst-star-svg {
  width: 14px !important;
  height: 14px !important;
  fill: currentColor !important;
}

.tst-user-role {
  font-size: 13px !important;
  color: #64748b !important;
  margin: 0 !important;
}

.tst-nav-arrows {
  position: absolute !important;
  bottom: 40px !important;
  right: 60px !important;
  display: flex !important;
  gap: 12px !important;
  z-index: 10 !important;
}

.tst-arrow-btn {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #111827 !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
}

.tst-arrow-btn:hover {
  background: #111827 !important;
  color: #ffffff !important;
}

.tst-right {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}

.tst-side-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  min-height: 560px !important;
}


/* ==========================================================================
   6. SMART SOLUTIONS FOR YOUR BUSINESS / PRODUCTS SECTION (.products-*)
   ========================================================================== */
.products-redesign-section {
  padding: 90px 0;
  background-color: #f8fafc;
}

.products-redesign-section .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.products-header-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.products-heading-title {
  font-size: 46px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.products-blue-text {
  color: #0072ff;
  position: relative;
  display: inline-block;
}

.products-blue-text::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #00a2ff, #0072ff);
  border-radius: 4px;
}

.products-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 660px;
}

.products-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 114, 255, 0.12);
  border-color: rgba(0, 114, 255, 0.3);
}

.product-card-top-bg {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.product-card-top-bg.bg-blue { background: radial-gradient(circle at center, #e0f2fe 0%, #f0f9ff 70%); }
.product-card-top-bg.bg-pink { background: radial-gradient(circle at center, #ffe4e6 0%, #fff1f2 70%); }
.product-card-top-bg.bg-orange { background: radial-gradient(circle at center, #fef3c7 0%, #fffbe6 70%); }
.product-card-top-bg.bg-green { background: radial-gradient(circle at center, #dcfce7 0%, #f0fdf4 70%); }

.product-card-img {
  max-width: 85% !important;
  max-height: 140px !important;
  object-fit: contain !important;
  transition: transform 0.4s ease;
}

.product-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.product-card-icon-box {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card-icon-box.icon-blue { background: #e0f2fe; }
.product-card-icon-box.icon-blue svg { stroke: #0072ff; }
.product-card-icon-box.icon-pink { background: #ffe4e6; }
.product-card-icon-box.icon-pink svg { stroke: #e11d48; }
.product-card-icon-box.icon-orange { background: #fef3c7; }
.product-card-icon-box.icon-orange svg { stroke: #d97706; }
.product-card-icon-box.icon-green { background: #dcfce7; }
.product-card-icon-box.icon-green svg { stroke: #16a34a; }

.product-card-icon-box svg {
  width: 22px !important;
  height: 22px !important;
}

.product-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
}

.product-title-line { position: relative; }
.product-title-line::after {
  content: ''; display: block; width: 28px; height: 3px; border-radius: 2px; margin-top: 4px;
}

.line-blue::after { background: #0072ff; }
.line-pink::after { background: #e11d48; }
.line-orange::after { background: #d97706; }
.line-green::after { background: #16a34a; }

.product-card-desc {
  font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 24px; flex-grow: 1;
}

.product-card-footer {
  display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px;
}

.product-card-link-text {
  font-size: 15px; font-weight: 700; color: #0072ff; text-decoration: none;
}

.product-card-arrow-circle {
  width: 36px !important; height: 36px !important; background: #0072ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffffff;
}

.product-card-arrow-circle svg {
  width: 18px !important; height: 18px !important;
}


/* ==========================================================================
   7. FOOTER SECTION (.ftr-*)
   ========================================================================== */
/* ==========================================================================
   7. FOOTER SECTION (.ftr-*)
   ========================================================================== */
.ftr-section {
  background-color: #060d1f;
  color: #94a3b8;
  padding: 14px 0 10px;
  font-family: inherit;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ftr-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
}

.ftr-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.ftr-brand-block { max-width: 440px; }
.ftr-logo { display: flex; align-items: center; margin-bottom: 2px; }
.ftr-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.ftr-logo-img { height: 28px; width: auto; object-fit: contain; }
.ftr-brand-desc { font-size: 12px; color: #94a3b8; line-height: 1.3; margin-bottom: 6px; }
.ftr-social-wrap { display: flex; align-items: center; gap: 8px; }
.ftr-social-title { font-size: 12px; font-weight: 600; color: #ffffff; }
.ftr-social-icons { display: flex; align-items: center; gap: 6px; }

.ftr-social-circle {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 11px; font-weight: 700; text-decoration: none; transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.ftr-social-circle:hover { background: #0072ff; border-color: #0072ff; color: #ffffff; transform: translateY(-1px); text-decoration: none; }

.ftr-newsletter-block { display: flex; flex-direction: column; gap: 4px; margin-top: 0; }
.ftr-newsletter-title { font-size: 13px; font-weight: 700; color: #ffffff; }
.ftr-newsletter-form { display: flex; align-items: center; gap: 6px; }
.ftr-newsletter-input { width: 220px; padding: 5px 12px; background: rgba(15, 23, 42, 0.8); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 5px; color: #ffffff; font-size: 12px; outline: none; transition: border-color 0.25s ease; }
.ftr-newsletter-input::placeholder { color: #64748b; }
.ftr-newsletter-input:focus { border-color: #0072ff; }
.ftr-subscribe-btn { padding: 5px 16px; background: #0072ff; color: #ffffff; font-size: 12px; font-weight: 700; border-radius: 5px; border: none; cursor: pointer; transition: background 0.25s ease, transform 0.2s ease; }
.ftr-subscribe-btn:hover { background: #0056cc; transform: translateY(-1px); }

.ftr-columns-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 10px; }
.ftr-col { display: flex; flex-direction: column; }
.ftr-col-title { font-size: 13px; font-weight: 700; color: #ffffff; margin-bottom: 1px; }
.ftr-col-line { width: 16px; height: 2px; background: #0072ff; margin-bottom: 5px; border-radius: 2px; }
.ftr-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 3px; }
.ftr-links-space { margin-bottom: 8px; }
.ftr-links li a { display: inline-flex; align-items: center; gap: 4px; color: #94a3b8; font-size: 12px; font-weight: 500; text-decoration: none; transition: color 0.2s ease, transform 0.2s ease; }
.ftr-links li a:hover { color: #ffffff; transform: translateX(3px); text-decoration: none; }
.ftr-chevron { font-size: 10px; color: #64748b; }
.ftr-contact-list { display: flex; flex-direction: column; gap: 3px; }
.ftr-contact-row { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #94a3b8; }
.ftr-contact-row svg { color: #64748b; flex-shrink: 0; }
.ftr-contact-row a { color: #94a3b8; text-decoration: none; transition: color 0.2s ease; }
.ftr-contact-row a:hover { color: #ffffff; }
.ftr-bottom-bar { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.ftr-copyright { font-size: 11.5px; color: #94a3b8; }
.ftr-back-to-top { width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; color: #ffffff; text-decoration: none; transition: background 0.25s ease, transform 0.2s ease; }
.ftr-back-to-top:hover { background: #0072ff; color: #ffffff; transform: translateY(-1px); text-decoration: none; }

@media (max-width: 1024px) {
  .ftr-top-row { flex-direction: column; gap: 30px; }
  .ftr-columns-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .ftr-newsletter-input { width: 240px; }
  .products-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .services-three-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .ftr-columns-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .ftr-newsletter-form { flex-direction: column; align-items: stretch; }
  .ftr-newsletter-input { width: 100%; }
  .products-cards-grid { grid-template-columns: 1fr; }
  .services-three-grid { grid-template-columns: 1fr; }
  .prt-cards-grid { grid-template-columns: 1fr; }
  .fts-cards-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   8. ABOUT US PAGE DESIGN (.about-*) - MATCHING HERRINGTON REFERENCE
   ========================================================================== */

/* 1. About Hero Wrapper */
.about-hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: #060e20;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}

.about-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.about-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(6, 14, 32, 0.7) 0%, rgba(6, 14, 32, 0.85) 100%);
  z-index: 2;
}

.about-hero-body {
  position: relative;
  z-index: 5;
  max-width: 1320px;
  margin: 0 auto;
  padding: 140px 24px 60px;
  width: 100%;
}

.about-hero-title {
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.about-hero-subtext {
  font-size: 16px;
  color: #cbd5e1;
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-hero-line {
  width: 36px;
  height: 3px;
  background: #ffffff;
  margin-bottom: 24px;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #94a3b8;
}

.about-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.about-breadcrumb span {
  color: #0072ff;
}

/* 2. Welcome Split Section */
.about-welcome-section {
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
}

.about-welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 520px;
}

.about-welcome-left {
  background-color: #f1f3f5;
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.about-welcome-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.about-welcome-heading {
  font-size: 38px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
  max-width: 500px;
}

.about-welcome-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-btn-dark {
  padding: 15px 32px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.about-btn-dark:hover {
  background: #0072ff;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

.about-btn-outline {
  padding: 14px 30px;
  background: transparent;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}

.about-btn-outline:hover {
  background: #ffffff;
  border-color: #0f172a;
  color: #0f172a;
  text-decoration: none;
}

.about-welcome-right {
  background-color: #ffffff;
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text-p {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 24px;
}

.about-mission-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 12px;
  margin-bottom: 16px;
}

.about-nav-arrows {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.about-arrow-icon {
  font-size: 20px;
  color: #0f172a;
  cursor: pointer;
  transition: transform 0.2s;
}

.about-arrow-icon:hover {
  transform: translateX(4px);
  color: #0072ff;
}

/* 3. Full Width Image Banner */
.about-banner-img-wrap {
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.about-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 4. Timeline / Milestones Section (Dark) */
.about-timeline-section {
  background-color: #060e20;
  padding: 90px 0;
  color: #ffffff;
  position: relative;
}

.about-timeline-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.about-timeline-card {
  position: relative;
}

.about-timeline-year {
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 12px;
}

.about-timeline-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-timeline-dot-row {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.about-timeline-line {
  position: absolute;
  top: 50%; left: 0; width: 100%; height: 2px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.about-timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #ffffff;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(0, 114, 255, 0.4);
}

.about-timeline-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* 5. Three Key Pillars Cards */
.about-pillars-section {
  background-color: #f8fafc;
  padding: 80px 0;
}

.about-pillars-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.about-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.about-pillar-icon-box {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.about-pillar-icon-box svg {
  width: 24px; height: 24px; stroke: #0f172a;
}

.about-pillar-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.about-pillar-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* 6. Stats Counter Bar */
.about-stats-section {
  background-color: #e8eaed;
  padding: 60px 0;
}

.about-stats-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.about-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-stat-icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.about-stat-icon-circle svg {
  width: 22px; height: 22px; fill: #0f172a; stroke: none;
}

.about-stat-number {
  font-size: 40px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.about-stat-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #475569;
  text-transform: uppercase;
  margin-left: 8px;
}

/* 7. Team Banner Block (Dark) */
.about-team-banner-section {
  background-color: #060e20;
  padding: 100px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-team-banner-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.about-team-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.about-team-title {
  font-size: 44px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.18;
  max-width: 640px;
  margin: 0;
}

.about-team-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-team-btn {
  padding: 16px 36px;
  background: #ffffff;
  color: #0f172a;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.about-team-btn:hover {
  background: #0072ff;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

.about-team-link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.about-team-link:hover {
  color: #0072ff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .about-welcome-grid { grid-template-columns: 1fr; }
  .about-welcome-left, .about-welcome-right { padding: 60px 32px; }
  .about-timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-pillars-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-team-banner-container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .about-hero-title { font-size: 36px; }
  .about-welcome-heading { font-size: 28px; }
  .about-timeline-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   9. CONTACT US PAGE DESIGN (.cnt-*) - MATCHING HERRINGTON REFERENCE
   ========================================================================== */

/* 1. Contact Hero Wrapper */
.cnt-hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 440px;
  background: #060e20;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cnt-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}

.cnt-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.cnt-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(6, 14, 32, 0.7) 0%, rgba(6, 14, 32, 0.85) 100%);
  z-index: 2;
}

.cnt-hero-body {
  position: relative;
  z-index: 5;
  max-width: 1320px;
  margin: 0 auto;
  padding: 150px 24px 60px;
  width: 100%;
}

.cnt-hero-title {
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.cnt-hero-subtext {
  font-size: 16px;
  color: #cbd5e1;
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cnt-hero-line {
  width: 36px;
  height: 3px;
  background: #ffffff;
  margin-bottom: 24px;
}

.cnt-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #94a3b8;
}

.cnt-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.cnt-breadcrumb span {
  color: #0072ff;
}

/* 2. Main Section - Let's Collaborate */
.cnt-main-section {
  background-color: #eef2f6;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.cnt-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.cnt-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left Column */
.cnt-left-block {
  display: flex;
  flex-direction: column;
}

.cnt-main-title {
  font-size: 44px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.cnt-main-subtitle {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 48px;
}

.cnt-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 28px;
  margin-bottom: 48px;
}

.cnt-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cnt-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.cnt-icon-circle svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  fill: none;
}

.cnt-info-label {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.cnt-info-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.cnt-info-text a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.cnt-info-text a:hover {
  color: #0072ff;
}

.cnt-social-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #cbd5e1;
}

.cnt-social-link {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}

.cnt-social-link:hover {
  color: #0072ff;
  text-decoration: none;
}

/* Right Column Form */
.cnt-form-wrapper {
  display: flex;
  flex-direction: column;
}

.cnt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.cnt-input {
  width: 100%;
  padding: 15px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: 14.5px;
  color: #0f172a;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.cnt-input::placeholder {
  color: #94a3b8;
}

.cnt-input:focus {
  border-color: #0072ff;
  box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.12);
}

.cnt-select {
  width: 100%;
  padding: 15px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: 14.5px;
  color: #0f172a;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2064748b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  transition: border-color 0.25s;
}

.cnt-select:focus {
  border-color: #0072ff;
}

.cnt-textarea-wrap {
  margin-bottom: 24px;
}

.cnt-textarea {
  width: 100%;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-size: 14.5px;
  color: #0f172a;
  outline: none;
  min-height: 160px;
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.cnt-textarea::placeholder {
  color: #94a3b8;
}

.cnt-textarea:focus {
  border-color: #0072ff;
  box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.12);
}

.cnt-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 42px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.cnt-submit-btn:hover {
  background: #0072ff;
  transform: translateY(-2px);
}

.cnt-submit-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* 3. Bottom Office Photo Banner */
.cnt-office-banner {
  width: 100%;
  height: 460px;
  overflow: hidden;
}

.cnt-office-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .cnt-split-grid { grid-template-columns: 1fr; gap: 40px; }
  .cnt-info-grid { grid-template-columns: 1fr; }
  .cnt-form-row { grid-template-columns: 1fr; }
}


/* Contact Cards & Form Enhancements */
.cnt-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.cnt-card-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cnt-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 114, 255, 0.12);
  border-color: rgba(0, 114, 255, 0.3);
}

.cnt-card-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #0072ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 114, 255, 0.3);
}

.cnt-card-icon-box svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  fill: none;
}

.cnt-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.cnt-card-info-link {
  display: block;
  font-size: 14.5px;
  color: #0072ff;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 6px;
}

.cnt-card-info-link:hover {
  text-decoration: underline;
}

.cnt-live-chat-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 28px;
  background: #16a34a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.cnt-live-chat-btn:hover {
  background: #15803d;
  transform: translateY(-2px);
}

.cnt-form-split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.cnt-form-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.cnt-form-group {
  margin-bottom: 20px;
}

.cnt-form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.cnt-form-label .req {
  color: #ef4444;
}

.cnt-blue-submit-btn {
  width: 100%;
  padding: 16px;
  background: #0072ff;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 114, 255, 0.3);
}

.cnt-blue-submit-btn:hover {
  background: #0056cc;
  transform: translateY(-2px);
}

.cnt-side-img-box {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.cnt-side-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .cnt-cards-container { grid-template-columns: 1fr; }
  .cnt-form-split-wrap { grid-template-columns: 1fr; }
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE ENHANCEMENTS
   ========================================================================== */

/* Mobile Hamburger Toggle Button */
.hero-mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 11;
  transition: background 0.2s ease;
}

.hero-mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-mobile-toggle svg {
  width: 22px;
  height: 22px;
}

/* Tablet & Mobile Screens (< 992px) */
@media (max-width: 991px) {
  .hero-mobile-toggle {
    display: flex;
  }
  .hero-nav-container {
    padding: 0 16px;
    position: relative;
  }
  .hero-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: #0b1528;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
    z-index: 99;
  }
  .hero-nav-menu.open {
    display: flex;
  }
  .hero-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 8px;
    margin-top: 8px;
    padding: 8px 12px;
    width: 100%;
  }
  .hero-dropdown-item.open .hero-dropdown-menu,
  .hero-dropdown-item:hover .hero-dropdown-menu {
    display: block;
  }
  .hero-body-content-wrap {
    padding: 140px 20px 80px;
  }
  .hero-main-title {
    font-size: 38px;
    margin-bottom: 16px;
  }
  .hero-subtext {
    font-size: 16px;
  }
  .hero-bottom-controls {
    bottom: 24px;
  }
  .hero-tabs-container {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .services-three-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .products-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile Screens (< 768px) */
@media (max-width: 768px) {
  .hero-redesign-wrapper {
    min-height: auto;
  }
  .hero-body-content-wrap {
    padding: 110px 16px 60px;
  }
  .hero-main-title {
    font-size: 28px;
    line-height: 1.25;
  }
  .hero-subtext {
    font-size: 15px;
    line-height: 1.5;
  }
  .hero-white-pill-btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
  .hero-bottom-controls {
    position: static;
    padding: 0 16px 30px;
    transform: none;
  }
  .hero-tab-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
  .ftr-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }
  .ftr-columns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* Small Mobile Screens (< 576px) */
@media (max-width: 576px) {
  .hero-main-title {
    font-size: 24px;
  }
  .hero-brand-logo img {
    max-height: 38px;
  }
  .services-three-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .products-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ftr-columns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
  }
  .ftr-newsletter-form {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .ftr-newsletter-input {
    width: 100%;
  }
  .ftr-newsletter-btn {
    width: 100%;
    justify-content: center;
  }
  .ftr-bottom-bar {
    flex-direction: column-reverse;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   STACKING CARDS SERVICES SECTION (STICKY OVERLAPPING SCROLL EFFECT)
   ========================================================================== */
.stack-services-section {
  padding: 90px 0 140px;
  background-color: #f8fafc;
  position: relative;
}

.stack-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.stack-services-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #0072ff;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.stack-services-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.stack-services-subtitle {
  font-size: 16px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.stack-cards-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.stack-card {
  position: sticky;
  top: 100px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 52px 60px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

/* Tints for each stacked card */
.stack-card-1  { background: linear-gradient(135deg, #eef6ff 0%, #e0f2fe 100%); }
.stack-card-2  { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); }
.stack-card-3  { background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%); }
.stack-card-4  { background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%); }
.stack-card-5  { background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%); }
.stack-card-6  { background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%); }
.stack-card-7  { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); }
.stack-card-8  { background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%); }
.stack-card-9  { background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%); }
.stack-card-10 { background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%); }

.stack-card-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.stack-card-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stack-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: #ffffff;
  color: #0072ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.stack-card-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0072ff;
}

.stack-card-title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.stack-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 28px;
}

.stack-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.stack-card-tag {
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.stack-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #0f172a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
}

.stack-card-btn:hover {
  background: #0072ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 114, 255, 0.3);
  text-decoration: none;
}

.stack-card-right {
  position: relative;
}

.stack-card-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: block;
  transition: transform 0.3s ease;
}

.stack-card-img:hover {
  transform: scale(1.02);
}

.stack-card-preview-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stack-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 14px;
}

.stack-preview-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stack-preview-title svg {
  width: 20px;
  height: 20px;
  color: #0072ff;
}

.stack-preview-status {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: #dcfce7;
  color: #15803d;
}

.stack-preview-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stack-metric-item {
  background: #f8fafc;
  padding: 14px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stack-metric-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.stack-metric-value {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.stack-preview-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stack-progress-bar {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.stack-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00a2ff, #0072ff);
  border-radius: 4px;
}

@media (max-width: 992px) {
  .stack-card {
    padding: 36px 32px;
    top: 90px;
  }
  .stack-card-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stack-card-title {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .stack-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .stack-services-title {
    font-size: 28px;
  }
}

/* ==========================================================================
   NEW REDESIGNED SERVICES SECTION (3-COLUMN CLEAN GRID MATCHING REFERENCE)
   ========================================================================== */
.bz-services-section {
  padding: 90px 0 110px;
  background-color: #ffffff;
  position: relative;
  width: 100%;
}

.bz-services-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.bz-services-header {
  text-align: center;
  margin-bottom: 50px;
}

.bz-services-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.25;
  text-transform: none;
  text-align: center;
}

.bz-services-subtext {
  font-size: 16px;
  color: #64748b;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}

.bz-services-divider {
  width: 60px;
  height: 4px;
  background-color: #0072ff;
  margin: 16px auto 0;
  border-radius: 4px;
}

.bz-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.bz-service-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.bz-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.bz-card-image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.bz-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bz-service-card:hover .bz-card-image-wrap img {
  transform: scale(1.05);
}

.bz-card-icon-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.bz-card-icon-badge svg {
  width: 22px;
  height: 22px;
  stroke: #0f172a;
  fill: none;
  stroke-width: 2;
}

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

.bz-service-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.bz-service-card-desc {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.bz-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.bz-service-card-link {
  font-size: 14.5px;
  font-weight: 700;
  color: #0072ff;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.bz-service-card-link:hover {
  color: #0056b3;
}

.bz-card-action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  border: none;
}

.bz-service-card:hover .bz-card-action-btn {
  background: #0072ff;
  color: #ffffff;
  transform: translateY(-1px);
}

.bz-card-action-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

/* Responsive Grid Breakpoints */
@media (max-width: 992px) {
  .bz-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .bz-services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bz-services-section {
    padding: 60px 0 80px;
  }
  .bz-services-title {
    font-size: 28px;
  }
}

/* ==========================================================================
   PRODUCTS STACKED CARDS DECK SECTION (.products-stack-*)
   ========================================================================== */
.products-stack-section {
  padding: 80px 24px 140px;
  background: #f8fafc;
}

.products-stack-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.products-stack-tag {
  color: #0072ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.products-stack-heading {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.products-stack-subtext {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

.products-stack-container {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.product-stack-card {
  position: sticky;
  top: 110px;
  border-radius: 28px;
  padding: 48px 50px;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.04), 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
}

/* Individual Soft Pastel Cards */
.card-retailer   { background-color: #eaf4fd; }
.card-wholesale  { background-color: #eaf8f2; }
.card-service    { background-color: #f3eafc; }
.card-pos        { background-color: #fff2ea; }
.card-ecommerce  { background-color: #eaf1fd; }
.card-contractor { background-color: #fdf7ea; }
.card-nonprofit  { background-color: #e6f7f5; }
.card-crm        { background-color: #f4eefe; }
.card-payroll    { background-color: #e6f8ff; }
.card-accountant { background-color: #fceef3; }

.stack-card-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.stack-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #ffffff;
  color: #0072ff;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stack-card-title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.stack-card-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.stack-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.stack-tag {
  padding: 8px 16px;
  background: #ffffff;
  color: #334155;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.stack-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #0b1329;
  color: #ffffff !important;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(11, 19, 41, 0.25);
}

.stack-explore-btn:hover {
  background: #0072ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 114, 255, 0.4);
}

.stack-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
}

.stack-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .product-stack-card {
    padding: 32px 24px;
    top: 90px;
  }
  .stack-card-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stack-card-title {
    font-size: 26px;
  }
}

/* ==========================================================================
   GLOBAL RESPONSIVE SYSTEM (MOBILE, TABLET, LAPTOP, DESKTOP ALL SCREENS)
   ========================================================================== */

/* 1. Global Viewport Protections */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

#pageContent {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* 2. Top-Row Actions & Mobile Toggle */
.header-top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  cursor: pointer;
  z-index: 102;
  transition: all 0.3s ease;
}

.header-mobile-toggle .hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-mobile-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-mobile-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.header-mobile-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 3. Header Responsive Rules for Tablet & Mobile (< 992px) */
@media (max-width: 991px) {
  .two-row-header {
    background: rgba(6, 14, 32, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  }

  .header-mobile-toggle {
    display: flex;
  }

  .header-top-row {
    padding: 12px 0;
  }

  .header-top-container {
    padding: 0 16px;
  }

  .header-logo-img {
    height: 38px;
  }

  .header-search-form {
    max-width: 280px;
  }

  .header-trial-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .header-bottom-row {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: rgba(10, 19, 41, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: max-height 0.35s ease-in-out, padding 0.3s ease;
  }

  .header-bottom-row.open {
    max-height: 85vh;
    overflow-y: auto;
    padding: 16px 0 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .header-bottom-container {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
    gap: 12px;
  }

  .header-nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .header-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    width: 100%;
  }

  .header-nav-link {
    padding: 12px 6px;
    font-size: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    margin: 4px 0 10px !important;
    padding: 6px 0 !important;
    display: none !important;
  }

  .header-dropdown-item.open .header-dropdown-menu {
    display: block !important;
  }

  .header-dropdown-menu li a {
    color: #cbd5e1 !important;
    padding: 9px 16px !important;
    font-size: 13.5px !important;
  }

  .header-dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #60a5fa !important;
  }

  .header-bottom-right {
    position: static !important;
    transform: none !important;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .header-login-btn {
    width: 100%;
    padding: 11px;
    font-size: 14.5px;
    text-align: center;
  }

  .mobile-trial-btn-drawer {
    display: block !important;
    width: 100%;
    text-align: center;
    background: #3174b5;
    color: #ffffff !important;
    padding: 11px;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none !important;
  }
}

/* 4. Mobile Screen (< 768px) Header & Top-Bar Flow */
@media (max-width: 767px) {
  .header-top-container {
    flex-wrap: wrap;
    gap: 8px;
  }

  .header-brand-logo {
    order: 1;
  }

  .header-top-actions {
    order: 2;
  }

  .header-search-form {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
  }

  .header-trial-btn {
    display: none;
  }
}

/* 5. Hero Section Fluid Scaling */
.hero-main-title {
  font-size: clamp(26px, 5.5vw, 50px) !important;
  line-height: 1.18 !important;
}

.hero-subtext {
  font-size: clamp(14px, 2.2vw, 17px) !important;
  line-height: 1.6 !important;
}

@media (max-width: 991px) {
  .hero-body-content-wrap {
    padding: 180px 24px 80px;
  }
}

@media (max-width: 767px) {
  .hero-body-content-wrap {
    padding: 170px 16px 70px;
  }

  .hero-tabs-container {
    gap: 12px;
  }

  .hero-tab-text {
    font-size: 13px;
  }

  .hero-tab-indicator {
    width: 60px;
  }
}

/* 6. Services Section (10 Programs) Responsive Grid */
@media (max-width: 1099px) and (min-width: 681px) {
  .bz-services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 22px !important;
  }
}

@media (max-width: 680px) {
  .bz-services-section {
    padding: 50px 0 60px !important;
  }

  .bz-services-container {
    padding: 0 16px !important;
  }

  .bz-services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .bz-card-image-wrap {
    height: 190px !important;
  }
}

/* 7. Free Trial 3 Steps Responsive */
@media (max-width: 900px) {
  .fts-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* 8. Partners Responsive */
@media (max-width: 900px) and (min-width: 601px) {
  .prt-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .prt-container {
    padding: 0 16px !important;
  }

  .prt-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* 9. Testimonials Responsive System */
.tst-section {
  background-color: #e8eaed !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.tst-split-wrap {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  min-height: 520px !important;
  width: 100% !important;
  align-items: stretch !important;
}

.tst-left {
  background-color: #e8eaed !important;
  padding: 60px 60px 50px 70px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  position: relative !important;
  box-sizing: border-box !important;
}

.tst-eyebrow {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  color: #4b5563 !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
  display: block !important;
}

.tst-header-block {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  margin-bottom: 20px !important;
}

.tst-big-quote {
  font-size: 64px !important;
  line-height: 0.65 !important;
  color: #111827 !important;
  font-family: Georgia, serif !important;
  font-weight: 900 !important;
  flex-shrink: 0 !important;
  margin-top: 4px !important;
}

.tst-title {
  font-size: clamp(24px, 3.5vw, 36px) !important;
  font-weight: 800 !important;
  color: #111827 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.5px !important;
  margin: 0 0 8px 0 !important;
}

.tst-subtitle {
  font-size: 14.5px !important;
  color: #4b5563 !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.5 !important;
}

.tst-divider {
  width: 50px !important;
  height: 3px !important;
  background-color: #111827 !important;
  border-radius: 2px !important;
}

.tst-slider-container {
  position: relative !important;
  min-height: 160px !important;
  margin-bottom: 20px !important;
}

.tst-quote-text {
  font-size: clamp(14px, 2vw, 16px) !important;
  color: #374151 !important;
  line-height: 1.7 !important;
  margin-bottom: 20px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #d1d5db !important;
  max-width: 600px !important;
}

.tst-bottom-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.tst-author-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.tst-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  border: 1px solid #cbd5e1 !important;
}

.tst-author-meta {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.tst-name-stars {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.tst-author-name {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #111827 !important;
}

.tst-stars {
  color: #111827 !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
}

.tst-author-role {
  font-size: 13px !important;
  color: #6b7280 !important;
  font-weight: 500 !important;
}

.tst-nav-arrows {
  position: absolute !important;
  right: 50px !important;
  bottom: 45px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  z-index: 10 !important;
}

.tst-arrow-btn {
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 50% !important;
  width: 38px !important;
  height: 38px !important;
  cursor: pointer !important;
  color: #111827 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}

.tst-arrow-btn:hover {
  background: #ffffff !important;
  border-color: #0056ae !important;
  color: #0056ae !important;
}

.tst-right {
  position: relative !important;
  overflow: hidden !important;
  height: 100% !important;
}

.tst-side-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  min-height: 520px !important;
}

@media (max-width: 991px) {
  .tst-split-wrap {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .tst-left {
    padding: 36px 20px 70px !important;
  }
  .tst-nav-arrows {
    right: 20px !important;
    bottom: 20px !important;
  }
  .tst-right {
    height: 280px !important;
    min-height: 280px !important;
  }
  .tst-side-img {
    min-height: 280px !important;
    height: 280px !important;
  }
}

/* 10. Products Cards Grid Responsive */
@media (max-width: 1024px) and (min-width: 601px) {
  .products-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 600px) {
  .products-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}


