/* ========================================
   PROFESSIONAL UI ENHANCEMENTS
   Depends on design tokens defined in styles.css (:root variables).
   No !important rules — specificity is handled by selector order.
   ======================================== */

/* ===== HERO SECTION ===== */
.home-hero-section {
  position: relative;
  overflow: hidden;
}

.homepage-hero-heading {
  line-height: 1.16;
  letter-spacing: -1.5px;
  margin-bottom: 26px;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

@media (max-width: 767px) {
  .homepage-hero-heading {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
    letter-spacing: -1px;
  }
}

@media (max-width: 479px) {
  .homepage-hero-heading {
    font-size: clamp(1.75rem, 7.5vw, 2.2rem) !important;
    letter-spacing: -0.5px;
  }

  .home-hero-section {
    overflow-x: hidden;
  }
}

/* ===== MOBILE NAV MENU (Hamburger) ===== */
/* Open state is driven entirely by inline styles set in script.js (state-based toggle).
   These rules style the links inside the fullscreen overlay when it's open. */

.w-nav-menu .black-nav-links {
  display: block;
  width: 100%;
  padding: 16px 0;
  color: #111 !important;
  font-weight: 600;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.w-nav-menu .black-nav-links:hover {
  color: #00E887 !important;
  background: transparent;
}

/* Ensure .black-navbar is positioned for the dropdown */
.black-navbar {
  position: relative !important;
  overflow: visible !important;
  z-index: 1000 !important;
}

/* Webflow nav overlay — inject correctly below navbar */
.w-nav-overlay {
  position: absolute !important;
  overflow: hidden;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 998 !important;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.w-nav-overlay[style*="display: block"],
.w-nav-overlay[style*="display:block"] {
  display: block !important;
}

/* Links inside webflow overlay */
.w-nav-overlay .black-nav-links,
.w-nav-overlay .w-nav-link {
  display: block !important;
  padding: 14px 24px !important;
  color: #111111 !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  transition: background 0.2s ease !important;
  text-decoration: none !important;
}

.w-nav-overlay .black-nav-links:hover,
.w-nav-overlay .w-nav-link:hover {
  background: rgba(0, 232, 135, 0.08) !important;
  color: #000 !important;
}

.home-hero-text-container .body-1-20px {
  font-size: 1.15rem;
  line-height: 1.72;
  color: #525f7a;
  max-width: 580px;
}

.button-medium {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 232, 135, 0.28);
}

.button-medium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 232, 135, 0.38);
}

.home-hero-image-container {
  position: relative;
}

.home-hero-mockup-image {
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.15));
  transition: transform 0.5s ease;
}

.home-hero-mockup-image:hover {
  transform: scale(1.03);
}

/* ===== SERVICES SECTION ===== */
.growth-section {
  padding: 62px 0 36px;
  position: relative;
}

.growth-section::before {
  content: "";
  position: absolute;
  inset: 90px 12% 0 12%;
  pointer-events: none;
  background: radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.16), transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(0, 232, 135, 0.12), transparent 38%);
  filter: blur(24px);
  z-index: 0;
}

.growth-grid {
  gap: 26px;
  position: relative;
  z-index: 1;
}

.growth-wrapper {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.07);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.growth-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.95), rgba(156, 255, 74, 0.95));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.growth-wrapper:hover {
  transform: translateY(-8px);
  border-color: #c5d4e6;
  box-shadow: 0 24px 54px rgba(16, 24, 40, 0.16);
}

.growth-wrapper:hover::before {
  opacity: 1;
}

.growth-wrapper.large {
  border: 0;
  border-radius: 24px;
  padding: 46px;
  background: radial-gradient(circle at 88% 100%, rgba(37, 99, 235, 0.24), transparent 45%),
    linear-gradient(150deg, #030303 0%, #0f1115 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.growth-wrapper.large::before {
  display: none;
}

.growth-wrapper.large .growth-h2-heading-56px {
  max-width: 590px;
  line-height: 1.08;
  letter-spacing: -0.9px;
}

.growth-wrapper .growth-hero-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(145deg, #f4f7fb, #ffffff);
  border: 1px solid #e5ecf5;
  filter: contrast(1.42) brightness(0.84);
  transition: transform 0.3s ease;
}

.growth-wrapper:hover .growth-hero-image {
  transform: scale(1.06);
}

.growth-wrapper .growth-heading-32px {
  margin-top: 4px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.18;
  font-weight: 700;
}

.growth-wrapper .growth-para-text-18px {
  color: #475569;
  line-height: 1.72;
  font-size: 1.06rem;
  max-width: 98%;
}

.growth-wrapper.large .button-large---yellow-king {
  border-radius: 999px;
  padding: 17px 30px 17px 34px;
  font-weight: 800;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  box-shadow: 0 14px 34px rgba(0, 232, 135, 0.38);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.growth-wrapper.large .button-large---yellow-king:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 232, 135, 0.46);
}

.growth-wrapper.large .button-large---yellow-king .arrow-upright-icon {
  width: 19px;
  height: 19px;
  margin: 0;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 70px 0;
}

.process-section .h2-heading-56px {
  letter-spacing: -1px;
  line-height: 1.16;
  max-width: 680px;
}

.process-accordion {
  border-radius: 14px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-accordion:hover {
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.22);
}

.process-accordion._1 {
  background: rgba(255, 255, 255, 0.04);
}

.accordin-active-text.heading-1 {
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.accordin-active-text {
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.88);
}

/* ===== WE WORK WITH — disable Webflow fade-in ===== */
.home-integration-upper-wrapper,
[data-w-id="8a77d58d-f458-7467-8490-19fe715ee673"] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ===== INDUSTRIES SECTION ===== */
.home-integration-section {
  padding: 70px 0 60px;
}

.home-integration-text-wrapper .h2-heading-56px {
  letter-spacing: -0.9px;
}

/* ===== TESTIMONIALS SECTION ===== */
.company-name-section {
  padding: 56px 0;
  overflow: hidden;
}

.kinds-div-box {
  max-width: 100%;
  overflow: hidden;
}

.heading-11 {
  font-size: 3.2rem;
  letter-spacing: -1.2px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.tabs {
  background: transparent;
  max-width: 100%;
  overflow: visible;
  margin-top: 0;
}

.company-name-section .div-block-4 {
  margin-bottom: 0;
}

.company-name-section .tabs-menu {
  margin-top: 0;
  margin-bottom: 8px;
}

.w-tab-content {
  overflow: hidden;
  max-width: 100%;
}

.tab-pane-tab-1,
.tab-pane-tab-2 {
  padding: 32px 24px;
  max-width: 100%;
  overflow: hidden;
}

.tab-link-tab-1,
.tab-link-tab-2 {
  padding: 14px 38px;
  min-width: 220px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}

.tab-link-tab-1:hover,
.tab-link-tab-2:hover {
  background: rgba(0, 232, 135, 0.08);
  border-color: rgba(0, 232, 135, 0.24);
  transform: translateY(-2px);
}

.tab-link-tab-1.w--current,
.tab-link-tab-2.w--current {
  background: rgba(0, 232, 135, 0.14);
  border-color: rgba(0, 232, 135, 0.4);
}

.star-icon-2 {
  margin-bottom: 24px;
  max-width: 100%;
}

.discription-software {
  font-size: 1.22rem;
  line-height: 1.72;
  color: #374151;
  margin: 28px 0;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ceo-name {
  margin-top: 28px;
}

.heading-ceo {
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.ceo-heading-name {
  font-size: 1.08rem;
  color: #6b7280;
  font-weight: 500;
}

/* ===== BOTTOM CTA SECTION ===== */
.feature-hero-section {
  padding: 80px 0;
  position: relative;
}

.feature-hero-heading {
  font-size: 3.5rem;
  line-height: 1.14;
  letter-spacing: -1.4px;
  margin-bottom: 36px;
}

.button-medium-2 {
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.24);
}

.button-medium-2:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.36);
}

.hero-feature-item-2 {
  padding: 24px;
  border-radius: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-feature-item-2:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.04);
}

.feature-hero-pointer-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.hero-feature-sub-text-pointer {
  line-height: 1.7;
  color: #4B5563;
  font-size: 1.02rem;
}

/* ===== FOOTER ===== */
.footer-section {
  padding: 70px 0 0;
}

/* Pages links — always a visible flex column, no screen size exceptions */
.footer-sub-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100% !important;
}

/* Safety net: prevent any li::before pseudo-element from injecting icons into footer links */
.footer-sub-grid li::before,
.footer-sub-grid li::after {
  content: none !important;
  display: none !important;
}

.footer-sub-grid a {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-center-grid {
  display: block !important;
  visibility: visible !important;
}

.footer-links-wrapper {
  display: block !important;
  visibility: visible !important;
}

.footer-center-wrapper {
  display: block !important;
  visibility: visible !important;
}

.footer-text-link-16px {
  display: block !important;        /* was inline-block without !important — could be overridden */
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 1.02rem;
  color: #1a1a1a !important;
  transition: color 0.25s ease, transform 0.25s ease;
  font-weight: 500;
}

.footer-text-link-16px:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer-bold-text-14px {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.social-media-wrapper {
  transition: transform 0.25s ease, background 0.25s ease;
  border-radius: 8px;
  padding: 10px;
}

.social-media-wrapper:hover {
  transform: translateY(-4px) scale(1.08);
  background: rgba(0, 232, 135, 0.1);
}

.copyright-text {
  font-size: 0.96rem;
  color: #9ca3af;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 991px) {
  .growth-grid {
    gap: 20px;
  }

  .growth-wrapper {
    border-radius: 18px;
    padding: 26px;
  }

  .growth-wrapper.large {
    padding: 36px 30px;
    border-radius: 20px;
  }

  .feature-hero-heading {
    font-size: 2.8rem;
  }

  .heading-11 {
    font-size: 2.6rem;
  }

  .discription-software {
    font-size: 1.15rem;
  }
}

@media (max-width: 767px) {
  .growth-section {
    padding-top: 32px;
  }

  .growth-wrapper .growth-hero-image {
    width: 64px;
    height: 64px;
  }

  .growth-wrapper .growth-para-text-18px {
    max-width: 100%;
    font-size: 1rem;
  }

  .tab-pane-tab-1,
  .tab-pane-tab-2 {
    padding: 20px 16px;
  }

  .feature-hero-heading {
    font-size: 2.2rem;
  }

  .heading-11 {
    font-size: 2rem;
  }

  .discription-software {
    font-size: 1.08rem;
    max-width: 100%;
  }
}

/* ========================================
   INNER PAGE HERO SECTIONS
   ======================================== */

/* Base Inner Page Hero */
.inner-page-hero {
  padding: 100px 0 80px;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.inner-hero-content {
  max-width: 800px;
}

.inner-hero-content.centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.breadcrumb {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.inner-page-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #000;
  margin-bottom: 24px;
}

.highlight-text {
  background: linear-gradient(135deg, #00E887 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.inner-page-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

/* Services Hero */
.services-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Process Hero */
.process-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-steps-preview {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.step-badge {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.step-badge:hover {
  background: #ffffff;
  border-color: #00E887;
  transform: translateY(-2px);
}

/* Why Us / Values Hero */
.values-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.values-preview {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.value-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Industries Hero */
.industries-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.industry-count {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #00E887 0%, #2563EB 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 232, 135, 0.3);
}

/* Contact Hero */
.contact-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-quick-info {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-info-item {
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ===== CONTACT SECTION LAYOUT ===== */
.contact-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-flex {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-left-container {
  flex: 1;
  min-width: 0;
}

.contact-right-container {
  flex: 1;
  min-width: 0;
}

.contact-info-container {
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  margin-top: 2px;
}

.contact-info-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  line-height: 1.5;
}

a.contact-info-value:hover {
  color: #000;
  text-decoration: underline;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-input-wrapper.full-width {
  grid-column: 1 / -1;
}

.contact-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.contact-text-field,
.contact-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  background: #f8fafc;
  color: #0A0A0A;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-text-field:focus,
.contact-textarea:focus {
  border-color: #2563EB;
  background: #fff;
  outline: none;
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-submit-button {
  margin-top: 24px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #00E887, #2563EB);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 232, 135, 0.3);
}

@media screen and (max-width: 767px) {
  .contact-flex {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Inner Pages */
@media screen and (max-width: 991px) {
  .inner-page-title {
    font-size: 2.8rem;
  }

  .inner-page-subtitle {
    font-size: 1.1rem;
  }

  .process-steps-preview {
    gap: 8px;
  }

  .step-badge {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .value-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .contact-quick-info {
    gap: 16px;
  }

  .quick-info-item {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 767px) {
  .inner-page-hero {
    padding: 60px 0 50px;
  }

  .inner-page-title {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .inner-page-subtitle {
    font-size: 1rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }

  .process-steps-preview {
    margin-top: 30px;
  }

  .values-preview {
    margin-top: 30px;
    gap: 12px;
  }

  .industry-count {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .contact-quick-info {
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .quick-info-item {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* ========================================
   UI IMPROVEMENTS — Scroll-to-Top Button
   ======================================== */

#scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00E887, #2563EB);
  color: #000;
  font-size: 26px;
  line-height: 1;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999;
}

#scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#scroll-to-top:hover {
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.5);
  transform: translateY(-3px);
}

/* ========================================
   UI IMPROVEMENTS — Inner Page Hero Animation
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inner-page-hero .inner-hero-content {
  animation: fadeInUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ========================================
   UI IMPROVEMENTS — Contact Form Focus Styles
   ======================================== */

.contact-text-field:focus,
.contact-textarea:focus,
.contact-text-field:focus-visible,
.contact-textarea:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.6);
  outline-offset: 2px;
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  transition: outline 0.2s ease, box-shadow 0.2s ease;
}

.footer-text-field:focus,
.footer-text-field:focus-visible {
  outline: 2px solid rgba(0, 232, 135, 0.5);
  outline-offset: 2px;
  border-color: rgba(0, 232, 135, 0.4);
  box-shadow: 0 0 0 4px rgba(0, 232, 135, 0.1);
}

/* ========================================
   UI IMPROVEMENTS — Navbar Scroll Shadow
   ======================================== */

.black-navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

/* ========================================
   UI IMPROVEMENTS — Newsletter Submit Button
   ======================================== */

.contact-form-submit-button {
  min-width: 44px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-form-submit-button:hover {
  transform: translateX(3px);
  opacity: 0.88;
}

/* ========================================
   PROCESS PAGE REDESIGN
   ======================================== */

/* Glowing Blobs for Hero */
.hero-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.5;
}

.hero-glow-blob.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 232, 135, 0.15);
  top: -100px;
  left: 10%;
  animation: floatOrb 8s ease-in-out infinite alternate;
}

.hero-glow-blob.blob-2 {
  width: 450px;
  height: 450px;
  background: rgba(9, 102, 254, 0.12);
  bottom: -150px;
  right: 15%;
  animation: floatOrb 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-40px) scale(1.1);
  }
}

.process-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 0;
  height: auto;
}

.process-hero .wrapper-1160px,
.process-hero .wrapper-1160px * {
  z-index: 1;
  position: relative;
}

.process-hero .inner-page-title {
  color: #000;
  margin-top: 0;
}

.process-hero .inner-page-subtitle {
  color: #555;
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 20px auto 0;
}

.process-hero .breadcrumb {
  color: #666;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Metrics Strip */
.metrics-strip-section {
  padding: 80px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  position: relative;
  z-index: 2;
}

.metrics-grid {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
}

.metric-number {
  font-family: 'Fraunces', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #2563EB 0%, #00E887 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.metric-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Process Section (Timeline Wrapper) */
.process-timeline-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Vertical Timeline */
.vertical-timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06), rgba(9, 102, 254, 0.3));
  transform: translateX(-50%);
}

.timeline-step {
  position: relative;
  margin-bottom: 120px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.3;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 4px solid #ccc;
  z-index: 2;
  transition: box-shadow 0.5s ease, transform 0.5s ease, border-color 0.5s ease;
}

.timeline-step.active .timeline-dot {
  border-color: #2563EB;
  background: #2563EB;
  box-shadow: 0 0 20px 6px rgba(37, 99, 235, 0.25);
  transform: translate(-50%, -50%) scale(1.3);
}

.timeline-content.glass-card {
  width: 42%;
  padding: 40px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e6ebf2;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.timeline-content.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563EB, #00E887);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.timeline-step.active .timeline-content.glass-card {
  border-color: #c5d4e6;
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
}

.timeline-step.active .timeline-content.glass-card::before {
  opacity: 1;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Fraunces', serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: color 0.5s ease;
}

.timeline-step.active .step-number {
  color: rgba(9, 102, 254, 0.08);
}

.timeline-step:nth-child(even) .step-number {
  left: 20px;
  right: auto;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.step-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
  position: relative;
  z-index: 2;
}

/* Process Timeline Media Queries */
@media screen and (max-width: 991px) {
  .metric-number {
    font-size: 3rem;
  }

  .process-hero {
    padding: 120px 0 60px;
  }

  .timeline-content.glass-card {
    width: 45%;
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .vertical-timeline-container {
    padding: 60px 20px;
  }

  .timeline-line {
    left: 0;
    transform: none;
    margin-left: 30px;
  }

  .timeline-step,
  .timeline-step:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 60px;
  }

  .timeline-content.glass-card {
    width: 100%;
    padding: 30px 20px 30px 60px;
    margin-left: 30px;
  }

  .timeline-dot {
    left: 30px;
    top: 0;
    transform: translate(-50%, 0);
  }

  .timeline-step.active .timeline-dot {
    transform: translate(-50%, 0) scale(1.2);
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step-number,
  .timeline-step:nth-child(even) .step-number {
    right: 20px;
    left: auto;
    font-size: 4rem;
  }
}

/* ========================================
   WE WORK WITH SECTION REDESIGN
   ======================================== */

.home-integration-section {
  padding: 60px 0;
  background: #f1f5f9;
}

.home-integration-section .wrapper-1160px {
  background: #f8fafc;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
  max-width: 1200px;
}

.home-integration-section .h2-heading-56px {
  color: #1f2937;
  text-align: center;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.home-integration-section .boska-text {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
}

.home-integration-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}

/* Industry Card Styling */
.industry-card {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px 28px;
  transition: all 0.25s ease;
}

/* Green hover effect on ALL cards */
.industry-card:hover {
  background: linear-gradient(180deg, #e6f7f5 0%, #d4f1ee 100%);
  border-color: #a8e0d9;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

/* Industry Icon */
.industry-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Industry Title */
.industry-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin: 0 0 8px;
  color: #1f2937;
  font-weight: 700;
}

/* Industry Description */
.industry-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6b7280;
  font-weight: 400;
  margin: 0;
}

/* Responsive - Tablet */
@media screen and (max-width: 991px) {
  .home-integration-section .wrapper-1160px {
    padding: 40px 28px;
  }

  .home-integration-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .home-integration-section .h2-heading-56px {
    font-size: 2.8rem;
    margin-bottom: 32px;
  }
}

/* Responsive - Mobile */
@media screen and (max-width: 767px) {
  .home-integration-section {
    padding: 40px 0;
  }

  .home-integration-section .wrapper-1160px {
    border-radius: 16px;
    padding: 28px 16px;
    margin: 0 16px;
  }

  .home-integration-grid-container {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-integration-section .h2-heading-56px {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .industry-card {
    padding: 24px 16px;
  }

  .industry-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }

  .industry-title {
    font-size: 1.1rem;
  }
}

/* ========================================
   INNER PAGES CTA REDESIGN (Services, etc.)
   ======================================== */

.inner-cta-section {
  padding: 80px 20px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.growth-section+.inner-cta-section {
  padding-top: 40px;
  /* Fixes the 'Much Space' gap between growth section and CTA */
}

/* Specific fix to ensure growth section doesn't push down the CTA */
.growth-section {
  padding-bottom: 20px;
}

.inner-cta-container {
  max-width: 1000px;
  width: 100%;
  background: linear-gradient(135deg, #1f2937 0%, #080c14 100%);
  border-radius: 24px;
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Decorative glow inside CTA */
.inner-cta-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 232, 135, 0.15) 0%, transparent 70%);
  transform: rotate(30deg);
  pointer-events: none;
}

.inner-cta-container::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(9, 102, 254, 0.15) 0%, transparent 70%);
  transform: rotate(-30deg);
  pointer-events: none;
}

.inner-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.inner-cta-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 600;
}

.inner-cta-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .inner-cta-section {
    padding: 40px 16px 60px;
  }

  .growth-section+.inner-cta-section {
    padding-top: 20px;
  }

  .inner-cta-container {
    padding: 50px 24px;
  }

  .inner-cta-heading {
    font-size: 2.5rem;
  }

  .inner-cta-subtext {
    font-size: 1.1rem;
  }
}

/* ========================================
   PROCESS PAGE HEADING REDESIGN
   ======================================== */
.process-timeline-heading-container {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.process-timeline-heading-container .h2-heading-56px {
  margin-bottom: 0;
  color: #111;
}

/* ========================================
   PROCESS PAGE MOBILE SPACING FIXES
   ======================================== */

.process-hero {
  padding: 40px 0 44px;
  margin-top: 0;
}

.process-hero .wrapper-1160px {
  padding-top: 0;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 0;
  min-height: 0;
}

.black-navbar+.process-hero {
  margin-top: 0;
  padding-top: 40px;
}

.process-hero .inner-hero-content {
  margin-top: 0;
  padding-top: 0;
  min-height: 0;
}

/* ========================================
   CASE STUDY TEMPLATE STYLES
   ======================================== */

.case-study-hero {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.cs-tags-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cs-tag {
  background: rgba(0, 232, 135, 0.1);
  color: #00955a;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 232, 135, 0.25);
}

.cs-featured-image-section {
  padding: 0 0 80px 0;
  background: #f8fafc;
}

.cs-featured-image-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
}

.cs-featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-details-section {
  padding: 80px 0;
  background: #ffffff;
}

.cs-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.cs-details-block {
  background: #f8fafc;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid #e6ebf2;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cs-details-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
  border-color: #c5d4e6;
}

.cs-block-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.cs-block-title {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111;
}

.cs-block-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

.cs-tech-section {
  padding: 100px 0;
  background: #f8fafc;
}

.cs-tech-section .section-title {
  color: #0A0A0A;
}

.cs-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.cs-feature-card {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cs-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00E887, #2563EB);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cs-feature-card:hover {
  border-color: #c5d4e6;
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(16, 24, 40, 0.1);
}

.cs-feature-card:hover::before {
  opacity: 1;
}

.cs-feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.cs-feature-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .cs-details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs-tech-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {

  .cs-details-block,
  .cs-feature-card {
    padding: 32px 24px;
  }

  .case-study-hero .inner-page-title {
    font-size: 2.5rem;
  }
}


/* ========================================
   PORTFOLIO PAGE STYLES
   ======================================== */

.portfolio-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.portfolio-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
  background: #f8fafc;
}

.portfolio-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.portfolio-blob-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 50vw;
  max-width: 600px;
}

.portfolio-blob-2 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 60vw;
  max-width: 800px;
}

.portfolio-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(16, 24, 40, 0.06);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00E887, #2563EB);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(16, 24, 40, 0.12);
  border-color: #c5d4e6;
}

.portfolio-card:hover::before {
  opacity: 1;
}

.portfolio-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60%;
  /* 5:3 Aspect Ratio */
  overflow: hidden;
}

.portfolio-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.portfolio-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-title {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.2;
}

.portfolio-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.portfolio-link-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.portfolio-link-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-arrow {
  transform: translate(3px, -3px);
}

@media screen and (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }

  .portfolio-section {
    padding: 60px 0 80px;
  }
}

@media screen and (max-width: 479px) {
  .portfolio-content {
    padding: 24px;
  }

  .portfolio-title {
    font-size: 1.5rem;
  }
}


.process-hero .inner-hero-content.centered {
  margin-top: 0;
  padding-top: 0;
  transform: none;
}

.process-hero .breadcrumb {
  margin-top: 0;
}

.process-hero .inner-page-title {
  margin-bottom: 12px;
}

.process-hero .inner-page-subtitle {
  margin-top: 10px;
}

.metrics-strip-section {
  padding: 28px 0;
}

.metrics-strip-section .wrapper-1160px {
  padding-left: 16px;
  padding-right: 16px;
}

.metrics-grid {
  max-width: none;
  justify-content: space-between;
  gap: 12px;
}

.metric-item {
  flex: 1 1 0;
  min-width: 0;
}

@media screen and (max-width: 991px) {
  .process-hero {
    padding: 0 0 34px;
  }

  .metric-number {
    font-size: clamp(1.8rem, 6vw, 2.3rem);
    margin-bottom: 4px;
  }

  .metric-label {
    font-size: 0.72rem;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 767px) {
  .process-hero {
    padding: 0 0 28px;
  }

  .process-hero .breadcrumb {
    margin-bottom: 10px;
  }

  .process-hero .inner-page-title {
    line-height: 1.08;
  }

  .metrics-strip-section {
    padding: 22px 0;
  }

  .metrics-grid {
    gap: 8px;
  }

  .metric-number {
    font-size: clamp(1.45rem, 5.7vw, 1.9rem);
  }

  .metric-label {
    font-size: 0.64rem;
    letter-spacing: 0.7px;
  }
}

/* ========================================
   WHY US: CORE VALUES TABS REDESIGN
   ======================================== */

.testimonials-tabs {
  width: 100%;
}

.testimonial-heading-container {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-tabs-component {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 40px;
}

.testimonial-tab-menu {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-tab-link {
  display: flex;
  align-items: center;
  padding: 24px 32px;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.testimonial-tab-link:hover {
  background: #ffffff;
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.testimonial-tab-link.w--current {
  background: linear-gradient(135deg, #1f2937 0%, #080c14 100%);
  border-color: #020202;
  transform: translateX(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tab-name-div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-number-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #888;
  transition: color 0.4s ease;
}

.testimonial-tab-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  transition: color 0.4s ease;
}

.testimonial-tab-link.w--current .testimonial-number-text {
  color: var(--color-accent);
}

.testimonial-tab-link.w--current .testimonial-tab-name {
  color: #ffffff;
}

.testimonial-content-div {
  flex: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 300px;
}

.testimonial-content-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial-description-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #111;
  font-weight: 500;
}

.testimonial-quote-icon {
  width: 48px;
  height: 48px;
  opacity: 0.1;
}

@media screen and (max-width: 991px) {
  .testimonials-tabs-component {
    flex-direction: column;
    gap: 40px;
  }

  .testimonial-tab-menu {
    flex: auto;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .testimonial-tab-link {
    flex: 1 1 calc(50% - 12px);
    padding: 20px;
  }

  .testimonial-tab-link.w--current {
    transform: translateY(-4px) translateX(0);
  }

  .testimonial-content-div {
    padding: 40px;
  }
}

@media screen and (max-width: 767px) {
  .testimonial-tab-link {
    flex: 1 1 100%;
  }

  .testimonial-content-div {
    padding: 30px 20px;
  }

  .testimonial-description-text {
    font-size: 1.25rem;
  }

  .testimonial-heading-container {
    margin-bottom: 32px;
  }
}

/* ========================================
   CASE STUDY RESPONSIVE FIXES
   ======================================== */

@media screen and (max-width: 991px) {
  .inner-page-title {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
    letter-spacing: -1px;
    margin-top: 16px;
  }

  .inner-page-subtitle {
    font-size: 1.1rem;
  }

  .cs-featured-image-container {
    margin: 32px 0;
  }
}

@media screen and (max-width: 767px) {
  .cs-details-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cs-tech-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cs-details-block {
    padding: 24px;
  }

  .inner-cta-heading {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .inner-cta-content {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 479px) {
  .inner-page-title {
    font-size: 1.8rem;
  }

  .cs-tag {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

/* ========================================
   AI AGENTS PAGE
   ======================================== */

/* ---- Shared section utilities ---- */
.aia-section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00E887;
  margin-bottom: 14px;
}

.aia-section-heading {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  color: #0A0A0A;
  margin-bottom: 16px;
}

.aia-section-subheading {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

.aia-section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ---- HERO ---- */
.aia-hero {
  background: #ffffff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.aia-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.aia-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 232, 135, 0.18);
  top: -200px;
  left: -100px;
}

.aia-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.12);
  bottom: -150px;
  right: 5%;
}

.aia-glow-3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 200, 100, 0.18);
  top: 40%;
  right: 30%;
}

.aia-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.aia-hero-content {
  animation: fadeInUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.aia-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 232, 135, 0.1);
  border: 1px solid rgba(0, 232, 135, 0.25);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #00E887;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.aia-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00E887;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.aia-hero-heading {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.8px;
  color: #0A0A0A;
  margin-bottom: 24px;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.aia-hero-highlight {
  background: linear-gradient(135deg, #00E887 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aia-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.72;
  color: #525f7a;
  margin-bottom: 36px;
  max-width: 520px;
}

.aia-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.aia-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: linear-gradient(135deg, #00E887, #2563EB);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 28px rgba(0, 232, 135, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.aia-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 232, 135, 0.45);
  color: #fff;
  text-decoration: none;
}

.aia-hero-secondary {
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.aia-hero-secondary:hover {
  color: #00E887;
  border-color: #00E887;
  text-decoration: none;
}

.aia-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.aia-stat {
  padding: 0 28px;
}

.aia-stat:first-child {
  padding-left: 0;
}

.aia-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0A0A0A;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.aia-stat-label {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.3;
}

.aia-stat-divider {
  width: 1px;
  height: 36px;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* ---- Chat Window ---- */
.aia-hero-visual {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.65s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.aia-chat-window {
  width: 100%;
  max-width: 400px;
  background: #111827;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 232, 135, 0.1);
  overflow: hidden;
}

.aia-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: #0d1420;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.aia-agent-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00E887, #2563EB);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  flex-shrink: 0;
}

.aia-avatar-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(0, 232, 135, 0.4);
  animation: avatar-ring 2s ease-in-out infinite;
}

@keyframes avatar-ring {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.3); }
}

.aia-chat-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.aia-chat-status {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.aia-online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00E887;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

.aia-chat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}

.aia-msg {
  display: flex;
  flex-direction: column;
  max-width: 82%;
}

.aia-msg-agent {
  align-self: flex-start;
}

.aia-msg-user {
  align-self: flex-end;
}

.aia-msg-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.aia-msg-agent .aia-msg-bubble {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  border-bottom-left-radius: 4px;
}

.aia-msg-user .aia-msg-bubble {
  background: linear-gradient(135deg, #00E887, #00c46e);
  color: #000;
  font-weight: 500;
  border-bottom-right-radius: 4px;
}

.aia-msg-time {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
  padding-left: 4px;
}

.aia-msg-typing .aia-msg-bubble {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
}

.aia-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: typing-bounce 1.2s ease-in-out infinite;
}

.aia-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.aia-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.aia-chat-footer {
  padding: 14px 20px;
  background: #0d1420;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.aia-chat-input {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.25);
}

.aia-chat-send {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #00E887, #2563EB);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

/* ---- EXPLAINER ---- */
.aia-explainer-section {
  padding: 90px 0;
  background: #f8fafc;
}

.aia-explainer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.aia-explainer-text .aia-section-label {
  display: block;
}

.aia-explainer-text .aia-section-heading {
  margin-bottom: 20px;
}

.aia-explainer-para {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 16px;
}

.aia-compare-list {
  margin-top: 28px;
}

.aia-compare-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.aia-compare-item.bad {
  background: rgba(239, 68, 68, 0.06);
  color: #6b7280;
}

.aia-compare-item.good {
  background: rgba(0, 232, 135, 0.08);
  color: #374151;
  font-weight: 500;
}

.aia-compare-icon {
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.aia-compare-item.bad .aia-compare-icon { color: #ef4444; }
.aia-compare-item.good .aia-compare-icon { color: #00E887; }

/* ---- Flow Diagram ---- */
.aia-explainer-visual {
  display: flex;
  justify-content: center;
}

.aia-flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.aia-flow-node {
  width: 240px;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aia-flow-node:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.aia-flow-brain {
  border-color: rgba(0, 232, 135, 0.3);
  background: linear-gradient(135deg, rgba(0, 232, 135, 0.04), #fff);
}

.aia-flow-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.aia-flow-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}

.aia-flow-arrow {
  font-size: 1.4rem;
  color: #00E887;
  padding: 6px 0;
  font-weight: 700;
}

/* ---- AGENT CARDS ---- */
.aia-agents-section {
  display: block !important;
  padding: 100px 0;
  background: #f8fafc;
}

.aia-agents-section > .wrapper-1160px {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0;
}

/* Section header — full width, stacked above grid */
.aia-agents-header {
  display: block;
  width: 100%;
  margin-bottom: 56px;
}

.aia-agents-heading {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  color: #0A0A0A;
  margin-bottom: 14px;
  margin-top: 6px;
}

.aia-agents-subheading {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.7;
  max-width: 560px;
}

/* Card grid — full width, 4 equal columns */
.aia-agents-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  width: 100%;
}

/* Base card */
.aia-agent-card {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.aia-agent-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00E887, #2563EB);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.aia-agent-card:hover {
  transform: translateY(-4px);
  border-color: #c5d4e6;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.aia-agent-card:hover::before { opacity: 1; }

/* Header row: icon + tag side by side */
.aia-agent-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

/* Icon wrap */
.aia-agent-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f0f4fa;
  border: 1px solid #e2eaf4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563EB;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.aia-agent-card > .aia-agent-icon-wrap {
  margin-bottom: 14px;
}

.aia-agent-card:hover .aia-agent-icon-wrap {
  transform: scale(1.08);
}

/* Tags */
.aia-agent-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.aia-agent-tag--flagship {
  background: rgba(0, 232, 135, 0.12);
  color: #00955a;
}

.aia-agent-tag--voice {
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
}

/* Title & desc */
.aia-agent-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.aia-agent-desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Features list */
.aia-agent-features {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aia-agent-features li {
  list-style: none !important;
  list-style-type: none !important;
  font-size: 0.82rem;
  color: #374151;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}

.aia-agent-features li::before {
  content: "✓";
  color: #00C473;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---- HERO CARD: CS Agent ---- */
.aia-agent-card--hero {
  background: #ffffff;
  border-color: rgba(0, 232, 135, 0.3);
  box-shadow: 0 4px 20px rgba(0, 232, 135, 0.08), 0 1px 4px rgba(0,0,0,0.06);
}

.aia-agent-card--hero::before {
  opacity: 1;
  height: 3px;
}

.aia-agent-card--hero:hover {
  border-color: rgba(0, 232, 135, 0.5);
  box-shadow: 0 20px 48px rgba(0, 232, 135, 0.12), 0 4px 12px rgba(0,0,0,0.06);
}

.aia-agent-hero-glow {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 232, 135, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.aia-agent-card--hero .aia-agent-icon-wrap {
  background: rgba(0, 232, 135, 0.08);
  border-color: rgba(0, 232, 135, 0.2);
  color: #00955a;
}

.aia-agent-card--hero .aia-agent-title {
  font-size: 1.2rem;
  color: #0f172a;
}

/* Hero stats row */
.aia-agent-stats {
  display: flex;
  gap: 0;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #f0f4fa;
}

.aia-agent-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.aia-agent-stat + .aia-agent-stat {
  padding-left: 20px;
  border-left: 1px solid #e6ebf2;
}

.aia-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00955a, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  line-height: 1;
}

.aia-stat-label {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
}

/* ---- VOICE CARD styling ---- */
.aia-agent-card--voice {
  border-color: rgba(0, 232, 135, 0.2);
  background: linear-gradient(160deg, rgba(0, 232, 135, 0.04) 0%, #ffffff 50%);
}

.aia-agent-card--voice::before {
  background: linear-gradient(90deg, #00E887, #10b981);
}

.aia-agent-card--voice .aia-agent-icon-wrap {
  background: rgba(0, 232, 135, 0.08);
  border-color: rgba(0, 232, 135, 0.2);
  color: #00955a;
}

.aia-agent-voice-glow {
  position: absolute;
  top: -50px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 232, 135, 0.06) 0%, transparent 70%);
  pointer-events: none;
}


/* ---- HOW IT WORKS ---- */
.aia-how-section {
  padding: 100px 0;
  background: #0a0f1a;
  position: relative;
  overflow: hidden;
}

.aia-how-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(0, 232, 135, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 100%, rgba(37, 99, 235, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.aia-how-section .aia-section-heading { color: #ffffff; }
.aia-how-section .aia-section-subheading { color: rgba(255, 255, 255, 0.5); }

/* Timeline: horizontal numbered steps with connecting line */
.aia-timeline {
  position: relative;
  margin-top: 60px;
}

.aia-timeline-line { display: none; }

.aia-timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* Horizontal connector line through all nodes */
.aia-timeline-steps::before {
  content: '';
  position: absolute;
  top: 26px; /* half of node height */
  left: 32px; /* half of node width */
  right: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 0;
}

.aia-timeline-step {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Number node */
.aia-timeline-node {
  width: 64px;
  height: 52px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.aia-timeline-step:hover .aia-timeline-node {
  border-color: rgba(0, 232, 135, 0.4);
  background: rgba(0, 232, 135, 0.06);
}

.aia-timeline-node span {
  font-size: 0.95rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00E887, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.aia-timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.aia-timeline-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

/* ---- BENEFITS ---- */
.aia-benefits-section {
  padding: 90px 0;
  background: #ffffff;
}

.aia-benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.aia-benefits-left .aia-section-label,
.aia-benefits-left .aia-section-heading {
  text-align: left;
}

.aia-benefits-para {
  font-size: 1.05rem;
  line-height: 1.72;
  color: #64748b;
  margin-bottom: 32px;
}

.aia-benefits-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: #0A0A0A;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.aia-benefits-cta:hover {
  background: #1e293b;
  transform: translateY(-2px);
  color: #ffffff;
  text-decoration: none;
}

.aia-benefits-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.aia-benefit-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #f1f5f9;
  align-items: flex-start;
  transition: background 0.2s ease;
}

.aia-benefit-item:last-child {
  border-bottom: none;
}

.aia-benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.aia-benefit-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 5px;
}

.aia-benefit-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

/* ---- TECH STACK ---- */
.aia-tech-section {
  padding: 90px 0;
  background: #f8fafc;
}

.aia-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.aia-tech-card {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  padding: 26px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.aia-tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 232, 135, 0.3);
}

.aia-tech-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.aia-tech-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}

/* ---- CASE STUDY ---- */
.aia-case-section {
  padding: 40px 0 90px;
  background: #f8fafc;
}

.aia-case-card {
  background: linear-gradient(135deg, #0a0f1e 0%, #050810 100%);
  border-radius: 24px;
  padding: 64px 60px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.aia-case-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 232, 135, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.aia-case-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00E887;
  margin-bottom: 16px;
}

.aia-case-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.6px;
  max-width: 600px;
  margin-bottom: 20px;
}

.aia-case-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 680px;
  margin-bottom: 40px;
}

.aia-case-metrics {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.aia-case-metric {
  padding: 0 36px 0 0;
  margin-right: 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.aia-case-metric:last-child {
  border-right: none;
}

.aia-case-metric-num {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00E887, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.aia-case-metric-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  line-height: 1.3;
}

.aia-case-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #00E887, #2563EB);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 232, 135, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.aia-case-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 232, 135, 0.42);
  color: #fff;
  text-decoration: none;
}

/* ---- RESPONSIVE ---- */
@media screen and (max-width: 991px) {
  .aia-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .aia-hero-heading {
    font-size: 2.8rem;
  }

  .aia-hero-visual {
    order: -1;
  }

  .aia-chat-window {
    max-width: 360px;
  }

  .aia-explainer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .aia-explainer-visual {
    order: -1;
  }

  .aia-agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aia-agent-card--hero,
  .aia-agent-card--wide,
  .aia-agent-card--last {
    grid-column: span 1;
  }

  .aia-timeline-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .aia-timeline-steps::before {
    display: none;
  }

  .aia-benefits-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .aia-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aia-section-heading,
  .aia-agents-heading {
    font-size: 2.2rem;
  }

  .aia-case-card {
    padding: 40px 32px;
  }

  .aia-case-metrics {
    gap: 24px;
  }

  .aia-case-metric {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    min-width: 120px;
  }
}

@media screen and (max-width: 767px) {
  .aia-hero {
    padding: 70px 0 60px;
  }

  .aia-hero-heading {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .aia-hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .aia-stat-divider {
    display: none;
  }

  .aia-stat {
    padding: 0;
    min-width: 100px;
  }

  .aia-agents-grid {
    grid-template-columns: 1fr;
  }

  .aia-agent-card--hero,
  .aia-agent-card--wide,
  .aia-agent-card--last {
    grid-column: span 1;
  }

  .aia-timeline-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .aia-timeline-steps::before {
    display: none;
  }

  .aia-tech-grid {
    grid-template-columns: 1fr;
  }

  .aia-case-heading {
    font-size: 1.5rem;
  }

  .aia-case-card {
    padding: 32px 24px;
  }

  .aia-section-heading,
  .aia-agents-heading {
    font-size: 1.9rem;
  }

  .aia-agents-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media screen and (max-width: 479px) {
  .aia-hero-heading {
    font-size: clamp(1.75rem, 8vw, 2.1rem);
    letter-spacing: -0.5px;
  }

  .aia-hero {
    overflow-x: hidden;
  }

  .aia-hero-inner {
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* ---- Hero Channel Pills ---- */
.aia-hero-channels {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  margin-top: -16px;
}

.aia-channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #475569;
  cursor: default;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.aia-channel-pill:hover {
  background: #e8f0f8;
  border-color: #c5d4e6;
  color: #1e40af;
  transform: translateY(-1px);
}

.aia-channel-pill.aia-channel-voice {
  background: rgba(0, 232, 135, 0.1);
  border-color: rgba(0, 232, 135, 0.3);
  color: #00955a;
  font-weight: 600;
}

.aia-channel-pill.aia-channel-voice:hover {
  background: rgba(0, 232, 135, 0.18);
  border-color: rgba(0, 232, 135, 0.5);
  color: #00E887;
}

/* Voice card variants now defined in AGENT CARDS section above */

/* ---- VOICE SECTION ---- */
.aia-voice-section {
  padding: 90px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.aia-voice-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.aia-voice-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Phone Mockup */
.aia-voice-visual {
  display: flex;
  justify-content: center;
}

.aia-phone-mockup {
  width: 100%;
  max-width: 400px;
  background: #111827;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(37, 99, 235, 0.15);
  overflow: hidden;
}

.aia-phone-top {
  padding: 24px 24px 20px;
  background: #0d1420;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.aia-phone-caller {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.aia-phone-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #00E887);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.aia-phone-caller-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.aia-phone-caller-num {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.aia-phone-timer {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00E887;
  text-align: center;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 2px;
}

.aia-phone-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 28px;
}

.aia-wave-bar {
  width: 4px;
  border-radius: 2px;
  background: #00E887;
  animation: wave-pulse 1.2s ease-in-out infinite;
}

.aia-wave-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.aia-wave-bar:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.aia-wave-bar:nth-child(3) { height: 24px; animation-delay: 0.2s; }
.aia-wave-bar:nth-child(4) { height: 18px; animation-delay: 0.3s; }
.aia-wave-bar:nth-child(5) { height: 24px; animation-delay: 0.2s; }
.aia-wave-bar:nth-child(6) { height: 16px; animation-delay: 0.1s; }
.aia-wave-bar:nth-child(7) { height: 8px; animation-delay: 0s; }

@keyframes wave-pulse {
  0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.aia-phone-transcript {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 240px;
  overflow-y: auto;
}

.aia-transcript-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.83rem;
  line-height: 1.5;
  max-width: 90%;
}

.aia-transcript-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.5;
}

.aia-transcript-agent {
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.85);
}

.aia-transcript-agent .aia-transcript-label {
  color: #00E887;
  opacity: 1;
}

.aia-transcript-user {
  align-self: flex-end;
  text-align: right;
  color: rgba(255, 255, 255, 0.65);
}

.aia-phone-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 18px 24px;
  background: #0d1420;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.aia-phone-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.aia-phone-mute, .aia-phone-speaker {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}

.aia-phone-end {
  background: #ef4444;
  color: #fff;
}

/* Voice Content */
.aia-voice-content .aia-section-heading {
  color: #0A0A0A;
}

.aia-voice-content .aia-section-label {
  display: block;
}

.aia-voice-para {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 32px;
}

.aia-voice-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.aia-voice-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.aia-voice-feat-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.aia-voice-feat-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 3px;
}

.aia-voice-feat-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}

/* Responsive voice section */
@media screen and (max-width: 991px) {
  .aia-voice-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .aia-voice-visual {
    order: -1;
  }
}

/* ========================================
   INTERACTIVE AI DEMO SECTION
   ======================================== */
.aia-demo-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.aia-demo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 232, 135, 0.06), transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05), transparent 50%);
  pointer-events: none;
}

.aia-demo-card {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 24px;
  padding: 50px;
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 48px rgba(16, 24, 40, 0.08);
  overflow: hidden;
}

.aia-demo-header {
  text-align: center;
  margin-bottom: 40px;
}

.aia-demo-label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 232, 135, 0.1);
  color: #00E887;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.aia-demo-title {
  color: #0A0A0A;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.aia-demo-subtitle {
  color: #64748b;
  font-size: 1.1rem;
}

/* Form Styles */
.aia-demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.aia-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aia-form-group.full-width {
  grid-column: 1 / -1;
}

.aia-form-label {
  color: #374151;
  font-size: 0.95rem;
  font-weight: 600;
}

.aia-form-input, .aia-form-textarea, .aia-form-select {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  color: #0A0A0A;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.aia-form-input:focus, .aia-form-textarea:focus, .aia-form-select:focus {
  outline: none;
  border-color: #00E887;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 232, 135, 0.1);
}

.aia-form-textarea {
  min-height: 100px;
  resize: vertical;
}

.aia-form-select option {
  background: #ffffff;
  color: #0A0A0A;
}

.aia-demo-btn {
  grid-column: 1 / -1;
  margin-top: 10px;
  background: linear-gradient(135deg, #00E887, #2563EB);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.aia-demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 232, 135, 0.4);
}

.aia-demo-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Call UI */
.aia-call-ui {
  text-align: center;
  padding: 40px 0;
}

.aia-call-status {
  color: #00E887;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.aia-call-status .aia-pulse-dot {
  width: 10px;
  height: 10px;
  background: #00E887;
  border-radius: 50%;
  animation: aia-pulse 1.5s infinite;
}

.aia-visualizer {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 30px;
}

.aia-vis-bar {
  width: 4px;
  height: 20px;
  background: linear-gradient(to top, #00E887, #2563EB);
  border-radius: 4px;
  animation: aia-vis-anim 1s infinite ease-in-out;
}

.aia-vis-bar:nth-child(2) { animation-delay: 0.1s; }
.aia-vis-bar:nth-child(3) { animation-delay: 0.2s; }
.aia-vis-bar:nth-child(4) { animation-delay: 0.3s; }
.aia-vis-bar:nth-child(5) { animation-delay: 0.4s; }
.aia-vis-bar:nth-child(6) { animation-delay: 0.3s; }
.aia-vis-bar:nth-child(7) { animation-delay: 0.2s; }
.aia-vis-bar:nth-child(8) { animation-delay: 0.1s; }

.aia-timer {
  font-size: 3rem;
  font-weight: 700;
  color: #0A0A0A;
  font-variant-numeric: tabular-nums;
  margin-bottom: 40px;
}

.aia-end-call-btn {
  background: #ef4444;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.aia-end-call-btn:hover {
  background: #dc2626;
  transform: scale(1.05);
}

/* =============================================
   SUCCESS CARD — PREMIUM REDESIGN
   ============================================= */

/* Dark gradient overlay covers the white card */
#demo-success-phase {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f0c29 0%, #1b1047 45%, #0d2438 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  z-index: 10;
  overflow: hidden;
}

/* Depth orbs */
.aia-success-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.aia-success-orb--1 {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(0, 232, 135, 0.14) 0%, transparent 70%);
  animation: aia-orb-drift 9s ease-in-out infinite;
}
.aia-success-orb--2 {
  width: 280px;
  height: 280px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  animation: aia-orb-drift 12s ease-in-out infinite reverse;
}
@keyframes aia-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -24px) scale(1.1); }
}

/* Center content above orbs */
.aia-success-ui {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 64px 48px;
}

/* Animated checkmark icon */
.aia-success-icon {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
}

.aia-success-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(0, 232, 135, 0.45);
  animation: aia-ring-pulse 2.4s ease-in-out infinite;
}
.aia-success-ring::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 232, 135, 0.15);
  animation: aia-ring-pulse 2.4s ease-in-out infinite 0.4s;
}
@keyframes aia-ring-pulse {
  0%   { transform: scale(1);    opacity: 1; }
  50%  { transform: scale(1.14); opacity: 0.4; }
  100% { transform: scale(1);    opacity: 1; }
}

.aia-success-check {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 232, 135, 0.1);
  border: 1.5px solid rgba(0, 232, 135, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 28px rgba(0, 232, 135, 0.35),
    inset 0 0 18px rgba(0, 232, 135, 0.08);
}
.aia-success-check svg {
  filter: drop-shadow(0 0 7px rgba(0, 232, 135, 0.7));
}

/* Title — gradient text */
.aia-success-ui .aia-demo-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ffffff 20%, #a5f3e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Subtitle — muted white */
.aia-success-ui .aia-demo-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
}

/* CTA button — upgraded */
.aia-success-ui .aia-hero-cta {
  background: linear-gradient(135deg, #00E887 0%, #00c4d4 100%);
  box-shadow: 0 8px 28px rgba(0, 232, 135, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  padding: 17px 34px;
  font-size: 1rem;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.aia-success-ui .aia-hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 232, 135, 0.55), 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes aia-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes aia-vis-anim {
  0%, 100% { height: 20px; }
  50% { height: 80px; }
}

@media screen and (max-width: 767px) {
  .aia-demo-form {
    grid-template-columns: 1fr;
  }
  .aia-demo-card {
    padding: 30px 20px;
  }
  .aia-demo-title {
    font-size: 2rem;
  }
  .aia-success-ui {
    padding: 48px 24px;
  }
  .aia-success-ui .aia-demo-title {
    font-size: 2.2rem;
  }
}
/* === REDESIGN ENHANCEMENTS (consolidated above) === */

/* === GLOBAL NAVIGATION FIXES === */
.nav-menu {
  margin-left: auto !important;
  gap: 12px !important; 
}

.black-nav-links {
  padding: 6px 10px !important;
  font-size: 14px !important;
  white-space: nowrap !important;
  font-weight: 600 !important;
}

.navbar-button-wrapper {
  margin-left: 16px;
}

/* === CONTACT PAGE REFINEMENTS === */
.contact-hero {
  padding-bottom: 40px !important;
}

.contact-section {
  padding-top: 0 !important;
  padding-bottom: 60px !important;
  background: radial-gradient(circle at 10% 20%, rgba(0, 232, 135, 0.03) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 40%),
              #f8fafc;
}

.contact-right-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-form-grid {
  gap: 20px !important;
}

/* Tablet Responsiveness for Form Grid */
@media screen and (max-width: 850px) {
  .contact-form-grid {
    grid-template-columns: 1fr !important;
  }
  .contact-flex {
    flex-direction: column !important;
    gap: 40px !important;
  }
}

/* Global Polish */
#scroll-to-top {
  right: 30px !important;
  bottom: 30px !important;
  z-index: 1000;
}

/* Post-Call Summary Box */
.aia-summary-container {
  margin-top: 32px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.05); /* Deep dark background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-align: left;
  animation: aia-fade-up 0.6s ease-out;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.aia-summary-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00E887;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.aia-summary-text {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
}

/* Summary status area in the success card */
.aia-summary-status {
  margin-top: 24px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aia-summary-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

/* Spinner replacing the old pulse-dot */
.aia-loading-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 232, 135, 0.25);
  border-top-color: #00E887;
  border-radius: 50%;
  flex-shrink: 0;
  animation: csm-spin 0.8s linear infinite;
}
@keyframes csm-spin {
  to { transform: rotate(360deg); }
}

/* "View Call Summary" button */
.aia-view-summary-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  animation: csm-btn-appear 0.4s ease;
}
.aia-view-summary-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-1px);
}
@keyframes csm-btn-appear {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==============================================
   CALL SUMMARY MODAL — side panel
   ============================================== */

.csm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 20, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.csm-panel {
  width: 480px;
  max-width: 100%;
  background: linear-gradient(160deg, #0f0c29 0%, #111827 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
}
.csm-overlay.csm-open .csm-panel {
  transform: translateX(0);
}

/* Header */
.csm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}
.csm-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.csm-header-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 232, 135, 0.1);
  border: 1px solid rgba(0, 232, 135, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00E887;
  flex-shrink: 0;
}
.csm-header-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.2px;
}
.csm-header-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
  font-family: monospace;
}
.csm-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.csm-close-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Scrollable body */
.csm-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.csm-body::-webkit-scrollbar { width: 4px; }
.csm-body::-webkit-scrollbar-track { background: transparent; }
.csm-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* Meta row — duration, customer, sentiment */
.csm-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}
.csm-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 110px;
}
.csm-row-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}
.csm-row-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 3px;
}
.csm-row-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
}
.csm-contact {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

/* Sentiment badge */
.csm-sentiment-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border-radius: 50px;
  border: 1px solid;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.csm-sentiment-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Content sections */
.csm-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px 18px;
}
.csm-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
}
.csm-section-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(0, 232, 135, 0.08);
  border: 1px solid rgba(0, 232, 135, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00E887;
  flex-shrink: 0;
}
.csm-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: rgba(255, 255, 255, 0.45);
}
.csm-purpose-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* Bullet list */
.csm-list {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.csm-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  list-style: none !important;
}
.csm-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00E887;
  flex-shrink: 0;
  margin-top: 7px;
}
.csm-empty {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.28);
  font-style: italic;
  margin: 0;
}

/* Meeting badge */
.csm-meeting-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
}
.csm-meeting-yes {
  background: rgba(0, 196, 115, 0.12);
  color: #00C473;
  border: 1px solid rgba(0, 196, 115, 0.22);
}
.csm-meeting-no {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.csm-meeting-time {
  font-weight: 400;
  font-size: 0.83rem;
}

/* Footer CTA */
.csm-footer {
  padding-top: 4px;
}
.csm-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 28px;
  background: linear-gradient(135deg, #00E887 0%, #00c4d4 100%);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 232, 135, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.csm-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 232, 135, 0.48);
  color: #0a0a0a;
  text-decoration: none;
}

/* Mobile */
@media screen and (max-width: 560px) {
  .csm-panel { width: 100%; border-left: none; }
  .csm-meta-row { flex-direction: column; align-items: flex-start; }
}

@keyframes aia-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ========================================
   GLOBAL RESPONSIVE FOUNDATION
   ======================================== */

/* Safe image sizing on all viewports */
img {
  max-width: 100%;
  height: auto;
}

/* Ensure every wrapper has horizontal breathing room */
.wrapper-1160px {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

/* Prevent horizontal scroll on all pages */
.page-wrapper {
  overflow-x: hidden;
}


/* ========================================
   INDUSTRIES PAGE — BASE STYLES
   ======================================== */

.ind-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ind-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(0, 232, 135, 0.09);
  border: 1px solid rgba(0, 232, 135, 0.22);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00955a;
}

.ind-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00E887;
  flex-shrink: 0;
}

/* Sections */
.ind-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Force the wrapper inside ind-section to stack header above grid */
.ind-section > .wrapper-1160px {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

.ind-section.alt {
  background: #f8fafc;
}

.ind-section-header {
  margin-bottom: 56px;
}

.ind-section-header.centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ind-section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #00E887;
  margin-bottom: 14px;
}

.ind-section-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -1px;
  color: #0A0A0A;
  margin-bottom: 16px;
}

.ind-section-sub {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  max-width: 640px;
}

.ind-section-header.centered .ind-section-sub {
  margin: 0 auto;
}

/* Grid: featured card (full-width) + 7 regular cards (3-col) */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Base card */
.ind-card {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ind-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00E887, #2563EB);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ind-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(16, 24, 40, 0.10);
  border-color: #c5d4e6;
}

.ind-card:hover::before {
  opacity: 1;
}

/* Featured card — full-width horizontal layout */
.ind-card.featured {
  grid-column: 1 / -1;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid #e6ebf2;
  padding: 48px;
}

.ind-featured-left {
  flex: 0 0 280px;
}

.ind-featured-right {
  flex: 1;
}

.ind-card-emoji {
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1;
}

.ind-card.featured .ind-card-emoji {
  font-size: 3.2rem;
}

.ind-card-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00E887;
  margin-bottom: 8px;
}

.ind-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0A0A0A;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ind-card.featured .ind-card-title {
  font-size: 2rem;
}

.ind-card-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 20px;
}

.ind-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.ind-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(0, 232, 135, 0.08);
  border: 1px solid rgba(0, 232, 135, 0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #00955a;
  letter-spacing: 0.3px;
}

.ind-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 13px 24px;
  background: linear-gradient(135deg, #00E887, #2563EB);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 232, 135, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ind-featured-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 232, 135, 0.42);
  color: #fff;
  text-decoration: none;
}

/* Approach Grid */
.ind-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 0;
}

.ind-approach-card {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ind-approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
}

.ind-approach-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  margin-bottom: 16px;
}

.ind-approach-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 12px;
}

.ind-approach-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b5563;
}


/* ========================================
   WHY US PAGE — BASE STYLES
   ======================================== */

/* Hero stats */
.wu-stats-hero {
  margin-top: 44px;
}

.wu-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wu-stat {
  text-align: center;
  padding: 24px 16px;
  background: #f8fafc;
  border: 1px solid #e6ebf2;
  border-radius: 16px;
}

.wu-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563EB, #00E887);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 6px;
}

.wu-stat-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.4;
}

/* Sections */
.wu-section {
  padding: 80px 0;
  background: #ffffff;
}

.wu-section.alt {
  background: #f8fafc;
}

.wu-section-header {
  margin-bottom: 52px;
}

.wu-section-header.centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wu-section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #00E887;
  margin-bottom: 14px;
}

.wu-section-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.8px;
  color: #0A0A0A;
  margin-bottom: 16px;
}

.wu-section-sub {
  font-size: 1.08rem;
  color: #4b5563;
  line-height: 1.7;
  max-width: 640px;
}

.wu-section-header.centered .wu-section-sub {
  margin: 0 auto;
}

/* Values Carousel */
.wu-values-carousel {
  position: relative;
}

.wu-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wu-value-card {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wu-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00E887, #2563EB);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wu-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(16, 24, 40, 0.10);
  border-color: #c5d4e6;
}

.wu-value-card:hover::before {
  opacity: 1;
}

.wu-card-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  margin-bottom: 12px;
}

.wu-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.wu-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0A0A0A;
  margin-bottom: 12px;
}

.wu-card-desc {
  font-size: 0.96rem;
  line-height: 1.72;
  color: #4b5563;
  margin-bottom: 20px;
}

.wu-card-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 232, 135, 0.08);
  border: 1px solid rgba(0, 232, 135, 0.22);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00955a;
}

.wu-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

/* What Sets Us Apart */
.wu-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.wu-diff-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wu-diff-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.wu-diff-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00E887;
  flex-shrink: 0;
  margin-top: 6px;
}

.wu-diff-text {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  font-weight: 500;
}

.wu-diff-visual {
  background: linear-gradient(135deg, #1f2937 0%, #080c14 100%);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.wu-diff-visual::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 232, 135, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.wu-diff-visual-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.wu-diff-visual-title span {
  color: #00E887;
}

.wu-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.wu-check-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wu-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 232, 135, 0.15);
  border: 1px solid rgba(0, 232, 135, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #00E887;
  flex-shrink: 0;
}

.wu-check-item span {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}


/* ========================================
   GLOBAL TYPOGRAPHY SCALING
   ======================================== */

/* Large section headings (Webflow h2-heading-56px) */
@media screen and (max-width: 991px) {
  .h2-heading-56px {
    font-size: clamp(2rem, 4.5vw, 2.8rem) !important;
    letter-spacing: -0.6px !important;
  }

  .h1-heading-72px {
    font-size: clamp(2.4rem, 6vw, 3.5rem) !important;
    letter-spacing: -1px !important;
  }

  .homepage-hero-heading {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem) !important;
  }

  .growth-h2-heading-56px {
    font-size: clamp(2rem, 4.5vw, 2.8rem) !important;
  }
}

@media screen and (max-width: 767px) {
  .h2-heading-56px {
    font-size: clamp(1.8rem, 6vw, 2.4rem) !important;
    letter-spacing: -0.4px !important;
  }

  .h1-heading-72px {
    font-size: clamp(2rem, 7vw, 3rem) !important;
  }

  .homepage-hero-heading {
    font-size: clamp(2rem, 7vw, 3rem) !important;
    letter-spacing: -0.8px !important;
  }

  .growth-h2-heading-56px {
    font-size: clamp(1.8rem, 6vw, 2.4rem) !important;
    letter-spacing: -0.5px !important;
  }
}

@media screen and (max-width: 479px) {
  .h2-heading-56px {
    font-size: 1.75rem !important;
    letter-spacing: -0.3px !important;
  }

  .h1-heading-72px {
    font-size: 2rem !important;
  }

  .homepage-hero-heading {
    font-size: clamp(1.25rem, 6vw, 1.7rem) !important;
    letter-spacing: -0.3px !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .aia-hero-heading {
    font-size: clamp(1.5rem, 8vw, 2.2rem) !important;
    letter-spacing: -0.5px !important;
    line-height: 1.15 !important;
  }

  .inner-page-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem) !important;
    letter-spacing: -0.5px !important;
    line-height: 1.15 !important;
  }

  .aia-section-heading {
    font-size: clamp(1.4rem, 7vw, 1.8rem) !important;
    letter-spacing: -0.3px !important;
  }

  .growth-h2-heading-56px {
    font-size: 1.75rem !important;
  }

  .feature-hero-heading {
    font-size: 1.75rem !important;
    line-height: 1.22 !important;
  }
}


/* ========================================
   HOMEPAGE — HERO & CTA RESPONSIVE
   ======================================== */

@media screen and (max-width: 991px) {
  .home-hero-flex {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 40px !important;
  }

  .home-hero-text-container {
    max-width: 100% !important;
  }

  .home-hero-image-container {
    max-width: 480px !important;
    width: 100% !important;
  }

  .home-hero-text-container .body-1-20px {
    margin-left: auto;
    margin-right: auto;
  }

  .home-button-cta-container {
    justify-content: center !important;
    display: flex;
  }

  /* Feature CTA section */
  .feature-hero-flex {
    flex-direction: column !important;
    gap: 40px !important;
    align-items: center !important;
    text-align: center !important;
  }

  .feature-hero-text-container,
  .feature-hero-right-container {
    max-width: 100% !important;
    width: 100% !important;
  }

  .feature-hero-button-cta-wrapper {
    justify-content: center !important;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-flex {
    padding-top: 30px !important;
    padding-bottom: 20px !important;
  }

  .home-hero-image-container {
    max-width: 360px !important;
  }

  .feature-hero-section {
    padding: 50px 0 !important;
  }

  .hero-feature-container-1 {
    display: none !important;
  }

  .feature-hero-right-container {
    display: none !important;
  }
}

@media screen and (max-width: 479px) {
  .home-hero-text-container .body-1-20px {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
  }

  .home-hero-image-container {
    max-width: 280px !important;
  }
}


/* ========================================
   FOOTER — RESPONSIVE
   ======================================== */

@media screen and (max-width: 991px) {
  .footer-flex {
    flex-wrap: wrap !important;
    gap: 40px !important;
  }

  .footer-left-wrapper {
    flex: 1 1 220px !important;
    min-width: 200px !important;
  }

  .footer-center-wrapper {
    flex: 1 1 180px !important;
    min-width: 160px !important;
  }

  .footer-right-wrapper {
    flex: 1 1 220px !important;
    min-width: 200px !important;
  }
}

@media screen and (max-width: 767px) {
  .footer-flex {
    flex-direction: column !important;
    gap: 36px !important;
  }

  .footer-left-wrapper,
  .footer-center-wrapper,
  .footer-right-wrapper {
    display: block !important;      /* ensure none of these are hidden */
    visibility: visible !important;
    flex: none !important;
    width: 100% !important;
  }

  /* Explicit display: flex here — the base rule covers it but belt-and-suspenders
     ensures the 767px cascade never drops back to Webflow's display: grid */
  .footer-sub-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .footer-center-grid,
  .footer-links-wrapper {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
  }

  .footer-text-link-16px {
    display: block !important;
    visibility: visible !important;
    font-size: 0.9rem !important;
  }

  .footer-banner {
    padding: 20px 16px !important;
    text-align: center !important;
  }

  .copyright-text {
    font-size: 0.85rem !important;
  }
}

@media screen and (max-width: 479px) {
  .footer-sub-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .footer-links-wrapper,
  .footer-center-grid,
  .footer-center-wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
  }

  .footer-text-link-16px {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #1a1a1a !important;
    width: 100% !important;
  }

  .footer-form {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .footer-text-field {
    width: 100% !important;
    border-radius: 8px !important;
  }

  .contact-form-submit-button {
    border-radius: 8px !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    width: 100% !important;
  }
}


/* ========================================
   INDUSTRIES PAGE — RESPONSIVE
   ======================================== */

@media screen and (max-width: 991px) {
  .ind-section {
    padding: 60px 0;
  }

  .ind-section-title {
    font-size: 2rem;
  }

  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Featured card stacks on tablet */
  .ind-card.featured {
    flex-direction: column;
    gap: 28px;
    padding: 36px 28px;
  }

  .ind-featured-left {
    flex: none;
    width: 100%;
  }

  .ind-featured-right {
    flex: none;
    width: 100%;
  }

  .ind-approach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .wu-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .wu-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .wu-section-title {
    font-size: 1.9rem;
  }

  .wu-diff-grid {
    gap: 48px;
  }
}

@media screen and (max-width: 767px) {
  .ind-section {
    padding: 48px 0;
  }

  .ind-section-header {
    margin-bottom: 36px;
  }

  .ind-section-title {
    font-size: 1.7rem;
    letter-spacing: -0.5px;
  }

  .ind-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ind-card {
    padding: 28px 22px;
  }

  .ind-card.featured {
    padding: 28px 22px;
  }

  .ind-card-title {
    font-size: 1.35rem;
  }

  .ind-card.featured .ind-card-title {
    font-size: 1.5rem;
  }

  .ind-approach-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ind-approach-card {
    padding: 28px 22px;
  }

  .wu-section {
    padding: 48px 0;
  }

  .wu-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wu-diff-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wu-diff-visual {
    padding: 36px 28px;
  }

  .wu-section-title {
    font-size: 1.6rem;
  }

  .wu-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .wu-stat {
    padding: 18px 12px;
  }

  .wu-stat-num {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 479px) {
  .ind-section-title {
    font-size: 1.5rem;
    letter-spacing: -0.3px;
  }

  .ind-badges {
    gap: 8px;
  }

  .ind-badge {
    font-size: 0.78rem;
    padding: 7px 12px;
  }

  .wu-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wu-section-title {
    font-size: 1.45rem;
  }

  .wu-diff-visual {
    padding: 28px 20px;
  }

  .wu-diff-visual-title {
    font-size: 1.25rem;
  }
}


/* ========================================
   GROWTH / SERVICES SECTION — RESPONSIVE
   ======================================== */

@media screen and (max-width: 767px) {
  .growth-wrapper.large {
    padding: 30px 24px !important;
  }

  .growth-wrapper {
    padding: 24px 20px !important;
  }
}

@media screen and (max-width: 479px) {
  .growth-wrapper.large {
    padding: 26px 20px !important;
  }

  .growth-wrapper {
    padding: 22px 18px !important;
    border-radius: 16px !important;
  }
}


/* ========================================
   INNER PAGE HERO — SMALL SCREEN FIXES
   ======================================== */

@media screen and (max-width: 479px) {
  .inner-page-hero {
    padding: 50px 0 36px !important;
  }

  .inner-page-title {
    font-size: 1.7rem !important;
    letter-spacing: -0.5px !important;
    line-height: 1.18 !important;
  }

  .inner-page-subtitle {
    font-size: 0.95rem !important;
  }

  .cs-block-title {
    font-size: 1.5rem !important;
  }
}


/* ========================================
   CONTACT PAGE — SMALL SCREEN FIXES
   ======================================== */

@media screen and (max-width: 767px) {
  .contact-right-container {
    padding: 28px 20px !important;
  }

  .contact-submit-button {
    width: 100% !important;
    text-align: center !important;
    padding: 16px 24px !important;
  }
}

@media screen and (max-width: 479px) {
  .contact-right-container {
    padding: 24px 16px !important;
  }
}


/* ========================================
   PROCESS PAGE — EXTRA SMALL FIXES
   ======================================== */

@media screen and (max-width: 479px) {
  .step-title {
    font-size: 1.5rem !important;
  }

  .step-description {
    font-size: 0.95rem !important;
  }

  .metrics-strip-section {
    padding: 18px 0 !important;
  }

  .metric-number {
    font-size: 1.4rem !important;
  }

  .metric-label {
    font-size: 0.6rem !important;
    letter-spacing: 0.5px !important;
  }
}


/* ========================================
   AI AGENTS PAGE — EXTRA SMALL FIXES
   ======================================== */

@media screen and (max-width: 479px) {
  .aia-hero {
    padding: 56px 0 44px !important;
  }

  .aia-hero-heading {
    font-size: 1.85rem !important;
    letter-spacing: -0.8px !important;
  }

  .aia-hero-subtitle {
    font-size: 0.95rem !important;
  }

  .aia-hero-cta {
    width: 100% !important;
    justify-content: center !important;
  }

  .aia-section-heading,
  .aia-agents-heading {
    font-size: 1.6rem !important;
  }

  .aia-agents-grid {
    grid-template-columns: 1fr !important;
  }

  .aia-agents-header {
    margin-bottom: 36px;
  }

  .aia-timeline-steps {
    grid-template-columns: 1fr !important;
  }

  .aia-phone-mockup {
    max-width: 300px !important;
  }
}


/* ========================================
   CTA SECTION — EXTRA SMALL FIXES
   ======================================== */

@media screen and (max-width: 479px) {
  .inner-cta-container {
    padding: 40px 20px !important;
    border-radius: 16px !important;
  }

  .inner-cta-heading {
    font-size: 1.8rem !important;
  }

  .inner-cta-subtext {
    font-size: 0.95rem !important;
  }
}


/* ========================================
   PORTFOLIO PAGE — EXTRA SMALL FIXES
   ======================================== */

@media screen and (max-width: 479px) {
  .portfolio-grid {
    padding: 0 !important;
  }

  .portfolio-title {
    font-size: 1.3rem !important;
  }

  .portfolio-desc {
    font-size: 0.92rem !important;
  }
}


/* ========================================
   NAVBAR — OVERFLOW GUARD
   ======================================== */

.black-navbar .wrapper-1160px {
  padding-left: 16px;
  padding-right: 16px;
}


/* ========================================
   HERO — REAL DEVICE FORCE OVERRIDES
   ======================================== */

@media screen and (max-width: 768px) {
  .hero-heading {
    font-size: 1.8rem !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    padding: 0 20px !important;
  }
  .hero-wrapper {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
}

