/* ==========================================================================
   TECHNOLOGY SUPPORT & MAINTENANCE STYLESHEET
   Page: technology-support.html
   ========================================================================== */

/* --------------------------------------------------------------------------
   BASE TYPOGRAPHY (MATCHING REMAINING SERVICE PAGES)
   -------------------------------------------------------------------------- */
body.tech-support-page,
.tech-support-page button,
.tech-support-page input,
.tech-support-page select,
.tech-support-page textarea {
  font-family: Satoshi, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Services Header Alignment */
.services-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
}

/* --------------------------------------------------------------------------
   1. HERO SHOWCASE: SYSTEM MONITORING & HEALTH DASHBOARD
   -------------------------------------------------------------------------- */
.tech-hero-showcase {
  margin-top: 50px;
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 24px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  position: relative;
}

.tech-showcase-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #F8FAFC;
  border-bottom: 1px solid #E5E7EB;
  gap: 16px;
}

.tech-topbar-dots {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.tech-topbar-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.tech-topbar-dot.red { background: #FF5F56; }
.tech-topbar-dot.yellow { background: #FFBD2E; }
.tech-topbar-dot.green { background: #27C93F; }

.tech-topbar-title {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.tech-live-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #75BF46;
  box-shadow: 0 0 10px rgba(117, 191, 70, 0.7);
  animation: pulse-live 2s infinite;
  flex-shrink: 0;
  display: inline-block;
}

@keyframes pulse-live {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(117, 191, 70, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(117, 191, 70, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(117, 191, 70, 0); }
}

.tech-topbar-status-wrap {
  flex-shrink: 0;
}

.tech-topbar-status {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  color: #15803D;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 3px 10px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
}

.tech-showcase-body {
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: radial-gradient(circle at 50% 0%, rgba(117, 191, 70, 0.04) 0%, #FFFFFF 70%);
}

.tech-metric-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.tech-metric-box:hover {
  background: #FFFFFF;
  transform: translateY(-3px);
  border-color: #75BF46;
  box-shadow: 0 12px 24px rgba(117, 191, 70, 0.12);
}

.tech-metric-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tech-metric-val {
  font-size: 32px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.1;
  font-family: Satoshi, sans-serif;
}

.tech-metric-val span {
  color: #75BF46;
  font-size: 22px;
}

.tech-metric-desc {
  font-size: 12px;
  color: #64748B;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   2. BEYOND MAINTENANCE 6-CARDS GRID
   -------------------------------------------------------------------------- */
.tech-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.tech-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.tech-card:hover {
  transform: translateY(-6px);
  border-color: #75BF46;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.tech-card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #F4F9F0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background-color 0.3s ease;
}

.tech-card:hover .tech-card-icon-wrap {
  background: #E8F4DE;
}

.tech-card-title {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #060612;
  margin: 0 0 12px 0;
  line-height: 1.35;
}

.tech-card-desc {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #69686E;
  margin: 0;
}

/* --------------------------------------------------------------------------
   3. ENGAGEMENT MODELS: 3-COLUMN CARDS
   -------------------------------------------------------------------------- */
.tech-models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.tech-model-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 22px;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.tech-model-card:hover {
  transform: translateY(-6px);
  border-color: #75BF46;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tech-model-card.featured {
  border-color: #75BF46;
  box-shadow: 0 12px 30px rgba(117, 191, 70, 0.12);
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FDF7 100%);
}

.tech-model-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: #F0FDF4;
  color: #166534;
  border: 1px solid #BBF7D0;
}

.tech-model-card.featured .tech-model-badge {
  background: #75BF46;
  color: #FFFFFF;
  border: none;
}

.tech-model-title {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #060612;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.tech-model-desc {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #69686E;
  margin: 0 0 24px 0;
}

.tech-model-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.tech-model-features li {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tech-model-features li svg,
.tech-model-features li img,
.tech-leaf-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 3px;
  object-fit: contain;
}

.tech-model-btn {
  display: inline-flex;
  width: 100% !important;
  padding: 12px 24px;
  align-items: center;
  justify-content: center !important;
  gap: 8px;
  border-radius: 8px;
  background: var(--85BD56, #85BD56);
  border: none;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.16) inset, 0 0 0 2px #E1FFC8;
  color: #FFF !important;
  position: relative;
  z-index: 2;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  box-sizing: border-box;
  margin-top: auto;
}

.tech-model-btn:hover {
  transform: translateY(-2px);
  background: #75BF46;
  box-shadow: 
    2px 2px 2px 0 rgba(255, 255, 255, 0.25) inset, 
    0 0 0 3px #E1FFC8,
    0 4px 14px rgba(117, 191, 70, 0.35);
  color: #FFF !important;
}

.tech-model-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 
    2px 2px 2px 0 rgba(0, 0, 0, 0.1) inset, 
    0 0 0 2px #E1FFC8;
}

.tech-model-btn .arrow-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.tech-model-btn:hover .arrow-icon {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   4. MONITORING WHAT MATTERS: 12 PILLS BADGE GRID
   -------------------------------------------------------------------------- */
.tech-monitoring-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  justify-content: flex-start;
}

.tech-monitoring-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: default;
}

.tech-monitoring-item:hover {
  border-color: #75BF46;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.tech-monitoring-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #75BF46;
  box-shadow: 0 0 6px rgba(117, 191, 70, 0.5);
  flex-shrink: 0;
}

.tech-monitoring-leaf {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.tech-monitoring-text {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1F2937;
}

/* --------------------------------------------------------------------------
   5. BUILT FOR THE LONG TERM: PARTNERSHIP SHOWCASE (CTA SECTION UI)
   -------------------------------------------------------------------------- */
.tech-partnership-outer {
  display: flex;
  width: 100%;
  max-width: 1280px;
  min-height: 482px;
  height: auto;
  margin: 44px auto 0;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border: 1px solid #FFFFFF;
  background: #F5F5F5;
  box-shadow: 0 0 6px 1px rgba(6, 6, 18, 0.16) inset;
  box-sizing: border-box;
}

.tech-partnership-inner {
  position: relative;
  width: 100%;
  min-height: 450px;
  height: auto;
  border-radius: 12px;
  background: #85BD56;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 56px 64px;
  box-sizing: border-box;
  gap: 48px;
  overflow: hidden;
}

.tech-partnership-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.64;
  background-image: var(--bg-image, url('../assets/home/cta-bg.png'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.tech-partnership-content,
.tech-partnership-right {
  position: relative;
  z-index: 2;
}

.tech-partnership-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1 1 auto;
  max-width: 580px;
  min-width: 0;
}

.tech-partnership-content .cta-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.tech-partnership-content .cta-tagline span {
  color: #FFFFFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}

.tech-partnership-content h3.cta-main-heading {
  width: 100%;
  color: #FFFFFF;
  font-family: Satoshi, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: -1px;
  margin: 0 0 16px 0;
}

.tech-partnership-content p.cta-description {
  width: 100%;
  max-width: 540px;
  color: #FFFFFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 14px 0;
}

.tech-partnership-content p.cta-description:last-of-type {
  margin-bottom: 28px;
}

/* Right Content: Available Card Outer + Inner for stats */
.tech-partnership-right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 1 500px;
  min-width: 0;
  width: 100%;
}

.tech-partnership-right .tech-stats-card-outer {
  display: flex;
  width: 100%;
  max-width: 500px;
  height: auto;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #FFFFFF;
  background: #F5F5F5;
  box-shadow: 0 0 6px 1px rgba(6, 6, 18, 0.16) inset;
  box-sizing: border-box;
}

.tech-partnership-right .tech-stats-card-inner {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.tech-partnership-right .available-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.tech-partnership-right .available-tagline span {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}

.tech-partnership-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
}

.tech-partnership-stats-grid .tech-stat-card {
  background: #F9FAFB;
  border: 1px solid #ECECEC;
  border-radius: 8px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
}

.tech-partnership-stats-grid .tech-stat-card:hover {
  background: #FFFFFF;
  border-color: #85BD56;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(133, 189, 86, 0.15);
}

.tech-partnership-stats-grid .tech-stat-number {
  font-family: Satoshi, sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #85BD56;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.tech-partnership-stats-grid .tech-stat-label {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4B5563;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .tech-showcase-body {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-cards-grid,
  .tech-models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-partnership-outer {
    height: auto;
    padding: 12px;
  }
  .tech-partnership-inner {
    height: auto;
    flex-direction: column;
    padding: 44px 28px;
    gap: 36px;
  }
  .tech-partnership-content {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    width: 100%;
  }
  .tech-partnership-right {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  .tech-partnership-right .tech-stats-card-outer {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .tech-showcase-body {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }
  .tech-cards-grid,
  .tech-models-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .tech-partnership-outer {
    padding: 10px;
    margin-top: 32px;
  }
  .tech-partnership-inner {
    padding: 28px 16px;
    gap: 28px;
  }
  .tech-partnership-content h3.cta-main-heading {
    font-size: 28px;
    line-height: 36px;
  }
  .tech-partnership-right .tech-stats-card-outer {
    padding: 12px;
  }
  .tech-partnership-right .tech-stats-card-inner {
    padding: 16px;
  }
  .tech-partnership-stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .tech-partnership-stats-grid .tech-stat-number {
    font-size: 30px;
  }
}

/* --------------------------------------------------------------------------
   FOOTER LIST STYLE SAFEGUARD
   -------------------------------------------------------------------------- */
.footer-service-list,
.footer-contact-list,
.footer-sublist,
.footer-nav-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-service-list li,
.footer-contact-list li,
.footer-sublist li,
.footer-nav-list li {
  list-style: none !important;
  list-style-type: none !important;
}

/* --------------------------------------------------------------------------
   HERO UNIFIED PILLS WRAPPER & ALIGNMENT
   -------------------------------------------------------------------------- */
.hero-unified-pill-wrap {
  margin: 0 auto 32px auto;
  text-align: center;
  display: flex;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   FAQS SECTION (MATCHING CUSTOM-APPLICATIONS.HTML & INDEX.HTML)
   -------------------------------------------------------------------------- */
body.tech-support-page .faqs-section {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  width: 100%;
  box-sizing: border-box;
}

body.tech-support-page .faqs-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px !important;
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 960px) {
  body.tech-support-page .faqs-container {
    padding: 0 24px !important;
  }
}

@media (max-width: 480px) {
  body.tech-support-page .faqs-container {
    padding: 0 16px !important;
  }
}

/* ==========================================================================
   UNIFORM GLOBAL SECTION SPACING (EXACT SAME AS INDEX.HTML)
   ========================================================================== */
body.tech-support-page .uiux-hero-section,
body.tech-support-page .uiux-section,
body.tech-support-page .why-mobile-section,
body.tech-support-page .uiux-why-choose-section,
body.tech-support-page .why-approach-section,
body.tech-support-page .faqs-section,
body.tech-support-page .cta-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 60px !important;
}

body.tech-support-page .uiux-hero-section {
  padding-top: 24px !important;
  padding-bottom: 0 !important;
  margin-bottom: 60px !important;
}

body.tech-support-page .uiux-hero-container,
body.tech-support-page .uiux-container,
body.tech-support-page .faqs-container,
body.tech-support-page .cta-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Tablet Uniform Section Spacing (<= 960px) */
@media (max-width: 960px) {
  body.tech-support-page .uiux-hero-section,
  body.tech-support-page .uiux-section,
  body.tech-support-page .why-mobile-section,
  body.tech-support-page .uiux-why-choose-section,
  body.tech-support-page .why-approach-section,
  body.tech-support-page .faqs-section,
  body.tech-support-page .cta-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 44px !important;
  }

  body.tech-support-page .uiux-hero-section {
    padding-top: 24px !important;
    padding-bottom: 0 !important;
    margin-bottom: 44px !important;
  }

  body.tech-support-page .uiux-container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* Mobile Uniform Section Spacing (<= 480px) */
@media (max-width: 480px) {
  body.tech-support-page .uiux-hero-section,
  body.tech-support-page .uiux-section,
  body.tech-support-page .why-mobile-section,
  body.tech-support-page .uiux-why-choose-section,
  body.tech-support-page .why-approach-section,
  body.tech-support-page .faqs-section,
  body.tech-support-page .cta-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 32px !important;
  }

  body.tech-support-page .uiux-hero-section {
    padding-top: 24px !important;
    padding-bottom: 0 !important;
    margin-bottom: 32px !important;
  }

  body.tech-support-page .uiux-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* --------------------------------------------------------------------------
   WHY PARIVARTAN / CHOOSE US (WARM CREAM SINGLE ROW 5-CARD GRID)
   -------------------------------------------------------------------------- */
.why-cream-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
  margin-top: 48px;
  width: 100%;
}

.why-cream-card {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  background: #FFF8F1;
  border-radius: 20px;
  padding: 32px 18px 28px 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 200px;
  border: 1px solid #FFEADA;
  box-shadow: 0 0 0 4px #FFFFFF, 0 12px 28px -6px rgba(220, 160, 100, 0.12), 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-cream-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 4px #FFFFFF, 0 20px 40px -8px rgba(220, 160, 100, 0.2), 0 6px 16px rgba(0, 0, 0, 0.04);
}

.why-cream-icon {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.why-cream-title {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #1E293B;
  margin: 0;
  letter-spacing: -0.2px;
}

@media (max-width: 1024px) {
  .why-cream-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .why-cream-card {
    flex: 0 0 calc(33.333% - 12px);
    width: auto;
    min-width: 200px;
    max-width: calc(33.333% - 12px);
  }
}

@media (max-width: 640px) {
  .why-cream-grid {
    flex-direction: column;
    gap: 16px;
  }
  .why-cream-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 24px 20px;
    min-height: auto;
  }
  .why-cream-icon {
    margin-bottom: 16px;
  }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS (< 768px & < 480px)
   ========================================================================== */
@media (max-width: 768px) {
  /* Prevent unnatural line breaks in headings on mobile */
  body.tech-support-page .uiux-hero-title br,
  body.tech-support-page .services-main-heading br,
  body.tech-support-page .tech-partnership-content h3.cta-main-heading br,
  body.tech-support-page .cta-main-heading br {
    display: none;
  }

  /* Hero Section Mobile Polish */
  body.tech-support-page .uiux-hero-title {
    font-size: 30px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
  }

  body.tech-support-page .uiux-hero-subtitle {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  body.tech-support-page .uiux-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  body.tech-support-page .uiux-hero-actions .start-project-btn,
  body.tech-support-page .uiux-hero-actions .hero-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box;
  }

  /* Dashboard Showcase Mobile Polish */
  .tech-hero-showcase {
    margin-top: 32px;
    border-radius: 16px;
  }

  .tech-showcase-topbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    gap: 10px;
  }

  .tech-topbar-dots {
    order: 1;
  }

  .tech-topbar-status-wrap {
    order: 2;
  }

  .tech-topbar-title {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    line-height: 1.45;
    margin-top: 4px;
  }

  .tech-topbar-status {
    font-size: 10.5px;
  }

  .tech-showcase-body {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px 14px;
  }

  .tech-metric-box {
    padding: 16px 14px;
    border-radius: 12px;
  }

  .tech-metric-val {
    font-size: 26px;
  }

  /* Section Main Headings */
  body.tech-support-page .services-main-heading {
    font-size: 26px !important;
    line-height: 1.3 !important;
    letter-spacing: -0.4px !important;
  }

  /* 6 Cards Grid */
  .tech-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .tech-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .tech-card-icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 12px;
  }

  .tech-card-title {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .tech-card-desc {
    font-size: 14.5px;
    line-height: 1.6;
  }

  /* 3 Engagement Models Grid */
  .tech-models-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .tech-model-card {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .tech-model-title {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .tech-model-desc {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* Monitoring Pills */
  .tech-monitoring-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-top: 24px !important;
    width: 100% !important;
  }

  .tech-monitoring-item {
    padding: 10px 16px !important;
    font-size: 13.5px !important;
    width: max-content !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Client Partnerships Showcase */
  .tech-partnership-outer {
    margin-top: 28px;
    padding: 8px;
    border-radius: 16px;
  }

  .tech-partnership-inner {
    padding: 32px 20px;
    border-radius: 12px;
    gap: 28px;
    flex-direction: column;
  }

  .tech-partnership-content h3.cta-main-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .tech-partnership-content p.cta-description {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .tech-partnership-content .cta-start-project-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .tech-partnership-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .tech-partnership-stats-grid .tech-stat-card {
    padding: 14px 12px;
  }

  .tech-partnership-stats-grid .tech-stat-number {
    font-size: 26px;
  }

  .tech-partnership-stats-grid .tech-stat-label {
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  body.tech-support-page .uiux-hero-title {
    font-size: 25px !important;
    line-height: 1.25 !important;
  }

  body.tech-support-page .uiux-hero-subtitle {
    font-size: 14px !important;
  }

  .tech-showcase-body {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.tech-support-page .services-main-heading {
    font-size: 23px !important;
  }

  .tech-partnership-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .tech-partnership-stats-grid .tech-stat-number {
    font-size: 24px;
  }
}

/* ==========================================================================
   TARGETED MOBILE RESPONSIVENESS FOR CLIENT PARTNERSHIPS, FAQS & MAINTAIN & SCALE
   ========================================================================== */

/* 1. CLIENT PARTNERSHIPS SECTION RESPONSIVE */
@media (max-width: 960px) {
  body.tech-support-page .tech-partnership-outer {
    height: auto !important;
    min-height: auto !important;
    padding: 12px !important;
    margin-top: 28px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body.tech-support-page .tech-partnership-inner {
    height: auto !important;
    min-height: auto !important;
    flex-direction: column !important;
    padding: 36px 24px !important;
    gap: 32px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body.tech-support-page .tech-partnership-content {
    max-width: 100% !important;
    width: 100% !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  body.tech-support-page .tech-partnership-content h3.cta-main-heading {
    font-size: 32px !important;
    line-height: 40px !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 14px !important;
  }

  body.tech-support-page .tech-partnership-content p.cta-description {
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  body.tech-support-page .tech-partnership-right {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  body.tech-support-page .tech-partnership-right .tech-stats-card-outer {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px !important;
    box-sizing: border-box !important;
  }

  body.tech-support-page .tech-partnership-right .tech-stats-card-inner {
    width: 100% !important;
    padding: 20px 16px !important;
    box-sizing: border-box !important;
  }

  body.tech-support-page .tech-partnership-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
  }
}

@media (max-width: 600px) {
  body.tech-support-page .tech-partnership-outer {
    padding: 8px !important;
    border-radius: 16px !important;
    margin-top: 24px !important;
  }

  body.tech-support-page .tech-partnership-inner {
    padding: 28px 18px !important;
    border-radius: 12px !important;
    gap: 24px !important;
  }

  body.tech-support-page .tech-partnership-content h3.cta-main-heading {
    font-size: 26px !important;
    line-height: 34px !important;
    margin-bottom: 12px !important;
  }

  body.tech-support-page .tech-partnership-content h3.cta-main-heading br {
    display: none !important;
  }

  body.tech-support-page .tech-partnership-content p.cta-description {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  body.tech-support-page .tech-partnership-content .cta-start-project-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    margin-top: 12px !important;
  }

  body.tech-support-page .tech-partnership-stats-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  body.tech-support-page .tech-partnership-stats-grid .tech-stat-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 16px 18px !important;
    border-radius: 12px !important;
    background: #F9FAFB !important;
    border: 1px solid #ECECEC !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  body.tech-support-page .tech-partnership-stats-grid .tech-stat-number {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #85BD56 !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    min-width: 75px !important;
    text-align: left !important;
  }

  body.tech-support-page .tech-partnership-stats-grid .tech-stat-label {
    font-size: 13.5px !important;
    line-height: 1.4 !important;
    color: #374151 !important;
    font-weight: 500 !important;
    flex: 1 1 auto !important;
  }
}

@media (max-width: 380px) {
  body.tech-support-page .tech-partnership-stats-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 2. FAQS SECTION RESPONSIVE POLISH */
@media (max-width: 768px) {
  body.tech-support-page #faqs .faqs-outer-card {
    padding: 10px !important;
    border-radius: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body.tech-support-page #faqs .faqs-single-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  body.tech-support-page #faqs .faq-item-card {
    padding: 16px 16px !important;
    border-radius: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body.tech-support-page #faqs .faq-question-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
  }

  body.tech-support-page #faqs .faq-question-text {
    font-size: 15px !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
    color: #060612 !important;
    flex: 1 1 auto !important;
  }

  body.tech-support-page #faqs .faq-toggle-btn {
    flex-shrink: 0 !important;
    width: 26px !important;
    height: 26px !important;
  }

  body.tech-support-page #faqs .faq-answer-row {
    margin-top: 12px !important;
    padding-top: 12px !important;
    border-top: 1px solid #F0F2F5 !important;
    width: 100% !important;
  }

  body.tech-support-page #faqs .faq-answer-text {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    color: #69686E !important;
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  body.tech-support-page #faqs .faqs-outer-card {
    padding: 8px !important;
  }

  body.tech-support-page #faqs .faq-item-card {
    padding: 14px 14px !important;
    border-radius: 12px !important;
  }

  body.tech-support-page #faqs .faq-question-text {
    font-size: 14.5px !important;
    line-height: 1.4 !important;
  }

  body.tech-support-page #faqs .faq-answer-text {
    font-size: 13px !important;
  }
}

/* 3. MAINTAIN & SCALE (CTA SECTION) RESPONSIVE POLISH */
@media (max-width: 960px) {
  body.tech-support-page .cta-section {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body.tech-support-page .cta-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body.tech-support-page .cta-outer-box {
    height: auto !important;
    min-height: auto !important;
    padding: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body.tech-support-page .cta-inner-box {
    height: auto !important;
    min-height: auto !important;
    flex-direction: column !important;
    padding: 36px 24px !important;
    gap: 36px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body.tech-support-page .cta-left-content {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  body.tech-support-page .cta-left-content h2.cta-main-heading {
    width: 100% !important;
    font-size: 32px !important;
    line-height: 40px !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 14px !important;
  }

  body.tech-support-page .cta-left-content p.cta-description {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  body.tech-support-page .cta-actions-group {
    width: 100% !important;
    margin-top: 16px !important;
  }

  body.tech-support-page .cta-right-content {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  body.tech-support-page .available-card-outer {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 12px !important;
    box-sizing: border-box !important;
  }

  body.tech-support-page .available-card-inner {
    width: 100% !important;
    height: auto !important;
    padding: 24px 20px !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  body.tech-support-page .available-book-call-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 600px) {
  body.tech-support-page .cta-outer-box {
    padding: 8px !important;
    border-radius: 16px !important;
  }

  body.tech-support-page .cta-inner-box {
    padding: 28px 18px !important;
    border-radius: 12px !important;
    gap: 28px !important;
  }

  body.tech-support-page .cta-left-content h2.cta-main-heading {
    font-size: 26px !important;
    line-height: 34px !important;
    margin-bottom: 12px !important;
  }

  body.tech-support-page .cta-left-content h2.cta-main-heading br {
    display: none !important;
  }

  body.tech-support-page .cta-left-content p.cta-description {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  body.tech-support-page .cta-actions-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  body.tech-support-page .cta-start-project-btn,
  body.tech-support-page .start-project-btn,
  body.tech-support-page .hero-btn,
  body.tech-support-page .tech-model-btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 18px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    height: auto !important;
    min-height: 46px !important;
  }

  body.tech-support-page .cta-start-project-btn span,
  body.tech-support-page .start-project-btn span,
  body.tech-support-page .hero-btn span,
  body.tech-support-page .tech-model-btn span {
    text-align: center !important;
  }

  body.tech-support-page .cta-start-project-btn .arrow-icon,
  body.tech-support-page .start-project-btn .arrow-icon,
  body.tech-support-page .hero-btn .arrow-icon,
  body.tech-support-page .tech-model-btn .arrow-icon {
    flex-shrink: 0 !important;
    margin-left: 4px !important;
  }

  body.tech-support-page .available-card-outer {
    padding: 10px !important;
  }

  body.tech-support-page .available-card-inner {
    padding: 18px 14px !important;
  }

  body.tech-support-page .available-card-title {
    font-size: 20px !important;
  }

  body.tech-support-page .available-card-desc {
    font-size: 13.5px !important;
  }
}

