    /* =========================
       Brand variables (quick edit)
       ========================= */
    :root{
      --white: #ffffff;
      --charcoal: #1a1a1a;
      --muted: #6f6f6f;
      --divider: #ededed;
      --fresh-green: #00C853; /* selected */
      --blue-end: #0088FF;
      --gradient: linear-gradient(135deg,var(--fresh-green),var(--blue-end));
      --card-radius: 16px;
      --container-max: 1160px;
      --shadow-soft: 0 10px 30px rgba(12,18,28,0.06);
      --shadow-hover: 0 18px 40px rgba(12,18,28,0.08);
      --speed: 260ms;
    }

    /* Reset & base */
    * { box-sizing: border-box; }
    html,body { height:100%; }
    body{
      margin:0;
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      color:var(--charcoal);
      background:var(--white);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.45;
      -webkit-text-size-adjust:100%;
    }

    html, body {
    overflow-x: hidden !important;
  }





  a, img, .logo {
  -webkit-tap-highlight-color: transparent;
}

.country-container, .country-switcher{
  -webkit-tap-highlight-color: transparent;
}


    a { color: inherit; text-decoration: none; }
    img { max-width:100%; display:block; }

    /* Utility container */
    .container{
      max-width: 90%;
      margin: 0 auto;
      padding: 0 24px;
}

h1, h2 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(30px, 4.2vw, 40px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin: 0 0 18px 0;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientMove 2.5s ease-in-out infinite;
}

h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(30px, 4.2vw, 40px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin: 0 0 18px 0;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientMove 2.5s ease-in-out infinite;
}

p, li, .lead, .section-header p, .solution-left p, .diff-list li, .stat-label, .front-desc, .role, .desc, .stat-back-content {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

    /* Header */
    header.site-header{
      position: sticky;
      top:0;
      z-index:60;
      background: var(--white);
      border-bottom: 1px solid var(--divider);
      backdrop-filter: blur(6px);
    }
    .site-header .container{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 16px;
      padding: 18px 24px;
    }
    .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
}

@media (max-width: 900px) {
  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
}



.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;        /* Normal desktop size */
  width: auto;         /* Prevent squishing */
  object-fit: contain;
}

/* Alternative styling for different logo types */
.logo-img.circle {
  border-radius: 50%;
}

.logo-img.padded {
  width: 32px;
  height: 32px;
  padding: 4px;
}

/* Tablet Fix */

@media (max-width: 1024px) {
  .logo-img {
    height: 42px;
  }
}

/* Mobile Fix */
@media (max-width: 768px) {
  .logo-img {
    height: 38px;     /* Slightly smaller but clean */
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .logo-img {
    height: 34px;
  }
}



/*========== Mobile Header ======*/

@media (max-width: 850px) {

  /* Reduce overall header height */
  header.site-header {
    padding: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
  }

  /* Balanced header */
  .site-header .container {
    padding: 10px 16px !important;   /* medium height */
    gap: 10px !important;
    min-height: 58px;                /* slightly larger */
  }

  /* Logo medium size */
  .logo-img {
    height: 32px !important;
  }

  /* Country switcher spacing */
  .country-switcher {
    padding: 0 !important;
  }

  .country-container {
    padding: 0 !important;
  }

  .country-toggle {
    padding: 8px 12px !important;    /* medium padding */
    border-radius: 10px !important;
    gap: 8px !important;
  }

  .flag-icon {
    width: 20px !important;
  }

  .country-name {
    font-size: 13px !important;
  }
}



/* ===== COUNTRY SWITCHER ===== */
.country-switcher {
  position: relative;
  z-index: 1000;
  padding: 10px 0;
}

.country-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.country-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--charcoal);
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
}

.country-toggle:hover {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.05), rgba(0, 136, 255, 0.05));
  border-color: rgba(0, 200, 83, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 200, 83, 0.08);
}

.country-toggle:active {
  transform: translateY(0);
}

.country-name {
  color: var(--charcoal);
  font-weight: 600;
}

.country-toggle i {
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--muted);
}

.country-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: var(--fresh-green);
}

.flag-icon {
  width: 24px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.country-toggle:hover .flag-icon {
  transform: scale(1.05);
}

.country-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  list-style: none;
  margin: 0;
  padding: 12px 0;
  width: 200px;
  display: none;
  opacity: 0;
  transform: translateY(-12px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(12px);
}

.country-menu.active {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.country-menu li {
  margin: 0;
  padding: 0 4px;
}

.country-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
  text-decoration: none;
  padding: 12px 16px;
  margin: 0 4px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  font-size: 14px;
}

.country-menu a:hover {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), rgba(0, 136, 255, 0.08));
  color: var(--fresh-green);
  transform: translateX(2px);
}

.country-menu a:hover .flag-icon {
  transform: scale(1.1);
}

    nav.primary{
      display:flex; gap:24px; align-items:center;
    }
    nav.primary a { color:var(--charcoal); font-weight:500; font-size:15px; opacity:0.95; }
    nav.primary a:hover { color:var(--fresh-green); }
    

    /* CTA buttons */
    .btn {
      display:inline-flex; align-items:center; justify-content:center;
      gap:8px; padding:10px 18px; border-radius:10px; font-weight:600; cursor:pointer;
      transition: transform var(--speed) ease, box-shadow var(--speed) ease, opacity var(--speed) ease;
    }
    .btn-primary {
      background: var(--gradient);
      color: #fff!important;; border: none;
      box-shadow: 0 8px 22px rgba(1,92,140,0.12);
    }
    .btn-primary:hover{ transform: translateY(-4px); box-shadow: var(--shadow-hover); opacity:0.98; }
    .btn-ghost {
      background: transparent;
      border: 2px solid var(--charcoal);
      color: var(--charcoal);
      padding:8px 16px;
      border-radius: 10px;
    }
    .btn-outline-green{
      background: transparent; border: 2px solid var(--fresh-green); color: var(--fresh-green);
    }

    /* Hero */
    .hero{
      padding: 70px 0 56px;
      position: relative;
      overflow: visible;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1fr 520px;
      gap: 48px;
      align-items: center;
    }


    /* Animation */
    @keyframes gradientMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .hero p.lead{
      color:var(--muted);
      max-width: 68ch;
      margin:0 0 22px 0;
      font-size: 16px;
    }
    .hero .actions{ display:flex; gap:14px; margin-top:10px; flex-wrap:wrap; }

    /* Hero visual preview card */
    .preview-card{
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.01));
      padding:18px;
      box-shadow: var(--shadow-soft);
    }
    .preview-tabs{
      display:flex; gap:10px; margin-bottom:6px;
    }
    .tab{
      background: var(--white);
      padding:10px 12px;
      border-radius: 10px;
      font-weight:600;
      font-size:14px;
      border: 1px solid #F3F3F3;
      color: black;
      cursor:pointer;
      transition: all var(--speed) ease;
    }
    .tab.active { border-image: none; box-shadow: 0 6px 20px rgba(0,200,115,0.08); transform: translateY(-3px); }
    .tab.active {
  border-image: none;
  box-shadow: 0 10px 20px rgba(0, 255, 26, 0.43); /* green soft glow */
  transform: translateY(-3px);

}

.preview-area {
    width: 100%;
    height: 350px;            /* adjust height as you want */
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.preview-area video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.mobile-video {
  border-radius: 0 !important;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Make the video fill the preview area fully */
#preview-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;         /* ensures full fit */
}


    /* Product cards */
    .cards-grid{
      display:grid;
      grid-template-columns: repeat(3,1fr);
      gap:22px;
      padding:24px 0;
    }
    .card{
      background:var(--white);
      border-radius: var(--card-radius);
      padding:24px;
      border:1px solid #F3F3F3;
      transition: transform var(--speed) ease, box-shadow var(--speed) ease, border-color var(--speed) ease;
      box-shadow: var(--shadow-soft);
    }
    .card:hover{
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(0,200,115,0.18);
    }
    .card .icon{
      width:56px;height:56px;border-radius:12px;
      display:flex;align-items:center;justify-content:center;font-weight:700;
      background: linear-gradient(180deg, rgba(0,200,115,0.12), rgba(0,140,255,0.03));
      color:var(--fresh-green);
      margin-bottom:14px;
    }
    .card h3{ margin:0 0 8px 0; font-weight:600; font-size:18px; color:var(--charcoal); }
    .card p{ margin:0; color:var(--muted); font-size:15px; }



/*=========Preview card hero tab===========*/

 /* FIX: Move video card under heading on iPad/tablets */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  #hero-preview {
    order: 2;
    width: 100%;
  }

  #hero-copy {
    width: 100%;
    order: 1;
  }

  .preview-area {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  #preview-video {
    height: 100% !important;
  }
}

    
 
    /* Difference zig-zag */
    .difference{ display:grid; gap:36px; padding:64px 0; }
    .diff-row{ display:flex; gap:32px; align-items:center; }
    .diff-row.alt { flex-direction: row-reverse; }
    .diff-art{ flex:1; min-height:200px; border-radius:14px; background: linear-gradient(135deg, rgba(0,200,115,0.06), rgba(0,140,255,0.02)); display:flex; align-items:center; justify-content:center; color:var(--muted); }
    .diff-copy{ flex:1; }
    .diff-copy h3{ margin:0 0 12px 0; }
    .diff-copy ul{ margin:0; padding-left:18px; color:var(--muted); }
    .diff-copy li{ margin-bottom:10px; color:var(--muted); }

    /* Platform slider - simple horizontal scroll */
    .platform { padding:48px 0; }
    .platform-track{
      display:flex; gap:18px; overflow:auto; padding-bottom:8px;
      scrollbar-width:none; -ms-overflow-style:none;
    }
    .platform-track::-webkit-scrollbar { display:none; }
    .platform-card{
      min-width: 260px; flex: 0 0 auto;
      border-radius:14px; padding:18px; background:var(--white); border:1px solid #F3F3F3;
      box-shadow: 0 8px 30px rgba(10,12,14,0.03);
    }

    /* Final CTA */
    .final-cta{
      padding:68px 0; text-align:center; background: linear-gradient(0deg, rgba(0,200,115,0.02), rgba(0,140,255,0.01));
    }
    .final-cta h2{ margin:0 0 10px 0; font-size:28px; color:var(--charcoal); }
    .final-cta p{ color:var(--muted); margin:0 0 18px 0; }

    /* Footer */

/* -----------------------------
        FOOTER BASE
------------------------------*/
footer.site-footer {
  background: #0d0d0d;
  color: #d2d2d2;
  padding: 80px 0 40px;
  position: relative;
  border-top: 1px solid #222;
}

footer.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
}

/* -----------------------------
      TITLES & TEXT
------------------------------*/
.footer-title {
  font-size: 20px;
  letter-spacing: .5px;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.footer-text {
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-block {
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-block h5 {
  font-size: 15px;
  margin-bottom: 4px;
  color: #d4af37;
  font-weight: 600;
}

/* -----------------------------
          LINKS
------------------------------*/
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
  padding-left: 4px;
}

/* -----------------------------
        SOCIAL ICONS
------------------------------*/
.social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.social-icons a {
  color: #cfcfcf;
  font-size: 20px;
  padding: 8px;
  border-radius: 50%;
  border: 1px solid #333;
  transition: all .3s ease;
}

.social-icons a:hover {
  color: #d4af37;
  border-color: #d4af37;
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(212, 175, 55, .5);
}

/* -----------------------------
        NEWSLETTER
------------------------------*/
.newsletter-heading {
  margin-top: 10px;
}

.newsletter-input-group {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #111;
  color: #eee;
  flex: 1;
}

/* -----------------------------
      FOOTER BOTTOM
------------------------------*/
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #222;
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* -----------------------------
        RESPONSIVE
------------------------------*/

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }
}


    .social-icons {
      display: flex;
      gap: 16px;
      margin-bottom: 32px;
    }
    .social-icons a {
      color:#cfcfcf;
      font-size: 20px;
      transition: all 0.3s ease;
      padding: 8px;
      border-radius: 50%;
      border: 1px solid transparent;
    }
    /* Responsive */
    @media (max-width: 1024px){
      .hero-grid{ grid-template-columns: 1fr 420px; gap:22px; }
      .cards-grid{ grid-template-columns: repeat(2,1fr); }
      .ai-grid{ grid-template-columns: repeat(2,1fr); }
      .diff-row{ flex-direction: column; }
      .diff-row.alt{ flex-direction: column; }
    }

    @media (max-width: 760px){
      .site-header { padding:14px; }
      nav.primary{ display:none; } /* swap to mobile nav later if needed */
      
      .preview-area{ height:220px; }
      .cards-grid{ grid-template-columns: 1fr; }
      .ai-grid{ grid-template-columns: 1fr; }
      .hero{ padding: 0px 0 28px; }
      .final-cta h2{ font-size:22px; }
    }

    /* subtle fade-in on load */
    .animate-up { transform: translateY(14px); opacity: 0; transition: transform 420ms cubic-bezier(.2,.9,.25,1), opacity 420ms ease; }
    .animate-up.in { transform: translateY(0); opacity:1; }

    @media (max-width: 600px) {
  .container {
    max-width: 100% !important;
    padding: 0 16px !important;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }
}



/* ============================
      ABOUT US SECTION
============================ */

.about-section {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE WRAPPER – Fully Responsive */
.about-image-wrapper {
  width: 100%;
  max-width: 520px;   /* apply limit for large screens */
  aspect-ratio: 16/10;  /* maintains shape automatically */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid #F0F0F0;
  background: white;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

/* Hover Zoom */
.about-image-wrapper:hover .about-image {
  transform: scale(1.06);
}

/* CONTENT */
.about-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 620px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-image-wrapper {
    max-width: 100%;
    aspect-ratio: 16/11;
    margin: 0 auto;
  }

  .about-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .about-image-wrapper {
    aspect-ratio: 4/3;
  }

  .about-section {
    padding: 60px 0;
  }
}


  /* ========================= 
   SOLUTIONS FOR EVERY TEAM 
   ========================= */
.solutions-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(30px, 4.2vw, 40px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin: 0 0 18px 0;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientMove 2.5s ease-in-out infinite;
}

.section-header h2 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.section-header.centered {
  max-width: 640px;
  margin: 0 auto 48px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(0,136,255,0.1));
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fresh-green);
  margin-bottom: 16px;
}

/* Solutions Tabs */

/* Solutions Tabs change start */

.solutions-tabs {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 48px;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding-top: 4px
}
.solutions-tabs::-webkit-scrollbar {
    display: none;
}

/* Solutions Tabs change end */


.solution-tab {
  padding: 12px 24px;
  background: white;
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.solution-tab:hover {
  border-color: var(--fresh-green);
  transform: translateY(-2px);
}

.solution-tab.active {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(0,200,83,0.2);
}

.solutions-tabs .solution-tab {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/* Solution Content */
.solution-panel {
  display: none;
}

.solution-panel.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.solution-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(0,136,255,0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--fresh-green);
}

.solution-left h3 {
  font-size: 28px;
  margin: 0 0 16px 0;
  color: var(--charcoal);
}

.solution-left p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.solution-features li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--charcoal);
  font-size: 15px;
}

.solution-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--fresh-green);
  font-weight: bold;
  font-size: 18px;
}

.solution-visual {
  background: linear-gradient(135deg, #F8F9FA, #FFFFFF);
  border-radius: 20px;
  padding: 40px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; 
  padding: 0; /* FIX */
}

.solution-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 20px;
}



.visual-placeholder {
  width: 100%;
}

.solution-visual video::-webkit-media-controls {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-visual video:hover::-webkit-media-controls {
  opacity: 1;
}



@media (max-width: 900px) {
  .solution-visual {
    height: 250px;
      padding: 0; /* FIX */
  }
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .solution-grid {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 40px;
  }

  .solution-visual {
    height: 250px;
  }
}

@media (max-width: 600px) {


  .solutions-tabs {
    gap: 8px;
  }

  .solution-left h3 {
    font-size: 24px;
  }
}


/* ============================
   SOLUTION TABS — MOBILE SLIDER
=============================== */
@media (max-width: 900px) {
  .solutions-tabs {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 0 4px 12px;
    position: relative;
  }

  .solutions-tabs::-webkit-scrollbar {
    display: none;
  }

    .solutions-tabs {
    align-items: center;  /* keeps tabs aligned nicely */
  }

  .solution-tab {
    flex: 0 0 auto;
    scroll-snap-align: center;
    white-space: nowrap;
        padding: 10px 14px;     /* add vertical space */
    line-height: 1.3;       /* prevents text clipping */
    white-space: normal;    /* allow full title */
    display: inline-flex;   /* keep tab height adaptive */
    align-items: center;
    justify-content: center;
  }

  
}
@media (max-width: 900px) {
  .solution-visual {
    height: 260px;
  }
}



/* ============================================================
   AI ASSISTANTS — DESKTOP VERSION
============================================================ */
.ai-assistants {
  width: 100%;
  padding: 60px 100px;
  text-align: center;
  background: #ffffff;
}

.ai-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ai-sub {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* Desktop Cards Row */
.ai-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

/* Desktop Card */
.ai-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  width: 260px;
  height: 350px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  cursor: pointer;
  transition: 0.35s ease;
}

/* Desktop hover animation */
.ai-card:hover {
  width: 380px;
  z-index: 15;
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.18),
    0 0 0 2px #0088FF,
    0 0 64px #00C853;
}

.ai-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ai-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: .2s ease;
}

/* Desktop image swap */
.image-default { opacity: 1; }
.image-hover { opacity: 0; }
.ai-card:hover .image-default { opacity: 0; }
.ai-card:hover .image-hover { opacity: 1; }

/* ============================================================
   MOBILE + TABLET — WORKING SLIDER 
============================================================ */
@media (max-width: 1024px) {

  .ai-assistants {
    padding: 40px 20px !important;
  }

  /* Slider wrapper */
  .ai-slider {
    width: 100%;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .ai-slider::-webkit-scrollbar {
    display: none;
  }

  /* Cards container */
  .ai-cards {
    display: flex;
    flex-direction: row;
    gap: 18px;
    width: max-content;   /* content extends → scrolling enabled */
  }

  /* Single card in slider */
  .ai-card {
    flex: 0 0 70%;        /* visible width → slider works */
    height: 340px !important;
    padding: 0 !important;
    border-radius: 20px;
    overflow: hidden;
    background: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    scroll-snap-align: center;
    transition: none !important;
    transform: none !important;
  }

  /* Remove desktop hover behavior */
  .ai-card:hover {
    transform: none !important;
    width: auto !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
  }

  /* Hide desktop text */
  .ai-card h3,
  .ai-card p {
    display: none !important;
  }

  /* Always show hover image */
  .image-default { display: none !important; }
  .image-hover {
    display: block !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    position: relative !important;
  }

  .ai-image {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }
}

/* ============================================================
   MOBILE + TABLET — WORKING SLIDER
============================================================ */
@media (max-width: 1024px) {

  .ai-assistants {
    padding: 40px 20px !important;
  }

  /* Slider wrapper - forced horizontal scrolling */
  .ai-slider {
    width: 100% !important;
    height: 350px !important;
    position: relative !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    will-change: scroll-position;
    /* Hide scrollbar on WebKit browsers */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .ai-slider::-webkit-scrollbar {
    display: none !important;
  }

  /* Cards container - inline-flex for content width */
  .ai-cards {
    display: inline-flex !important;
    flex-direction: row !important;
    gap: 18px;
    width: max-content !important; /* natural width for smooth scrolling */
    padding: 0 !important;
  }

  /* Single card in slider - fixed width */
  .ai-card {
    flex: none !important;
    width: 280px !important; /* fixed width for consistent scrolling */
    height: 330px !important;
    padding: 0 !important;
    border-radius: 20px;
    overflow: hidden;
    background: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    scroll-snap-align: center;
    transition: none !important;
    transform: none !important;
  }

  /* Remove all hover effects */
  .ai-card:hover {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
  }

  /* Hide all text content */
  .ai-card h3,
  .ai-card p {
    display: none !important;
  }

  /* Always show and style hover images */
  .image-default {
    display: none !important;
  }

  .image-hover {
    display: block !important;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 20px !important;
  }

  /* Image container */
  .ai-image {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    display: block !important;
  }
}


/* ACTIVE HIGHLIGHT */
@media (max-width: 1024px) {
  .ai-card.active {
    transform: scale(1.04);
    box-shadow: 0px 8px 26px rgba(0,0,0,0.18);
    opacity: 1;
    transition: 0.25s ease;
  }

  /* Dim all non-active cards */
  .ai-card.dim {
    opacity: 0.55;
    transition: 0.25s ease;
  }
}







/* ========================= 
   DIFFERENCE SECTION ENHANCED
   ========================= */
.difference-section {
  padding: 100px 0;
  background: white;
}

.difference-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 80px;
}

.diff-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 2px solid #E8E8E8;
  transition: all 0.3s ease;
}

.diff-card.featured {
  border-color: var(--fresh-green);
  box-shadow: 0 30px 60px rgba(0,200,83,0.15);
  transform: scale(1.05);
}

.diff-header {
  margin-bottom: 32px;
}

.diff-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.diff-label.old {
  background: #FFE8E8;
  color: #D32F2F;
}

.diff-label.new {
  background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(0,136,255,0.1));
  color: var(--fresh-green);
}

.diff-header h4 {
  font-size: 24px;
  margin: 0;
  color: var(--charcoal);
}

.diff-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.diff-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 15px;
  color: var(--charcoal);
}

.diff-list.negative li:before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #D32F2F;
  font-weight: bold;
}

.diff-list.positive li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--fresh-green);
  font-weight: bold;
  font-size: 18px;
}

.diff-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(0,200,83,0.03), rgba(0,136,255,0.03));
  border-radius: 24px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

/* ========================= 
   ANIMATIONS
   ========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

@keyframes grow {
  from {
    height: 0;
  }
  to {
    height: var(--height);
  }
}

/* ========================= 
   RESPONSIVE UPDATES
   ========================= */
@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ai-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .ai-feature-card.featured {
    transform: scale(1);
  }
  
  .difference-grid {
    grid-template-columns: 1fr;
  }
  
  .diff-arrow {
    transform: rotate(90deg);
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solutions-section,
  .ai-assistants-section,
  .difference-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 36px;
  }

  
  .section-header p {
    font-size: 16px;
  }
  
  
  .solution-grid {
    padding: 24px;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
}

/* ===== OUR TEAM SECTION (WIDE ROW CARDS) ===== */

.our-team-section {
  padding: 100px 20px;
  background: white;
  text-align: center;
}

.team-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(30px, 4.2vw, 40px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin: 0 0 18px 0;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientMove 2.5s ease-in-out infinite;
  margin-bottom: 60px;
}

.team-container {
  max-width: 90%;
  margin: 0 auto;
}

.team-row {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch;
}

.team-card {
  flex: 1;
  height: 250px;
  border-radius: 50px;
  position: relative;
}

.team-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1.5s ease;
  border-radius: 24px;
}

.team-card:hover .team-inner {
  transform: rotateX(180deg);
}

/* Front & Back Faces */
.team-front,
.team-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  color: #fff;
  transition: all 0.4s ease;
}

/* FRONT SIDE (Styled like monday.com promo cards: icon on left, title + desc in center, colored backgrounds) */
.team-card.green .team-front { background: linear-gradient(135deg, #C9F7E4, #C9F7E4); }
.team-card.green .team-back { background: linear-gradient(135deg, #ffffff, #9cc0b6); }

.team-card.blue .team-front { background: linear-gradient(135deg, #cfe8ff, #cfe8ff); }
.team-card.blue .team-back { background: linear-gradient(135deg, #ffffff, #9cc0b6); }

.team-card.purple .team-front { background: linear-gradient(135deg, #e4dfff, #e4dfff); }
.team-card.purple .team-back { background: linear-gradient(135deg, #ffffff, #9cc0b6); }

.team-front {
  justify-content: flex-start;
  padding: 0 40px;
  gap: 30px;
}

.front-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.front-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  text-align: left;
}

.team-front h3 {
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.front-desc {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.4;
  color: #000;
}

/* STAT CARD (Separate small card on the right, always visible, monday.com style) */
.stat-card {
  width: 350px;
  height: 250px;
  border-radius: 50px;
  position: relative;
}

.stat-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1.5s ease;
  border-radius: 50px;
}

.stat-card.hovered .stat-inner {
  transform: rotateX(180deg);
}

.stat-front,
.stat-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000000;
  text-align: center;
  padding: 0 8px;
  font-size: 0.85rem;
}

.stat-front {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.stat-back {
  background: linear-gradient(135deg, #1D4ED8, #0C2A6F);
  transform: rotateX(180deg);
  padding: 20px;
}

.green-stat .stat-front {
  background: white;
}

.green-stat .stat-back {
  background: linear-gradient(135deg, #C9F7E4, #C9F7E4);
}

.blue-stat .stat-front {
  background: linear-gradient(135deg, #cfe8ff, #cfe8ff);
}

.blue-stat .stat-back {
  background: linear-gradient(135deg, #cfe8ff, #cfe8ff);
}

.purple-stat .stat-front {
  background: linear-gradient(135deg, #e4dfff, #e4dfff);
}

.purple-stat .stat-back {
  background: linear-gradient(135deg, #e4dfff, #e4dfff);
}

.stat-back-content {
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.95;
}

.stat-back h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-number {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* BACK SIDE (Profile details: image on left, info on right) */
.team-back {
  background: #ffffff;
  color: #333;
  transform: rotateX(180deg);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 40px;
  gap: 25px;
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.team-info {
  text-align: left;
  flex: 1;
}

.team-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.role {
  color: #777;
  font-size: 1rem;
  margin-bottom: 8px;
}

.desc {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  color: #555;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #00C97E;
  transform: scale(1.2);
}

/* Responsive */
/* =========================================================
   MOBILE VERSION — SIMPLE CARDS (NO FLIP, ONLY BACK SIDE)
   ========================================================= */
@media (max-width: 768px) {

  /* Stack all rows vertically */
  .team-row {
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* Disable flip animation */
  .team-inner,
  .stat-inner {
    transform: none !important;
    transition: none !important;
  }

  /* Never rotate front face */
  .team-front,
  .stat-front {
    display: none !important; /* HIDE FRONT COMPLETELY */
  }

  /* Always show back face */
  .team-back,
  .stat-back {
    position: relative !important;
    transform: none !important;
    backface-visibility: visible !important;
    display: flex !important;
    opacity: 1 !important;
    height: auto !important;
  }

  /* Team cards simple layout */
  .team-card {
    height: auto !important;
    border-radius: 24px !important;
  }

  .team-back {
    flex-direction: column !important;
    text-align: center !important;
    padding: 30px 20px !important;
    gap: 20px !important;
  }

  .profile-img {
    width: 90px !important;
    height: 90px !important;
  }

  .team-info {
    text-align: center !important;
  }


  .stat-back {
    padding: 20px !important;
  }

  /* Remove hover scaling, shadows, flips */
  .team-card:hover .team-inner
  {
    transform: none !important;
  }
}


/* =========================================================
   REMOVE STAT CARDS ON MOBILE & TABLET
   ========================================================= */
@media (max-width: 1200px) {
  .stat-card {
    display: none !important;
  }
}


/* ======================================== PRODUCTS SUITE SECTION (ELEGANT CLASSIC UPDATE) ======================================== */
.products-suite {
  padding: 100px 40px;
  background: white;
  position: relative;
  overflow: hidden;
}

.products-suite::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.05), transparent);
}

.products-suite-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header - More refined typography */
.products-suite-header {
  text-align: center;
  margin-bottom: 48px;
}

.products-suite-header h2 {
  font-size: 48px;
  font-weight: 400; /* Lighter for classic feel */
  margin-bottom: 12px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
}

.products-suite h4 {
  font-size: 28px;
}



.products-suite-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #3B82F6, #A855F7);
  margin: 16px auto 0;
  border-radius: 1px;
}

.products-suite-header p {
  color: #6b7280;
  font-size: 18px;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Tabs - Pill style with subtle elegance */
.products-suite-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 60px;
  flex-wrap: wrap;
  align-items: center;
}

/* Base tab - More refined hover and active states */
.products-suite-tab {
  --pad-x: 24px;
  --pad-y: 12px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.6);
  color: #374151;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.products-suite-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.1);
}

.products-suite-tab.active {
  background: linear-gradient(
    135deg,
    var(--ps-accent, #3B82F6) 0%,
    var(--ps-accent, #2563eb) 100%
  );
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-1px);
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Layout - Softer borders, better spacing */
.products-suite-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 24px;
  padding: 48px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  margin-top: 20px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.products-suite-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Left text - Elegant typography */
.products-suite-text {
  max-width: 520px;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  flex: 1;
}

.products-suite-text h3 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #111827;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.products-suite-text p {
  color: #4b5563;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
  font-style: normal;
}

.products-suite-text ul {
  margin: 20px 0 24px;
  padding-left: 24px;
  list-style: none;
}

.products-suite-text ul li {
  margin-bottom: 12px;
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 8px;
}

.products-suite-text ul li::before {
  content: '→';
  position: absolute;
  left: -24px;
  color: var(--ps-accent, #3B82F6);
  font-weight: bold;
  font-size: 14px;
}

/* CTA - More polished */
.products-suite-cta {
  display: inline-block;
  margin-top: 24px;
  background: linear-gradient(135deg, var(--ps-accent, #3B82F6) 0%, var(--ps-accent, #2563eb) 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(59,130,246,0.3);
  letter-spacing: 0.5px;
}

.products-suite-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59,130,246,0.4);
  opacity: 0.95;
}

/* Learn more - Subtle addition */
.products-suite-learn-more {
  margin-top: 16px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
}

/* Preview card - Polished with better mockup, overlay for depth */
.products-suite-preview {
  width: 480px;
  min-height: 320px;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.products-suite-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0.9;
  transition: opacity .3s ease;
}

.products-suite-preview:hover img {
  opacity: 1;
}

/* Overlay for mock elements - Enhanced with subtle animations */
.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity .3s ease;
}

.products-suite-preview:hover .preview-overlay {
  opacity: 1;
}


/* Theme classes - Kept but with softer gradients for classic vibe */
.products-suite-preview.crm-theme {
  --ps-accent: #3B82F6;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.products-suite-preview.crm-theme .preview-board,
.products-suite-preview.crm-theme .preview-card,
.products-suite-preview.crm-theme .preview-bar {
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0.1));
}

.products-suite-preview.ai-theme {
  --ps-accent: #A855F7;
  background: linear-gradient(135deg, #fdf4ff 0%, #f3e8ff 100%);
}

.products-suite-preview.ai-theme .preview-board,
.products-suite-preview.ai-theme .preview-card,
.products-suite-preview.ai-theme .preview-bar {
  background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(168,85,247,0.1));
}

.products-suite-preview.pm-theme {
  --ps-accent: #10B981;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.products-suite-preview.pm-theme .preview-board,
.products-suite-preview.pm-theme .preview-card,
.products-suite-preview.pm-theme .preview-bar {
  background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.1));
}

.products-suite-preview.inventory-theme {
  --ps-accent: #F59E0B;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.products-suite-preview.inventory-theme .preview-board,
.products-suite-preview.inventory-theme .preview-card,
.products-suite-preview.inventory-theme .preview-bar {
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.1));
}

.products-suite-preview.finance-theme {
  --ps-accent: #EC4899;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.products-suite-preview.finance-theme .preview-board,
.products-suite-preview.finance-theme .preview-card,
.products-suite-preview.finance-theme .preview-bar {
  background: linear-gradient(135deg, rgba(236,72,153,0.2), rgba(236,72,153,0.1));
}

.products-suite-preview.marketplace-theme {
  --ps-accent: #6366F1;
  background: linear-gradient(135deg, #f3f4ff 0%, #e0e7ff 100%);
}

.products-suite-preview.marketplace-theme .preview-board,
.products-suite-preview.marketplace-theme .preview-card,
.products-suite-preview.marketplace-theme .preview-bar {
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(99,102,241,0.1));
}

/* Responsive - Enhanced for mobile */
@media (max-width: 980px) {
  .products-suite {
    padding: 80px 20px;
  }

  .products-suite-header h2 {
    font-size: 36px;
  }

  .products-suite-content {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 40px;
    padding: 32px 24px;
  }

  .products-suite-preview {
    width: 100%;
    min-height: 280px;
  }

  .products-suite-text {
    max-width: 100%;
    text-align: center;
  }


}

.products-suite-tabs .products-suite-tab {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}



/* ======================================================
   PRODUCTS SUITE — REAL MOBILE/TABLET SLIDER TABS
====================================================== */
@media (max-width: 980px) {

  .products-suite-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;               /* STOP WRAPPING */
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 12px 0;
    width: 100%;
    position: relative;
    justify-content: flex-start;
    margin-bottom: 10px;     /* REMOVE CENTER (CAUSES HIDE) */
  }

  /* Hide scrollbar */
  .products-suite-tabs::-webkit-scrollbar {
    display: none;
  }

  /* Tabs act like proper slides */
  .products-suite-tab {
    flex: 0 0 auto !important;
    scroll-snap-align: start;
  }

  
}



/* Enhanced preview board - More detailed, classic dashboard feel */
.preview-board {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 120px 1fr;
  gap: 16px;
  padding: 20px;
  box-sizing: border-box;
}

.preview-board-header {
  height: 20px;
  width: 70%;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
  border-radius: 8px;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.preview-board-chart {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  height: 100%;
}

.preview-bar {
  background: linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
  border-radius: 8px;
  flex: 1;
  position: relative;
  transition: height .3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.preview-bar::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
}

.preview-board-rows {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  height: 100%;
}

.preview-col {
  background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  border-radius: 12px;
  padding: 12px;
  width: 32%;
  min-height: 100px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.preview-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  transition: transform .2s ease;
  position: relative;
  overflow: hidden;
}

.preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left .5s;
}

.preview-card:hover::before {
  left: 100%;
}




#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  cursor: zoom-out; /* click to close */
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  pointer-events: none; /* <-- IMPORTANT FIX */
}

/* ========================= 
   MOBILE BOTTOM NAVIGATION
   ========================= */


.mb-icon {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}


.mb-item .mb-icon,
.mb-item .mb-icon:focus,
.mb-item .mb-icon:active {
  outline: none !important;
  border: none !important;
  -webkit-tap-highlight-color: transparent !important;
}


.mb-item,
.mb-item:focus,
.mb-item:active,
.mb-item:visited {
  outline: none !important;
  border: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #ffffff;
  border-top: 1px solid #e4e4e4;
  display: none; /* hidden by default */
  justify-content: space-between;
  padding: 0 6px;
  z-index: 9999;
}

.mobile-bottom-nav .mb-item {
  flex: 1;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  color: #555;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: 0.3s ease;
}

.mb-item .mb-icon {
  width: 24px;
  height: 24px;
  fill: #858585;
  transition: 0.3s ease;
}

.mb-item.active,
.mb-item:hover {
  color: var(--fresh-green);
}

.mb-item.active .mb-icon {
  fill: var(--fresh-green);
  transform: scale(1.15);
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
}

/* Fullscreen video should always cover properly */
video:fullscreen {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #000;
}


}


/* =========================
   LOADING SCREEN
   ========================= */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.loading-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.loading-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.loading-text {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientMove 2.5s ease-in-out infinite;
}

.loading-particles {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.particle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fresh-green);
  animation: fadeInPulse 1.5s infinite ease-in-out;
}

.particle:nth-child(2) {
  animation-delay: 0.2s;
}

.particle:nth-child(3) {
  animation-delay: 0.4s;
}

.particle:nth-child(4) {
  animation-delay: 0.6s;
}

.particle:nth-child(5) {
  animation-delay: 0.8s;
}

.particle:nth-child(6) {
  animation-delay: 1s;
}

@keyframes fadeInPulse {
  0% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

.loading-progress {
  width: 200px;
  height: 3px;
  background: linear-gradient(135deg, rgba(0,200,83,0.2), rgba(0,136,255,0.2));
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  width: 100%;
  height: 100%;
  background: var(--gradient);
  animation: progressFill 2s ease-in-out forwards;
}

@keyframes progressFill {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
