        :root {
            --primary-orange: #FF6A00;
            --dark-text: #141414;
            --accent-charcoal: #222831;
            --light-grey: #F4F6F8;
            --white: #FFFFFF;
            --success-green: #10B981;
            --warning-yellow: #F59E0B;
            --border-light: #E5E7EB;
            --text-muted: #6B7280;
            --gradient-primary: linear-gradient(135deg, #FF6A00 0%, #FF8533 100%);
            --gradient-secondary: linear-gradient(135deg, #222831 0%, #393E46 100%);
            --gradient-hero: linear-gradient(135deg, #F4F6F8 0%, #FFFFFF 50%, #F4F6F8 100%);
            --gradient-roadmap: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 50%, #DEE2E6 100%);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
        }

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

      /* Button Styles from logitize4.html */
        .btn-home {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.875rem;
            position: relative;
            overflow: hidden;
        }

        .btn-home--primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-lg);
        }

        .btn-home--primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .btn-home--secondary {
            background: transparent;
            color: var(--dark-text);
            border: 2px solid var(--border-light);
        }

        .btn-home--secondary:hover {
            border-color: var(--primary-orange);
            color: var(--primary-orange);
            background: rgba(255, 106, 0, 0.05);
        }

        .btn-home--quiz {
          background: linear-gradient(135deg, #222831 0%, #393E46 100%);
            color: var(--white);
          box-shadow: 0 4px 16px 0 rgba(34, 40, 49, 0.22), var(--shadow-lg);
          padding: 1.1rem 2.2rem;
          font-size: 1.1rem;
          border-radius: 14px;
          font-weight: 700;
          letter-spacing: 0.01em;
        }

        .btn-home--quiz:hover {
          transform: scale(1.05) translateY(-2px);
          box-shadow: 0 8px 24px 0 rgba(34, 40, 49, 0.32), var(--shadow-xl);
        }

        .btn-home--try {
          background: linear-gradient(135deg, #222831 0%, #393E46 100%);
            color: var(--white);
          box-shadow: 0 4px 16px 0 rgba(34, 40, 49, 0.22), var(--shadow-lg);
          padding: 1.1rem 2.2rem;
          font-size: 1.1rem;
          border-radius: 14px;
          font-weight: 700;
          letter-spacing: 0.01em;
        }

        .btn-home--try:hover {
          transform: scale(1.05) translateY(-2px);
          box-shadow: 0 8px 24px 0 rgba(34, 40, 49, 0.32), var(--shadow-xl);
        }

        .btn-home--find-out {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-lg);
            padding: 1rem 2rem;
            font-size: 1rem;
            border-radius: 12px;
            font-weight: 600;
        }

        .btn-home--find-out:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .btn-home--white {
            background: var(--white);
            color: var(--dark-text);
            box-shadow: var(--shadow-lg);
        }

        .btn-home--white:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .btn-home--outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-home--outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
        }

      body {
          font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
          line-height: 1.6;
          color: var(--dark-text);
          background-color: var(--white);
          overflow-x: hidden;
      }

      /* Accessibility */
      @media (prefers-reduced-motion: reduce) {
          *, *::before, *::after {
              animation-duration: 0.01ms !important;
              animation-iteration-count: 1 !important;
              transition-duration: 0.01ms !important;
          }
      }

      /* Minimal Animations */
      @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(20px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      @keyframes slideInLeft {
          from {
              opacity: 0;
              transform: translateX(-30px);
          }
          to {
              opacity: 1;
              transform: translateX(0);
          }
      }

      @keyframes slideInRight {
          from {
              opacity: 0;
              transform: translateX(30px);
          }
          to {
              opacity: 1;
              transform: translateX(0);
          }
      }

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

        /* Hero Section - Asymmetric Design with Checkered Background */
        .hero {
            padding: 120px 0 60px;
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        /* Checkered Background Pattern - PRESERVED AS REQUESTED */
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="%23E5E7EB" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.4;
        }

        .hero__container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero__content {
            animation: slideInLeft 1s ease-out;
        }

        .hero__title {
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 2rem;
            color: var(--dark-text);
            letter-spacing: -0.02em;
        }

        .hero__title--highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero__subtitle {
            font-size: 1.375rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
            line-height: 1.7;
            position: relative;
            padding-left: 2rem;
        }

        .hero__subtitle::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .hero__actions {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .hero__stats {
          display: flex !important;
          flex-direction: row !important;
          overflow-x: auto !important;
          gap: 1rem !important;
          margin: 1.5rem 0 2rem 0 !important;
          padding-bottom: 0.5rem !important;
          scroll-snap-type: x mandatory !important;
          -webkit-overflow-scrolling: touch !important;
          grid-template-columns: unset !important;
          grid-auto-flow: unset !important;
        }

        .hero__stat {
            position: relative;
        }

        .hero__stat:not(:last-child)::after {
            content: "";
            position: absolute;
            right: -0.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .hero__stat-content {
            display: flex;
            flex-direction: column;
        }

        .hero__stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-orange);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .hero__stat-label {
          font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .hero__visual {
          position: relative;
        }

      .dashboard-preview {
            background: var(--white);
          border-radius: 16px;
          box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
            overflow: hidden;
          transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
          transition: transform 0.3s ease;
      }
      .dashboard-preview:hover {
          transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
      }
      .dashboard-preview__header {
            background: var(--gradient-primary);
          padding: 20px;
          color: var(--white);
          text-align: center;
          font-weight: 600;
          border-radius: 16px 16px 0 0;
      }
      .dashboard-preview__content {
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 10px 10px 30px 10px;
          min-height: 0;
      }

      @media (max-width: 900px) {
          .dashboard-preview__content {
              padding: 10px 0 20px 0;
          }

        }

        /* Features Section - Reduced Spacing */
        .features {
            padding: 3rem 0;
            background: var(--white);
            position: relative;
        }

        .features__container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .features__header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .features__title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--dark-text);
            letter-spacing: -0.02em;
        }

        .features__subtitle {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }

        .features__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-light);
            position: relative;
            transition: transform 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-5px);
        }

        .feature::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .feature__icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            color: var(--white);
            font-size: 1.5rem;
            box-shadow: var(--shadow-lg);
        }

        .feature__title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--dark-text);
        }

        .feature__description {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1.25rem;
        }

        .feature__metric {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background: rgba(255, 106, 0, 0.1);
            color: var(--primary-orange);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(255, 106, 0, 0.2);
        }

        /* Services Section - IMPROVED STYLING */
        .services {
            padding: 3.5rem 0; /* Reduced from 5rem to make section smaller */
            background: var(--accent-charcoal);
            color: var(--white);
            position: relative;
        }

        .services__container {
            max-width: 1200px; /* Reduced from 1400px to make section more compact */
            margin: 0 auto;
            padding: 0 2rem;
        }

        .services__header {
            text-align: center;
            margin-bottom: 2.5rem; /* Reduced from 3rem */
        }

        .services__title {
            font-size: 3rem; /* Reduced from 3.5rem */
            font-weight: 800;
            margin-bottom: 1rem; /* Reduced from 1.5rem */
            letter-spacing: -0.02em;
        }

        .services__subtitle {
            font-size: 1.125rem; /* Reduced from 1.25rem */
            opacity: 0.8;
            max-width: 600px; /* Reduced from 700px */
            margin: 0 auto;
        }

        /* IMPROVED Folder Tab Navigation - Connected to services card */
        .services__tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 0;
            position: relative;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            background: transparent;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
            overflow: visible;
          width: 100%;
        }

        .services__tab {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1rem 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 0.875rem;
          border-radius: 0;
            margin-right: -1px;
            position: relative;
            z-index: 1;
            flex: 1;
            text-align: center;
        }

        .services__tab:first-child {
            border-radius: 12px 0 0 0;
        }

        .services__tab:last-child {
            border-radius: 0 12px 0 0;
            margin-right: 0;
        }

        .services__tab.active {
            background: var(--white);
            color: var(--dark-text);
            z-index: 2;
        }

        .services__tab:hover:not(.active) {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        .services__content {
            background: var(--white);
            border-radius: 0 0 20px 20px;
            padding: 2.5rem;
            color: var(--dark-text);
            box-shadow: var(--shadow-xl);
            position: relative;
            z-index: 1;
          max-width: 900px;
          margin-left: auto;
          margin-right: auto;
          width: 100%;
          min-height: 700px;
          overflow-y: auto;
        }

        .services__tab-content {
            display: none;
        }

        .services__tab-content.active {
            display: block;
        }

        .service__details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: stretch;
            min-height: 340px;
        }

        .service__info h3 {
            font-size: 1.75rem; /* Reduced from 2rem */
            font-weight: 800;
            margin-bottom: 1.25rem; /* Reduced from 1.5rem */
            color: var(--dark-text);
        }

        .service__info p {
            font-size: 1rem; /* Reduced from 1.125rem */
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1.5rem; /* Reduced from 2rem */
        }

        .service__find-out {
            margin-bottom: 1.5rem; /* Reduced from 2rem */
        }

        .service__features {
            list-style: none;
            margin-bottom: 1.5rem; /* Reduced from 2rem */
        }

        .service__feature {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem; /* Reduced from 1rem */
            color: var(--text-muted);
        }

        .service__feature::before {
            content: "✓";
            color: var(--success-green);
            font-weight: 700;
            margin-right: 0.75rem;
            font-size: 1.125rem;
        }

        .service__actions {
            margin-bottom: 1.5rem; /* Reduced from 2rem */
        }

        .service__price {
            font-style: italic;
            color: var(--text-muted);
            font-size: 0.875rem;
          margin-bottom: 1.25rem;
        }

        .service__visual {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light-grey);
            border-radius: 16px;
            padding: 2.5rem 2rem;
            color: var(--text-muted);
            font-weight: 600;
            text-align: center;
            min-height: 340px;
            height: 100%;
        }

        .service__visual-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
        }

        /* Industries Section */
        .industries {
            padding: 5rem 0;
            background: var(--accent-charcoal);
            color: var(--white);
            text-align: center;
        }

        .industries__container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .industries__title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .industries__subtitle {
            font-size: 1.25rem;
            opacity: 0.8;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Hide industries expand toggle and vertical menu on desktop */
        .industries__expand-toggle,
        .industries__pills {
          display: none;
        }

        /* Show industries pills row and CTA on desktop */
        .industries__pills--collapsed {
          display: flex;
          flex-direction: row;
          flex-wrap: wrap;
          gap: 1rem;
          justify-content: center;
          margin-bottom: 4rem;
        }

        /* Show industries expand toggle and vertical menu only on mobile */
        @media (max-width: 768px) {
          .industries__expand-toggle,
          .industries__pills {
            display: flex;
          }
          .industries__pills--collapsed {
            display: none;
          }
        }

        .industries__pills:not(.industries__pills--collapsed) {
            max-height: 1200px;
            opacity: 1;
            transform: translateY(0);
            margin-bottom: 1.5rem;
            pointer-events: auto;
            transition: max-height 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s cubic-bezier(.4,0,.2,1), transform 0.3s cubic-bezier(.4,0,.2,1);
        }

        .industries__pills--collapsed {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 4rem;
        }

        .industries__pill {
            display: inline-flex;
            align-items: center;
            padding: 0.875rem 1.75rem;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .industries__pill:hover {
            background: var(--primary-orange);
            border-color: var(--primary-orange);
            transform: translateY(-2px);
        }

        .industries__cta {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.25rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            margin-top: 1rem;
            margin-bottom: 1rem;
        }

        .industries__cta h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .industries__cta p {
            opacity: 0.8;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        /* Process Section - CHANGED TO WHITE/GREYISH BACKGROUND */
        .process {
            padding: 4rem 0;
            background: linear-gradient(135deg, #e3e4e8 0%, #bfc2c7 100%);
            position: relative;
            color: var(--dark-text);
        }

        .process__container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .process__header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .process__title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--dark-text);
            letter-spacing: -0.02em;
        }

        .process__subtitle {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }

        .process__timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .process__timeline::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--border-light);
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .process__step {
            display: flex;
            align-items: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .process__step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .process__step:nth-child(even) .process__step-content {
            text-align: right;
        }

        .process__step-number {
            width: 80px;
            height: 80px;
            background: var(--primary-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            box-shadow: var(--shadow-lg);
        }

        .process__step-content {
            width: 45%;
            background: linear-gradient(135deg, #f8fafc 0%, #e3e4e8 40%, #cfd2d6 100%);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-light);
            color: var(--dark-text);
        }

        .process__step:nth-child(odd) .process__step-content {
            margin-right: auto;
        }

        .process__step:nth-child(even) .process__step-content {
            margin-left: auto;
        }

        .process__step-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-text);
        }

        .process__step-description {
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* Testimonials - Masonry Layout */
        .testimonials {
            padding: 5rem 0;
            background: var(--white);
            position: relative;
        }

        .testimonials__container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .testimonials__header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .testimonials__title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--dark-text);
            letter-spacing: -0.02em;
        }

        .testimonials__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            align-items: start;
        }

        .testimonial {
            background: var(--light-grey);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-light);
            position: relative;
            transition: transform 0.3s ease;
        }

        .testimonial:hover {
            transform: translateY(-5px);
        }

        .testimonial::before {
            content: "\201C";
            position: absolute;
            top: -10px;
            left: 2rem;
            font-size: 4rem;
            color: var(--primary-orange);
            font-weight: 700;
            line-height: 1;
        }

        .testimonial__content {
            font-style: italic;
            margin-bottom: 2rem;
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 1.125rem;
        }

        .testimonial__author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial__avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.125rem;
            overflow: hidden;
            background: var(--gradient-primary);
        }

        .testimonial__avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .testimonial__info h4 {
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 0.25rem;
        }

        .testimonial__info p {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* FAQ Section */
        .faq {
            padding: 5rem 0;
            background: var(--light-grey);
        }

        .faq__container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .faq__header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq__title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--dark-text);
            letter-spacing: -0.02em;
        }

        .faq__subtitle {
            font-size: 1.125rem;
            color: var(--text-muted);
        }

        .faq__list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq__item {
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq__item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq__question {
            width: 100%;
            padding: 1.5rem;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--dark-text);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq__question::after {
            content: "+";
            font-size: 1.5rem;
            color: var(--primary-orange);
            transition: transform 0.3s ease;
        }

        .faq__question.active::after {
            transform: rotate(45deg);
        }

        .faq__answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .faq__answer.active {
            padding: 0 1.5rem 1.5rem;
            max-height: 200px;
        }

        /* CTA Section - MODIFIED TO INCLUDE FAQ ON THE RIGHT */
        .cta {
            padding: 5rem 0;
            background: var(--accent-charcoal);
            color: var(--white);
            position: relative;
        }

        .cta__container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .cta__content h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .cta__content p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .cta__actions {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        /* FAQ in CTA Section */
        .cta__faq {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cta__faq-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .cta__faq-subtitle {
            text-align: center;
            opacity: 0.8;
            margin-bottom: 2rem;
            font-size: 0.875rem;
        }

        .cta__faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .cta__faq-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        .cta__faq-question {
            width: 100%;
            padding: 1rem;
            background: none;
            border: none;
            text-align: left;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cta__faq-question::after {
            content: "+";
            font-size: 1.25rem;
            color: var(--primary-orange);
            transition: transform 0.3s ease;
        }

        .cta__faq-question.active::after {
            transform: rotate(45deg);
        }

        .cta__faq-answer {
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            font-size: 0.8rem;
        }

        .cta__faq-answer.active {
            padding: 0 1rem 1rem;
            max-height: 150px;
        }

      /* Trust Section - PRESERVED CHECKERED BACKGROUND AND TRANSITION */
        .trust {
            padding: 2rem 0;
            background: var(--white);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            position: relative;
        }
        .trust::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="%23E5E7EB" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.4;
            z-index: 0;
        }
        .trust__container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .trust__title {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 500;
        }
        .trust__logos {
          display: flex !important;
          flex-wrap: nowrap !important;
          justify-content: center !important;
          align-items: center !important;
          gap: 0.75rem !important;
          max-width: 100vw !important;
          overflow-x: visible !important;
          padding-bottom: 0 !important;
          margin: 0 auto !important;
      }
        .trust__logo {
            flex: 1 1 0 !important;
            min-width: 0 !important;
            max-width: 180px !important;
            width: 100%;
            text-align: center !important;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust__logo img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

      /* Features Section - Diagonal Layout */
      .features {
          padding: 5rem 0;
          background: linear-gradient(135deg, var(--light-grey) 0%, #FFFFFF 100%);
          position: relative;
          overflow: hidden;
      }
        .features::before {
            content: "";
            position: absolute;
            top: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: var(--white);
            transform: skewY(-2deg);
            transform-origin: top left;
        }
      .features__container {
          max-width: 1400px;
          margin: 0 auto;
          padding: 0 2rem;
        position: relative;
          z-index: 1;
      }
      .features__header {
          text-align: center;
            margin-bottom: 3rem;
        }
      .features__title {
          font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
          color: var(--dark-text);
          letter-spacing: -0.02em;
      }
      .features__subtitle {
          font-size: 1.125rem;
          color: var(--text-muted);
          max-width: 700px;
          margin: 0 auto;
      }
      .features__grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 2rem;
      }
      .feature {
          background: var(--white);
          padding: 2rem;
          border-radius: 20px;
          box-shadow: var(--shadow-lg);
          border: 1px solid var(--border-light);
          position: relative;
          transition: transform 0.3s ease;
      }
      .feature:hover {
          transform: translateY(-5px);
      }
      .feature::before {
          content: "";
  position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 4px;
          background: var(--gradient-primary);
      }
      .feature__icon {
          width: 60px;
          height: 60px;
          background: var(--gradient-primary);
          border-radius: 16px;
  display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 1.25rem;
          color: var(--white);
          font-size: 1.5rem;
          box-shadow: var(--shadow-lg);
      }
      .feature__title {
          font-size: 1.25rem;
          font-weight: 700;
            margin-bottom: 0.75rem;
          color: var(--dark-text);
      }
      .feature__description {
          color: var(--text-muted);
          line-height: 1.6;
          margin-bottom: 1.25rem;
      }
      .feature__metric {
          display: inline-flex;
          align-items: center;
          padding: 0.5rem 1rem;
          background: rgba(255, 106, 0, 0.1);
            color: var(--primary-orange);
          border-radius: 50px;
          font-size: 0.75rem;
          font-weight: 600;
          border: 1px solid rgba(255, 106, 0, 0.2);
      }

      /* ===== CONSOLIDATED MOBILE STYLES ===== */
      @media (max-width: 768px) {
        /* ===== GLOBAL MOBILE STYLES ===== */
        html, body {
          font-size: 16px;
          line-height: 1.5;
          overflow-x: hidden;
          max-width: 100vw;
        }
        .btn-home, button, .services__tab, .industries__pill {
          min-height: 48px;
          font-size: 1rem;
          padding: 1rem 1.5rem;
          border-radius: 12px;
        }
        .hero__container, .features__container, .services__container, 
        .industries__container, .process__container, .testimonials__container, 
        .faq__container, .cta__container {
          padding: 0 1rem;
        }
        section, .features, .services, .industries, .process, 
        .testimonials, .faq, .cta {
          padding: 2.2rem 0;
        }
        h1, .hero__title {
          font-size: 2.1rem;
          line-height: 1.15;
          margin-bottom: 1.2rem;
          word-break: break-word;
        }
        h2, .features__title, .services__title, .industries__title, 
        .process__title, .testimonials__title, .faq__title {
          font-size: 1.5rem;
          margin-bottom: 1rem;
        }
        h3, .feature__title, .service__info h3, .process__step-title, 
        .industries__cta h3 {
          font-size: 1.15rem;
          margin-bottom: 0.75rem;
        }
        p, .features__subtitle, .services__subtitle, .industries__subtitle, 
        .process__subtitle, .testimonials__content, .faq__subtitle {
          font-size: 1rem;
          margin-bottom: 1rem;
        }
        .features__grid, .services__tabs, .industries__pills, 
        .testimonials__grid {
          gap: 1rem;
        }
        .service__details, .process__timeline {
          gap: 1.2rem;
        }
        .service__visual {
          min-height: 140px;
          font-size: 1rem;
        }

        /* ===== HERO SECTION ===== */
        .hero {
          padding: 2.2rem 0 1.2rem 0;
          min-height: unset;
          display: block;
        }
        .hero__container {
          display: block;
          padding: 0 1rem;
          max-width: 100vw;
        }
        .hero__title {
          font-size: 2rem;
          line-height: 1.15;
          margin-bottom: 1.2rem;
          word-break: break-word;
        }
        .hero__subtitle {
          font-size: 1rem;
          margin-bottom: 1.5rem;
          line-height: 1.5;
          padding-left: 1.5rem;
        }

        .hero__subtitle::before {
          width: 3px;
        }
        .hero__actions {
          display: flex;
          flex-direction: column;
          gap: 0.75rem;
          margin-bottom: 2rem;
        }
        .hero__actions .btn-home {
          width: 100%;
          min-width: 0;
          font-size: 1rem;
          padding: 1rem 0;
          text-align: center;
        }
        .hero__actions .btn-home.btn-home--primary {
          max-width: 320px;
          width: 100%;
          margin-left: 0;
          margin-right: auto;
          display: block;
        }
        .hero__actions .btn-home.btn-home--secondary {
          display: none;
        }
        .hero__stats {
          display: flex;
          flex-direction: row;
          gap: 0.5rem;
          overflow-x: visible;
          margin: 1.2rem 0 1.2rem 0;
          padding-bottom: 0;
          scroll-snap-type: none;
          width: 100%;
          justify-content: space-between;
        }
        .hero__stat {
          flex: 1 1 0;
          min-width: 0;
          max-width: 33.33%;
          background: linear-gradient(135deg, #e3e4e8 0%, #f8f9fa 50%, #bfc2c7 100%);
          border-radius: 12px;
          box-shadow: 0 2px 8px rgba(0,0,0,0.04);
          padding: 0.8rem 0.2rem;
          text-align: center;
          margin: 0;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          position: relative;
        }

        .hero__stat::after {
          display: none;
        }
        .hero__stat-number {
          font-size: 1rem;
          margin-bottom: 0.15rem;
        }
        .hero__stat-label {
          font-size: 0.9rem;
        }
        .hero__visual {
          margin: 2.5rem auto 0 auto;
          max-width: 95vw;
          display: flex;
          justify-content: center;
        }
        .dashboard-preview {
          background: linear-gradient(135deg, #e3e4e8 0%, #f8f9fa 50%, #bfc2c7 100%);
          border-radius: 18px;
          box-shadow: 0 2px 12px 0 rgba(34,40,49,0.10);
          max-width: 340px;
          width: 100%;
          margin: 0 auto 1.2rem auto;
          padding: 0.5rem 0 1.2rem 0;
        }
        .dashboard-preview__header {
          background: linear-gradient(135deg, #FF6A00 0%, #FF8533 100%);
          color: #fff;
          font-weight: 700;
          border-radius: 18px 18px 0 0;
          padding: 0.85rem 0.5rem;
          font-size: 1rem;
          text-align: center;
          box-shadow: 0 2px 8px 0 rgba(255,106,0,0.08);
        }
        .dashboard-preview__content {
          padding: 0.7rem 0.3rem 1.1rem 0.3rem;
          display: flex;
          align-items: center;
          justify-content: center;
        }
        .dashboard-preview__image {
            width: 100%;
            height: auto;
            max-height: 300px;
            object-fit: cover;
            border-radius: 8px;
            display: block;
        }


        /* ===== TRUST SECTION ===== */
        .trust__logos {
          display: flex;
          flex-wrap: nowrap;
          justify-content: center;
          align-items: center;
          gap: 0.75rem;
          max-width: 100vw;
          overflow-x: visible;
          padding-bottom: 0;
          margin: 0 auto;
        }
        .trust__logo {
          flex: 1 1 0;
          min-width: 0;
          max-width: 120px;
          width: 100%;
          text-align: center;
        }

        /* ===== SERVICES SECTION ===== */
        .services__tabs {
          display: flex;
          flex-direction: row;
          overflow-x: auto;
          gap: 0.5rem;
          padding: 0.5rem 0.75rem 0.5rem 1rem;
          margin-bottom: 0;
          background: none;
          border-radius: 0;
          box-shadow: none;
          scrollbar-width: none;
          justify-content: flex-start;
          text-align: left;
        }
        .services__tabs::-webkit-scrollbar {
          display: none;
        }
        .services__tab {
          flex: 0 0 auto;
          border-radius: 22px !important;
          border: 1.5px solid #444851;
          background: #23272f;
          color: #bfc2c7;
          margin: 0;
          padding: 0.85rem 1.5rem;
          font-size: 1.05rem;
          font-weight: 600;
          transition: background 0.2s, color 0.2s, border 0.2s;
          box-shadow: none;
          outline: none;
        }
        .services__tab.active {
          background: #fff;
          color: #23272f;
          border: 1.5px solid #fff;
          box-shadow: 0 2px 8px 0 rgba(34,40,49,0.10);
          z-index: 2;
          border-radius: 0 0 0 0;
        }
        .services__tab:not(.active) {
          background: #23272f;
          color: #bfc2c7;
          border: 1.5px solid #444851;
        }
        .services__tab:first-child,
        .services__tab:last-child {
          border-radius: 22px;
        }
        .services__tab:last-child {
          border-right: none;
        }
        .service__details {
          display: flex;
          flex-direction: column;
          gap: 1.2rem;
        }

        .service__info {
          display: flex;
          flex-direction: column;
          height: auto;
        }

        .service__features {
          flex-grow: 0;
        }

        .service__actions {
          margin-top: 0;
        }
        .service__visual {
          width: 100%;
          max-width: 320px;
          aspect-ratio: 3/4;
          min-height: 180px;
          margin: 0.5rem auto 1rem auto;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #f8f9fa;
          border-radius: 14px;
          box-shadow: 0 4px 16px rgba(0,0,0,0.08);
          font-size: 1rem;
          color: #6B7280;
          text-align: center;
        }

        .service__visual-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }
        .service__features li {
          line-height: 1.3;
          margin-bottom: 0.3rem;
          font-size: 1rem;
          padding: 0.2rem 0;
        }
        .services__content {
          background: linear-gradient(135deg, #e3e4e8 0%, #f8f9fa 50%, #bfc2c7 100%);
          border-radius: 18px;
          padding: 1.2rem 0.7rem;
          min-height: unset;
          box-shadow: 0 2px 12px 0 rgba(34,40,49,0.10);
        }

        /* ===== INDUSTRIES & TESTIMONIALS ===== */
        .industries__grid {
          display: flex;
          overflow-x: auto;
          gap: 1rem;
          padding-bottom: 0.5rem;
          scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch;
          margin-bottom: 2rem;
        }
        .industry__card {
          flex: 0 0 280px;
          min-width: 280px;
          scroll-snap-align: start;
        }
        .testimonials__grid {
          display: flex;
          overflow-x: auto;
          gap: 1rem;
          padding-bottom: 0.5rem;
          scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch;
          flex-direction: row;
        }
        .testimonial {
          flex: 0 0 320px;
          min-width: 320px;
          scroll-snap-align: start;
        }
        .testimonials {
          padding: 2.2rem 0 3rem 0;
        }
        .testimonials__header {
          margin-bottom: 1.2rem;
        }
        .testimonials__grid {
          gap: 0.7rem;
        }
        .testimonial {
          padding: 1.3rem 1.1rem;
        }
        .testimonial__content {
          padding-left: 0.2rem;
          padding-right: 0.2rem;
        }
        .testimonial__avatar {
          width: 38px;
          height: 38px;
          font-size: 0.97rem;
          overflow: hidden;
        }

        .testimonial__avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .testimonial__info h4 {
          font-size: 1rem;
        }
        .testimonial__info p {
          font-size: 0.9rem;
        }

        /* ===== CTA SECTION ===== */
        .cta {
          padding: 2.2rem 0.7rem 2.5rem 0.7rem;
        }
        .cta__container {
          display: flex;
          flex-direction: column;
          width: 100%;
          gap: 2rem;
        }
        .cta__content,
        .cta__faq {
          width: 100%;
          max-width: 100%;
          margin: 0;
          padding: 0;
          padding-top: 1.2rem;
          padding-left: 0.5rem;
          padding-right: 0.5rem;
        }
        .cta__title {
          font-size: 2rem;
          font-weight: 800;
          margin-bottom: 1.2rem;
          letter-spacing: -0.02em;
        }

        /* ===== PROCESS SECTION ===== */
        .process__timeline {
          border-left: 3px solid var(--border-light);
          margin-left: 1.2rem;
          padding-left: 0.5rem;
        }
        .process__step {
          display: flex;
          flex-direction: row;
          align-items: center;
          margin-bottom: 2.2rem;
          background: none;
          box-shadow: none;
          position: relative;
        }
        .process__step-content {
          margin-left: 0.2rem;
          width: 100%;
          min-width: 0;
          position: relative;
        }
        .process__step-number {
          position: absolute;
          left: 0.4rem;
          top: 0.4rem;
          width: 2.5rem;
          height: 2.5rem;
          background: var(--primary-orange);
          color: var(--white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1rem;
          font-weight: 700;
          z-index: 1;
          box-shadow: 0 2px 8px 0 rgba(255,106,0,0.12);
        }

        /* ===== FEATURES SECTION (HORIZONTAL SCROLL) ===== */
        .features__grid {
          display: flex;
          flex-direction: row;
          overflow-x: auto;
          gap: 1rem;
          scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch;
        }
        .feature {
          flex: 0 0 85vw;
          min-width: 260px;
          max-width: 340px;
          scroll-snap-align: start;
        }

        /* ===== INDUSTRIES PILLS ===== */
        .industries__expand-toggle {
          display: block;
          background: #393e46;
          color: #fff;
          padding: 0.75rem 1.25rem;
          border-radius: 12px;
          font-weight: 600;
          text-align: center;
          margin-bottom: 1rem;
          cursor: pointer;
          font-size: 1rem;
        }
        .industries__pills {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 0.75rem;
          padding-left: 0;
          max-height: 0;
          opacity: 0;
          overflow: hidden;
          transform: translateY(-10px);
          transition: max-height 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s cubic-bezier(.4,0,.2,1), transform 0.3s cubic-bezier(.4,0,.2,1);
          margin-bottom: 0;
          pointer-events: none;
        }
        .industries__pills:not(.industries__pills--collapsed) {
          max-height: 1200px;
          opacity: 1;
          transform: translateY(0);
          margin-bottom: 1.5rem;
          pointer-events: auto;
          transition: max-height 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s cubic-bezier(.4,0,.2,1), transform 0.3s cubic-bezier(.4,0,.2,1);
        }
        .industries__pill {
          min-width: 180px;
          max-width: 320px;
          width: 80vw;
          margin: 0 auto;
          display: block;
          text-align: center;
          padding: 0.95rem 1.5rem;
          border-radius: 22px;
          font-size: 1rem;
          font-weight: 600;
          background: linear-gradient(90deg, #23272f 0%, #393e46 100%);
          color: #fff;
          box-shadow: 0 2px 12px 0 rgba(34,40,49,0.10);
          border: 1.5px solid #444851;
          letter-spacing: 0.01em;
          transition: transform 0.13s, filter 0.13s, box-shadow 0.2s;
          outline: none;
        }
        .industries__pill:active {
          transform: scale(0.97);
          filter: brightness(0.93);
          box-shadow: 0 1px 4px 0 rgba(34,40,49,0.08);
        }

      }