
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

    :root {
      --primary-yellow: #FFC900;
      --primary-black: #1a1a1a;
      --secondary-black: #2d2d2d;
      --text-gray: #5f5f5f;
      --bg-light-gray: #f7f7f7;
      --border-color: #e0e0e0;
      --white: #ffffff;
    }

    .ai-platform-container {
      font-family: 'Inter', sans-serif;
      background-color: var(--white);
      color: var(--primary-black);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* General Helpers */
    .section-padding {
      padding: 80px 5%;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .btn {
      display: inline-block;
      padding: 12px 28px;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border: none;
      cursor: pointer;
    }
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .btn-primary {
      background-color: var(--primary-yellow);
      color: var(--primary-black);
    }
    .btn-secondary {
      background-color: var(--white);
      color: var(--primary-black);
      border: 1px solid var(--border-color);
    }
    h1, h2, h3 {
      font-weight: 700;
      line-height: 1.2;
    }

    /* Header */
    .main-header {
      background-color: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
      padding: 15px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid var(--border-color);
    }
    .logo {
      font-weight: 800;
      font-size: 24px;
      color: var(--primary-black);
      text-decoration: none;
    }
    .main-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 30px;
    }
    .main-nav a {
      text-decoration: none;
      color: var(--text-gray);
      font-weight: 500;
      position: relative;
      padding: 5px 0;
    }
    .main-nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary-yellow);
      transition: width 0.3s ease;
    }
    .main-nav a:hover::after {
      width: 100%;
    }
    .header-actions {
      display: flex;
      gap: 15px;
    }

    /* Hero Section */
    .hero-section {
      text-align: center;
      padding: 120px 20px;
      position: relative;
      overflow: hidden;
      background-color: var(--secondary-black);
      color: var(--white);
    }
    .hero-section::before, .hero-section::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      z-index: 0;
    }
    .hero-section::before {
      width: 400px;
      height: 400px;
      background: rgba(255, 201, 0, 0.3);
      top: -100px;
      left: -100px;
      animation: blob-move-1 15s infinite alternate;
    }
    .hero-section::after {
      width: 350px;
      height: 350px;
      background: rgba(0, 123, 255, 0.2);
      bottom: -150px;
      right: -150px;
      animation: blob-move-2 18s infinite alternate;
    }
    @keyframes blob-move-1 {
      from { transform: translate(0, 0) scale(1); }
      to { transform: translate(100px, 50px) scale(1.2); }
    }
    @keyframes blob-move-2 {
      from { transform: translate(0, 0) scale(1); }
      to { transform: translate(-80px, -40px) scale(0.9); }
    }
    .hero-content {
      position: relative;
      z-index: 1;
    }
    .hero-content h1 {
      font-size: 56px;
      margin-bottom: 20px;
      font-weight: 800;
    }
    .hero-content p {
      font-size: 18px;
      max-width: 650px;
      margin: 0 auto 30px;
      color: rgba(255,255,255,0.8);
    }
    .hero-actions .btn {
      margin: 0 10px;
    }

    /* Trusted By Section */
    .trusted-by {
      background-color: var(--bg-light-gray);
      padding: 40px 0;
      text-align: center;
    }
    .trusted-by h3 {
      color: var(--text-gray);
      font-weight: 500;
      margin-bottom: 30px;
    }
    .logo-marquee {
      width: 100%;
      overflow: hidden;
      position: relative;
    }
    .logo-track {
      display: flex;
      width: calc(200px * 14); /* 7 logos * 2 */
      animation: scroll 30s linear infinite;
    }
    .logo-track svg {
      width: 130px;
      height: 40px;
      margin: 0 35px;
      fill: #999;
      transition: fill 0.3s;
    }
    .logo-track svg:hover {
      fill: var(--primary-black);
    }
    @keyframes scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* Feature Sections */
    .feature-section {
      display: flex;
      align-items: center;
      gap: 60px;
    }
    .feature-section:nth-child(even) {
      flex-direction: row-reverse;
    }
    .feature-text {
      flex: 1;
    }
    .feature-text h2 {
      font-size: 36px;
      margin-bottom: 15px;
    }
    .feature-text p {
      color: var(--text-gray);
      margin-bottom: 20px;
    }
    .feature-image {
      flex: 1;
    }
    .feature-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    /* Platform Grid Section */
    .platform-section {
      background-color: var(--bg-light-gray);
      text-align: center;
    }
    .platform-section h2 {
      font-size: 36px;
      margin-bottom: 15px;
    }
    .platform-section .subtitle {
      color: var(--text-gray);
      max-width: 600px;
      margin: 0 auto 50px;
    }
    .platform-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      text-align: left;
    }
    .platform-card {
      background: var(--white);
      padding: 30px;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .platform-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    }
    .platform-card .icon {
      width: 48px;
      height: 48px;
      margin-bottom: 20px;
      color: var(--primary-yellow);
    }
    .platform-card h3 {
      font-size: 20px;
      margin-bottom: 10px;
    }
    .platform-card p {
      color: var(--text-gray);
      font-size: 15px;
    }

    /* Final CTA Section */
    .final-cta {
      background: var(--secondary-black);
      color: var(--white);
      text-align: center;
      border-radius: 20px;
      margin: 80px 5%;
      padding: 60px 20px;
    }
    .final-cta h2 {
      font-size: 36px;
      margin-bottom: 15px;
    }
    .final-cta p {
      color: rgba(255,255,255,0.8);
      margin-bottom: 30px;
    }

    /* Footer */
    .main-footer {
      background-color: var(--primary-black);
      color: var(--white);
      padding: 60px 5% 20px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 40px;
      margin-bottom: 50px;
    }
    .footer-column h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--primary-yellow);
    }
    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-column li {
      margin-bottom: 10px;
    }
    .footer-column a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-column a:hover {
      color: var(--white);
    }
    .footer-bottom {
      border-top: 1px solid #444;
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      color: rgba(255,255,255,0.5);
    }
    .social-links a {
      margin-left: 15px;
    }
    .social-links svg {
      width: 20px;
      height: 20px;
      fill: rgba(255,255,255,0.7);
      transition: fill 0.2s;
    }
    .social-links a:hover svg {
      fill: var(--white);
    }

    /* Animation */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }


    .container {
            max-width: auto;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .header-section {
            text-align: center;
            margin-bottom: 80px;
        }

        .main-title {
            font-size: 48px;
            font-weight: 700;
            color: #6366f1;
            margin-bottom: 8px;
        }

        .sub-title {
            font-size: 48px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 16px;
        }

        .description {
            font-size: 16px;
            color: #6b7280;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .search-container {
            display: flex;
            align-items: center;
            max-width: 500px;
            margin: 0 auto 32px;
            background: white;
            border-radius: 12px;
            padding: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .search-icon {
            font-size: 24px;
            margin-right: 12px;
        }

        .search-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 16px;
            color: #9ca3af;
        }

        .nav-pills {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .pill {
            padding: 12px 24px;
            border: 1px solid #e5e7eb;
            border-radius: 24px;
            background: white;
            color: #6b7280;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pill.active {
            background: #6366f1;
            color: white;
            border-color: #6366f1;
        }

        .pill:hover {
            border-color: #6366f1;
            color: #6366f1;
        }
 /* Redefine customer service */































        .hero-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 120px;
        }

        .tagline {
            color: #64748b;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .highlight {
            color: #3b82f6;
        }

        .hero-description {
            color: #64748b;
            font-size: 16px;
            margin-bottom: 32px;
        }

        .generate-section {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }

        .generate-btn {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .generate-btn:hover {
            background: #2563eb;
        }

        .settings-btn {
            background: #f1f5f9;
            border: none;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            color: #64748b;
            transition: background-color 0.3s;
        }

        .settings-btn:hover {
            background: #e2e8f0;
        }

        .tags {
            display: flex;
            gap: 12px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .tag {
            background: #f1f5f9;
            color: #64748b;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .limits-text {
            color: #64748b;
            font-size: 14px;
            line-height: 1.5;
        }

        .robot-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .robot-image {
            width: 300px;
            height: 300px;
            object-fit: contain;
        }

        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .icon-item {
            position: absolute;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            animation: float 3s ease-in-out infinite;
        }

        .icon-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .icon-1 {
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }

        .icon-2 {
            top: 10%;
            left: 20%;
            animation-delay: 0.5s;
        }

        .icon-3 {
            bottom: 30%;
            right: 5%;
            animation-delay: 1s;
        }

        .icon-4 {
            bottom: 20%;
            left: 15%;
            animation-delay: 1.5s;
        }

        .icon-5 {
            top: 50%;
            right: -5%;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .bottom-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .mockup-container {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .phone-mockup, .chat-mockup {
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            width: 200px;
            height: 300px;
        }

        .phone-mockup img, .chat-mockup img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .approach-tagline {
            color: #64748b;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .approach-title {
            font-size: 36px;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .approach-description {
            color: #64748b;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .features-list {
            margin-bottom: 32px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            color: #64748b;
            font-size: 16px;
        }

        .check-icon {
            flex-shrink: 0;
        }

        .about-btn {
            background: #06b6d4;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .about-btn:hover {
            background: #0891b2;
        }

        @media (max-width: 768px) {
            .hero-section,
            .bottom-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-title {
                font-size: 36px;
            }

            .approach-title {
                font-size: 28px;
            }

            .nav-menu {
                display: none;
            }
        }