
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
          sans-serif;
        line-height: 1.6;
        color: #ffffff;
        background: #0a0a0a;
        overflow-x: hidden;
        padding: 0 2rem; /* Added side spacing */
      }

      /* Header - Transparent with reduced height */
      header {
        position: fixed;
        top: 0;
        left: 2rem; /* Account for body padding */
        right: 2rem; /* Account for body padding */
        background: transparent;
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 1000;
        padding: 0.8rem 0; /* Reduced height */
        transition: all 0.3s ease;
        border-radius: 0 0 12px 12px;
      }

      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 1.5rem; /* Reduced padding */
      }

      .logo {
        display: flex;
        align-items: center;
        font-size: 1.5rem; /* Reduced from 1.8rem */
        font-weight: 700;
        color: #ffffff;
        text-decoration: none;
      }

      .logo i {
        margin-right: 0.5rem;
        font-size: 1.8rem; /* Reduced from 2rem */
        color: #25d366;
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem; /* Reduced from 2.5rem */
        align-items: center;
      }

      .nav-links a {
        color: #cccccc;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.85rem; /* Reduced from 0.95rem */
        transition: all 0.3s ease;
        position: relative;
      }

      .nav-links a:hover {
        color: #ffffff;
      }

      .nav-links a.active {
        color: #25d366;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #25d366, #128c7e);
        transition: width 0.3s ease;
      }

      .nav-links a:hover::after,
      .nav-links a.active::after {
        width: 100%;
      }

      .cta-btn {
        background: linear-gradient(135deg, #349bd7, #128c7e);
        color: white;
        padding: 10px 20px; /* Reduced padding */
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.85rem; /* Reduced font size */
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
      }

      .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        background: linear-gradient(135deg, #1db954, #0f7042);
      }

      .mobile-menu {
        display: none;
        flex-direction: column;
        cursor: pointer;
      }

      .mobile-menu span {
        width: 25px;
        height: 2px;
        background: white;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
      }

      /* Hero Section - Adjusted for new header */
      .hero {
        background: radial-gradient(
          ellipse at center,
          rgba(37, 211, 102, 0.15) 0%,
          rgba(10, 10, 10, 1) 70%
        );
        padding: 120px 0 80px; /* Reduced top padding */
        text-align: center;
        position: relative;
        overflow: hidden;
        margin: 0 -2rem; /* Counteract body padding for full width */
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(37,211,102,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
      }

      .hero-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(37, 211, 102, 0.1);
        border: 1px solid rgba(37, 211, 102, 0.3);
        padding: 6px 14px; /* Reduced padding */
        border-radius: 50px;
        font-size: 0.8rem; /* Reduced from 0.9rem */
        color: #349bd7;
        margin-bottom: 1.5rem; /* Reduced from 2rem */
        animation: fadeInUp 1s ease;
      }

      .hero-badge i {
        margin-right: 8px;
      }

      .hero h1 {
        font-size: 2.2rem; /* Reduced from 4rem */
        margin-bottom: 1.2rem; /* Reduced from 1.5rem */
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff, #25d366);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeInUp 1s ease 0.2s both;
            line-height: 42px;
      }

      .hero p {
        font-size: 1.1rem; /* Reduced from 1.3rem */
        margin-bottom: 2.5rem; /* Reduced from 3rem */
        color: #cccccc;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        animation: fadeInUp 1s ease 0.4s both;
      }

      .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease 0.6s both;
      }

      .btn {
        padding: 14px 28px; /* Reduced from 16px 32px */
        border: none;
        border-radius: 8px;
        font-size: 1rem; /* Reduced from 1.1rem */
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
      }

      .btn-primary {
        background: linear-gradient(135deg, #349bd7, #128c7e);
        color: white;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
      }

      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
        background: linear-gradient(135deg, #1db954, #0f7042);
      }

      .btn-secondary {
        background: transparent;
        color: #25d366;
        border: 1px solid rgba(37, 211, 102, 0.5);
      }

      .btn-secondary:hover {
        background: rgba(37, 211, 102, 0.1);
        border-color: rgba(37, 211, 102, 0.8);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
      }

      /* Stats Section - More interactive */
      .stats {
        padding: 80px 0; /* Reduced from 100px */
        background: rgba(10, 10, 10, 0.8);
        margin: 0 -2rem; /* Full width */
      }

      .stats-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      .section-header {
        text-align: center;
        margin-bottom: 1rem; /* Reduced from 4rem */
      }

      .section-badge {
        display: inline-block;
        background: rgba(37, 211, 102, 0.1);
        border: 1px solid rgba(37, 211, 102, 0.3);
        padding: 4px 12px; /* Reduced padding */
        border-radius: 50px;
        font-size: 0.75rem; /* Reduced from 0.85rem */
        color: #349bd7;
        margin-bottom: 0.8rem; /* Reduced from 1rem */
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
      }

      .section-title {
        font-size: 2.2rem; /* Reduced from 3rem */
        color: #ffffff;
        margin-bottom: 0.8rem; /* Reduced from 1rem */
        font-weight: 700;
      }

      .section-subtitle {
        font-size: 1rem; /* Reduced from 1.2rem */
        color: #888888;
        max-width: 600px;
        margin: 0 auto;
      }

      /* Enhanced Interactive Comparison Chart */
      .comparison-chart {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 2.5rem; /* Reduced from 3rem */
        margin-top: 2.5rem; /* Reduced from 3rem */
        position: relative;
        overflow: hidden;
      }

      .comparison-chart::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          45deg,
          rgba(37, 211, 102, 0.05),
          rgba(18, 140, 126, 0.05)
        );
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
      }

      .comparison-chart:hover::before {
        opacity: 1;
      }

      .chart-title {
        text-align: center;
        font-size: 1.3rem; /* Reduced from 1.5rem */
        color: #ffffff;
        margin-bottom: 1.5rem; /* Reduced from 2rem */
        position: relative;
      }

      .chart-title::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, #25d366, #128c7e);
        border-radius: 1px;
      }

      .chart-metrics {
        display: grid;
        gap: 1.5rem; /* Reduced from 2rem */
      }

      .metric {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem; /* Reduced from 1.5rem */
        background: rgba(255, 255, 255, 0.02);
        padding: 1.2rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .metric::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(37, 211, 102, 0.1),
          transparent
        );
        transition: left 0.6s ease;
      }

      .metric:hover::before {
        left: 100%;
      }

      .metric:hover {
        transform: translateY(-2px);
        border-color: rgba(37, 211, 102, 0.2);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
      }

      .metric-label {
        font-weight: 600;
        color: #ffffff;
        min-width: 140px; /* Reduced from 150px */
        font-size: 0.95rem;
        position: relative;
        z-index: 2;
      }

      .metric-bars {
        flex: 1;
        margin: 0 1.5rem; /* Reduced from 2rem */
        position: relative;
        z-index: 2;
      }

      .metric-bar {
        height: 10px; /* Increased from 8px for better visibility */
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        margin-bottom: 0.5rem;
        position: relative;
        overflow: hidden;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
      }

      .metric-fill {
        height: 100%;
        border-radius: 5px;
        position: relative;
        transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      }

      .metric-fill::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 40%;
        background: linear-gradient(
          to bottom,
          rgba(255, 255, 255, 0.3),
          transparent
        );
        border-radius: 5px 5px 0 0;
      }

      .whatsapp-crm {
        background: linear-gradient(90deg, #25d366, #128c7e);
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
      }

      .traditional {
        background: linear-gradient(90deg, #ff6b6b, #ee5a52);
        box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
      }

      .metric-value {
        min-width: 110px; /* Reduced from 120px */
        text-align: right;
        font-weight: 600;
        font-size: 0.9rem;
        position: relative;
        z-index: 2;
      }

      .whatsapp-value {
        color: #25d366;
        text-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
      }

      .traditional-value {
        color: #ff6b6b;
        text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
      }

      /* Add pulse animation for metric values */
      @keyframes pulse {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
      }

      .metric:hover .metric-value {
        animation: pulse 2s infinite;
      }

      /* Legend for comparison chart */
      .chart-legend {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 1.5rem;
      }

      .legend-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: #cccccc;
      }

      .legend-color {
        width: 16px;
        height: 16px;
        border-radius: 3px;
      }

      .legend-whatsapp {
        background: linear-gradient(90deg, #25d366, #128c7e);
      }

      .legend-traditional {
        background: linear-gradient(90deg, #ff6b6b, #ee5a52);
      }

      /* Features Section */
      .features {
        padding: 20px 0; /* Reduced from 120px */
        background: rgba(5, 5, 5, 0.8);
        margin: 0 -2rem; /* Full width */
      }

      .features-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(
          auto-fit,
          minmax(350px, 1fr)
        ); /* Reduced from 380px */
        gap: 1.5rem; /* Reduced from 2rem */
        margin-top: 3rem; /* Reduced from 4rem */
      }

      .feature-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem; /* Reduced from 2.5rem */
        border-radius: 16px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #25d366, #128c7e);
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .feature-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(37, 211, 102, 0.3);
      }

      .feature-card:hover::before {
        opacity: 1;
      }

      .feature-icon {
        width: 55px; /* Reduced from 60px */
        height: 55px;
        background: linear-gradient(135deg, #25d366, #128c7e);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.2rem; /* Reduced from 1.5rem */
        position: relative;
      }

      .feature-icon::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #25d366, #128c7e);
        border-radius: 12px;
        opacity: 0.2;
        filter: blur(10px);
        z-index: -1;
      }

      .feature-icon i {
        color: white;
        font-size: 1.3rem; /* Reduced from 1.5rem */
      }

      .feature-title {
        font-size: 1.2rem; /* Reduced from 1.4rem */
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 0.8rem; /* Reduced from 1rem */
      }

      .feature-description {
        color: #cccccc;
        line-height: 1.6;
        margin-bottom: 1.2rem; /* Reduced from 1.5rem */
        font-size: 0.95rem;
      }

      .feature-list {
        list-style: none;
      }

      .feature-list li {
        padding: 0.4rem 0; /* Reduced from 0.5rem */
        color: #aaaaaa;
        position: relative;
        padding-left: 1.5rem;
        font-size: 0.9rem; /* Reduced from 0.95rem */
      }

      .feature-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #25d366;
        font-weight: bold;
      }

      /* Process Section */
      .process {
        padding: 20px 0; /* Reduced from 120px */
        background: rgba(10, 10, 10, 0.9);
        margin: 0 -2rem; /* Full width */
      }

      .process-steps {
        display: grid;
        grid-template-columns: repeat(
          auto-fit,
          minmax(320px, 1fr)
        ); /* Reduced from 350px */
        gap: 1.5rem; /* Reduced from 2rem */
        margin-top: 3rem; /* Reduced from 4rem */
      }

      .process-step {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(37, 211, 102, 0.3);
        padding: 2rem; /* Reduced from 2.5rem */
        border-radius: 16px;
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
      }

      .process-step:hover {
        transform: translateY(-10px);
        background: rgba(37, 211, 102, 0.1);
      }

      .step-number {
        width: 55px; /* Reduced from 60px */
        height: 55px;
        background: linear-gradient(135deg, #25d366, #128c7e);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.2rem; /* Reduced from 1.5rem */
        font-size: 1.3rem; /* Reduced from 1.5rem */
        font-weight: bold;
        color: white;
      }

      .step-title {
        font-size: 1.2rem; /* Reduced from 1.4rem */
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 0.8rem; /* Reduced from 1rem */
      }

      .step-description {
        color: #cccccc;
        line-height: 1.6;
        font-size: 0.95rem;
      }

      /* Pricing Section */
      .pricing {
        padding: 20px 0; /* Reduced from 120px */
        background: rgba(5, 5, 5, 0.9);
        margin: 0 -2rem; /* Full width */
      }

      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(
          auto-fit,
          minmax(280px, 1fr)
        ); /* Reduced from 300px */
        gap: 1.5rem; /* Reduced from 2rem */
        margin-top: 3rem; /* Reduced from 4rem */
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
      }

      .pricing-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 2rem; /* Reduced from 2.5rem */
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
      }

      .pricing-card.popular {
        border-color: #25d366;
        background: rgba(37, 211, 102, 0.1);
        transform: scale(1.05);
      }

      .pricing-card.popular::before {
        content: "POPULAR";
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: white;
        padding: 4px 16px; 
        border-radius: 50px;
        font-size: 0.75rem; 
        font-weight: 600;
      }

      .pricing-card:hover {
        transform: translateY(-10px);
        border-color: rgba(37, 211, 102, 0.5);
      }

      .pricing-card.popular:hover {
        transform: scale(1.05) translateY(-10px);
      }

      .plan-name {
        font-size: 1.3rem; 
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 0.4rem; /* Reduced from 0.5rem */
      }

      .plan-description {
        color: #aaaaaa;
        margin-bottom: 1.5rem; /* Reduced from 2rem */
        font-size: 0.9rem; /* Reduced from 0.95rem */
      }

      .plan-price {
        font-size: 2.5rem; /* Reduced from 3rem */
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.4rem; /* Reduced from 0.5rem */
      }

      .plan-price .currency {
        font-size: 1.3rem; /* Reduced from 1.5rem */
      }

      .plan-price .period {
        font-size: 0.9rem; /* Reduced from 1rem */
        color: #aaaaaa;
        font-weight: 400;
      }

      .plan-features {
        list-style: none;
        margin: 1.5rem 0; /* Reduced from 2rem */
        text-align: left;
      }

      .plan-features li {
        padding: 0.4rem 0; /* Reduced from 0.5rem */
        color: #cccccc;
        position: relative;
        padding-left: 1.5rem;
        font-size: 0.9rem;
      }

      .plan-features li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #25d366;
        font-weight: bold;
      }

      .plan-btn {
        width: 100%;
        padding: 12px; /* Reduced from 15px */
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        margin-top: 0.8rem; /* Reduced from 1rem */
      }

      .plan-btn.primary {
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: white;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
      }

      .plan-btn.primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        background: linear-gradient(135deg, #1db954, #0f7042);
      }

      .plan-btn.secondary {
        background: transparent;
        color: #25d366;
        border: 1px solid #25d366;
      }

      .plan-btn.secondary:hover {
        background: rgba(37, 211, 102, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
      }

      /* FAQ Section */
      .faq {
        padding: 20px 0; /* Reduced from 120px */
        background: rgba(10, 10, 10, 0.9);
        margin: 0 -2rem; /* Full width */
      }

      .faq-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      .faq-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        margin-bottom: 0.8rem; /* Reduced from 1rem */
        overflow: hidden;
        transition: all 0.3s ease;
      }

      .faq-item:hover {
        border-color: rgba(37, 211, 102, 0.3);
      }

      .faq-question {
        padding: 1.2rem; /* Reduced from 1.5rem */
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        color: #ffffff;
        font-size: 1rem; /* Reduced from 1.1rem */
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .faq-question:hover {
        color: #25d366;
      }

      .faq-answer {
        padding: 0 1.2rem 1.2rem; /* Reduced padding */
        color: #cccccc;
        line-height: 1.6;
        display: none;
        font-size: 0.95rem;
      }

      .faq-item.active .faq-answer {
        display: block;
      }

      .faq-item.active .faq-question {
        color: #25d366;
      }

      /* CTA Section */
      .final-cta {
        background: linear-gradient(
          135deg,
          rgba(37, 211, 102, 0.2) 0%,
          rgba(10, 10, 10, 1) 100%
        );
        padding: 90px 0; /* Reduced from 120px */
        text-align: center;
        margin: 0 -2rem; /* Full width */
      }

      .cta-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      .cta-title {
        font-size: 2.2rem; /* Reduced from 3rem */
        margin-bottom: 0.8rem; /* Reduced from 1rem */
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff, #25d366);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .cta-description {
        font-size: 1.05rem; /* Reduced from 1.2rem */
        margin-bottom: 2.5rem; /* Reduced from 3rem */
        color: #cccccc;
      }

      /* Footer */
      footer {
        background: rgba(5, 5, 5, 0.95);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 60px 0 25px; /* Reduced from 80px 0 30px */
        margin: 0 -2rem; /* Full width */
      }

      .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(
          auto-fit,
          minmax(220px, 1fr)
        ); /* Reduced from 250px */
        gap: 2.5rem; /* Reduced from 3rem */
      }

      .footer-section h3 {
        color: #ffffff;
        margin-bottom: 1.2rem; /* Reduced from 1.5rem */
        font-size: 1.1rem; /* Reduced from 1.2rem */
        font-weight: 600;
      }

      .footer-section p,
      .footer-section li {
        color: #aaaaaa;
        line-height: 1.6;
        margin-bottom: 0.4rem; /* Reduced from 0.5rem */
        font-size: 0.9rem;
      }

      .footer-section ul {
        list-style: none;
      }

      .footer-section ul li a {
        color: #aaaaaa;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.9rem;
      }

      .footer-section ul li a:hover {
        color: #25d366;
      }

      .social-links {
        display: flex;
        gap: 0.8rem; /* Reduced from 1rem */
        margin-top: 0.8rem; /* Reduced from 1rem */
      }

      .social-links a {
        width: 36px; /* Reduced from 40px */
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #aaaaaa;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.9rem;
      }

      .social-links a:hover {
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: white;
        transform: translateY(-3px);
      }

      .footer-bottom {
        text-align: center;
        margin-top: 2.5rem; /* Reduced from 3rem */
        padding-top: 1.5rem; /* Reduced from 2rem */
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #666666;
        font-size: 0.9rem;
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .animate-on-scroll {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
      }

      .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        body {
          padding: 0 1rem; /* Reduced side padding on mobile */
        }

        header {
          left: 1rem;
          right: 1rem;
        }

        .nav-links {
          display: none;
        }

        .mobile-menu {
          display: flex;
        }

        .hero h1 {
          font-size: 2rem; /* Reduced from 2.5rem */
        }

        .hero p {
          font-size: 1rem; /* Reduced from 1.1rem */
        }

        .hero-buttons {
          flex-direction: column;
          align-items: center;
        }

        .features-grid {
          grid-template-columns: 1fr;
        }

        .process-steps {
          grid-template-columns: 1fr;
        }

        .pricing-grid {
          grid-template-columns: 1fr;
        }

        .section-title {
          font-size: 1.8rem; /* Reduced from 2rem */
        }

        .cta-title {
          font-size: 1.8rem; /* Reduced from 2rem */
        }

        .metric {
          flex-direction: column;
          gap: 0.8rem; /* Reduced from 1rem */
          text-align: center;
        }

        .metric-bars {
          margin: 0;
        }

        .hero,
        .stats,
        .features,
        .process,
        .pricing,
        .faq,
        .final-cta,
        footer {
          margin: 0 -1rem; /* Adjust for mobile padding */
        }
      nav {
     display: flex; 
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 10px auto;
    padding: 0 1.5rem;
    
}
.cta-btn{
    display: none;
}
      }

      @media (max-width: 480px) {
        .hero h1 {
          font-size: 1.8rem; /* Reduced from 2rem */
        }

        .section-title {
          font-size: 1.6rem; /* Reduced from 1.8rem */
        }

        .nav {
          padding: 0 1rem;
        }

        .hero-content,
        .features-container,
        .stats-container {
          padding: 0 1rem;
        }

        .comparison-chart {
          padding: 1.5rem; /* Reduced padding on small screens */
        }

        .metric {
          padding: 1rem; /* Reduced metric padding */
        }
      }

      /* Loading and scroll effects */
      .loading-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 3px;
        background: linear-gradient(90deg, #25d366, #128c7e);
        z-index: 1001;
        transition: width 0.3s ease;
      }

      /* Particles effect */
      .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        pointer-events: none;
      }

      .particle {
        position: absolute;
        width: 2px;
        height: 2px;
        background: #25d366;
        border-radius: 50%;
        animation: float 15s infinite linear;
      }

      @keyframes float {
        0% {
          transform: translateY(100vh) rotate(0deg);
          opacity: 0;
        }
        10% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          transform: translateY(-100vh) rotate(360deg);
          opacity: 0;
        }
      }

      /* Enhanced Header Transparency */
      header.scrolled {
        background: rgba(5, 5, 5, 0.9) !important;
        border-bottom: 1px solid rgba(37, 211, 102, 0.3) !important;
      }

       /* Chatbot Demo */
        .chatbot-demo {
            margin: 4rem 0;
            display: flex;
            justify-content: center;
        }

        .demo-container {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            max-width: 600px;
            width: 100%;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .chat-preview {
            background: rgba(0, 0, 0, 0.4);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(37, 211, 102, 0.2);
        }

        .chat-header {
            background: linear-gradient(135deg, #25d366, #128c7e);
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
        }

        .chat-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .status-indicator {
            width: 8px;
            height: 8px;
            background: #4ade80;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.7;
            }
        }

        .chat-actions i {
            font-size: 1.2rem;
            opacity: 0.8;
        }

        .chat-messages {
            padding: 1.5rem;
            height: 300px;
            overflow-y: auto;
            background: rgba(0, 0, 0, 0.2);
        }

        .message {
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .message.animate-message {
            animation: slideInMessage 0.5s ease forwards;
        }

        .customer-message .message-content {
            background: rgba(37, 211, 102, 0.2);
            border: 1px solid rgba(37, 211, 102, 0.3);
            margin-left: auto;
            margin-right: 0;
            max-width: 70%;
        }

        .ai-message .message-content {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-right: auto;
            margin-left: 0;
            max-width: 70%;
        }

        .message-content {
            padding: 0.8rem 1rem;
            border-radius: 12px;
            color: #ffffff;
            font-size: 0.9rem;
            line-height: 1.4;
            position: relative;
        }

        .message-time {
            font-size: 0.75rem;
            color: #aaaaaa;
            margin-top: 0.3rem;
            display: block;
        }

        .typing-indicator {
            padding: 1rem 1.5rem;
            background: rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .typing-dots {
            display: flex;
            gap: 3px;
        }

        .typing-dots span {
            width: 6px;
            height: 6px;
            background: #25d366;
            border-radius: 50%;
            animation: typingDots 1.4s infinite ease-in-out;
        }

        .typing-dots span:nth-child(1) { animation-delay: -0.32s; }
        .typing-dots span:nth-child(2) { animation-delay: -0.16s; }

        .typing-text {
            color: #888888;
            font-size: 0.8rem;
            font-style: italic;
        }

        /* Demo Stats */
        .demo-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-3px);
            border-color: rgba(37, 211, 102, 0.3);
            background: rgba(37, 211, 102, 0.1);
        }

        .stat-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.5rem;
            color: white;
            font-size: 1rem;
        }

        .stat-value {
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #25d366;
            margin-bottom: 0.2rem;
        }

        .stat-label {
            font-size: 0.8rem;
            color: #cccccc;
        }

        /* AI Features Grid */
        .ai-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .ai-feature-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .ai-feature-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #25d366, #128c7e);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .ai-feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(37, 211, 102, 0.3);
        }

        .ai-feature-card:hover::before {
            opacity: 1;
        }

        .ai-feature-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            position: relative;
        }

        .ai-feature-icon::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 12px;
            opacity: 0.2;
            filter: blur(10px);
            z-index: -1;
        }

        .ai-feature-icon i {
            color: white;
            font-size: 1.3rem;
        }

        .ai-feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.8rem;
        }

        .ai-feature-description {
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 1.2rem;
            font-size: 0.95rem;
        }

        .ai-feature-list {
            list-style: none;
        }

        .ai-feature-list li {
            padding: 0.4rem 0;
            color: #aaaaaa;
            position: relative;
            padding-left: 1.5rem;
            font-size: 0.9rem;
        }

        .ai-feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #25d366;
            font-weight: bold;
        }

        /* AI Benefits Section */
        .ai-benefits-section {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }

        .ai-benefits-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                45deg,
                rgba(37, 211, 102, 0.05),
                rgba(18, 140, 126, 0.05)
            );
            opacity: 0.8;
            pointer-events: none;
        }

        .benefits-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

        .benefits-title {
            font-size: 1.8rem;
            color: #ffffff;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .benefits-subtitle {
            color: #cccccc;
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .benefit-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateY(-8px);
            border-color: rgba(37, 211, 102, 0.4);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.2);
        }

        .benefit-metric {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #25d366, #128c7e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .benefit-label {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .benefit-description {
            font-size: 0.9rem;
            color: #aaaaaa;
            line-height: 1.5;
        }

        /* Animations */
        @keyframes slideInMessage {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes typingDots {
            0%, 80%, 100% {
                transform: scale(0);
                opacity: 0.5;
            }
            40% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding: 0 1rem;
            }

            .ai-features-grid {
                grid-template-columns: 1fr;
            }

            .demo-stats {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .chat-messages {
                height: 250px;
            }

            .ai-benefits-section {
                padding: 2rem;
            }

            .message-content {
                max-width: 85%;
            }

            .ai-chatbot {
                margin: 0 -1rem;
            }
        }

        @media (max-width: 480px) {
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .demo-container {
                padding: 1.5rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }

        /* Workflows Section */
        .workflows {
            padding: 100px 0;
            background: rgba(10, 10, 10, 0.9);
            margin: 0 -2rem;
            position: relative;
            overflow: hidden;
        }

        .workflows::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(
                ellipse at 70% 30%,
                rgba(37, 211, 102, 0.08) 0%,
                rgba(10, 10, 10, 1) 70%
            );
            pointer-events: none;
        }

        .workflows-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        /* Workflow Categories Tabs */
        .workflow-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .workflow-tab {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 0.8rem 1.5rem;
            color: #cccccc;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .workflow-tab::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .workflow-tab:hover::before {
            left: 100%;
        }

        .workflow-tab:hover,
        .workflow-tab.active {
            background: rgba(37, 211, 102, 0.1);
            border-color: rgba(37, 211, 102, 0.3);
            color: #25d366;
            transform: translateY(-2px);
        }

        /* Workflow Grid */
        .workflows-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .workflow-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .workflow-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #25d366, #128c7e);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .workflow-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(37, 211, 102, 0.2);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(37, 211, 102, 0.1);
        }

        .workflow-card:hover::before {
            opacity: 1;
        }

        .workflow-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .workflow-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            position: relative;
            flex-shrink: 0;
        }

        .workflow-icon::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 16px;
            opacity: 0.3;
            filter: blur(12px);
            z-index: -1;
            transform: scale(1.2);
        }

        .workflow-meta {
            flex: 1;
        }

        .workflow-category {
            background: rgba(37, 211, 102, 0.1);
            border: 1px solid rgba(37, 211, 102, 0.3);
            border-radius: 6px;
            padding: 0.2rem 0.6rem;
            font-size: 0.7rem;
            color: #25d366;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .workflow-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.3rem;
        }

        .workflow-description {
            color: #cccccc;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* Workflow Steps */
        .workflow-steps {
            margin-bottom: 1.5rem;
        }

        .steps-title {
            font-size: 0.9rem;
            color: #25d366;
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .steps-container {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .step-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .step-item:hover {
            background: rgba(37, 211, 102, 0.05);
            border-color: rgba(37, 211, 102, 0.2);
        }

        .step-number {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            flex-shrink: 0;
        }

        .step-text {
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .step-arrow {
            color: #25d366;
            font-size: 1rem;
            margin-left: auto;
        }

        /* Workflow Stats */
        .workflow-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            background: rgba(37, 211, 102, 0.05);
            border-color: rgba(37, 211, 102, 0.2);
        }

        .stat-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: #25d366;
            display: block;
        }

        .stat-label {
            font-size: 0.75rem;
            color: #aaaaaa;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Workflows Section */
        .workflows {
            padding: 100px 0;
            background: rgba(10, 10, 10, 0.9);
            margin: 0 -2rem;
            position: relative;
            overflow: hidden;
        }

        .workflows::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(
                ellipse at 70% 30%,
                rgba(37, 211, 102, 0.08) 0%,
                rgba(10, 10, 10, 1) 70%
            );
            pointer-events: none;
        }

        .workflows-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        /* Workflow Categories Tabs */
        .workflow-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .workflow-tab {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 0.8rem 1.5rem;
            color: #cccccc;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .workflow-tab::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .workflow-tab:hover::before {
            left: 100%;
        }

        .workflow-tab:hover,
        .workflow-tab.active {
            background: rgba(37, 211, 102, 0.1);
            border-color: rgba(37, 211, 102, 0.3);
            color: #25d366;
            transform: translateY(-2px);
        }

        /* Workflow Grid */
        .workflows-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .workflow-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .workflow-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #25d366, #128c7e);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .workflow-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(37, 211, 102, 0.2);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(37, 211, 102, 0.1);
        }

        .workflow-card:hover::before {
            opacity: 1;
        }

        .workflow-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .workflow-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            position: relative;
            flex-shrink: 0;
        }

        .workflow-icon::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 16px;
            opacity: 0.3;
            filter: blur(12px);
            z-index: -1;
            transform: scale(1.2);
        }

        .workflow-meta {
            flex: 1;
        }

        .workflow-category {
            background: rgba(37, 211, 102, 0.1);
            border: 1px solid rgba(37, 211, 102, 0.3);
            border-radius: 6px;
            padding: 0.2rem 0.6rem;
            font-size: 0.7rem;
            color: #25d366;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .workflow-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.3rem;
        }

        .workflow-description {
            color: #cccccc;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* Workflow Steps */
        .workflow-steps {
            margin-bottom: 1.5rem;
        }

        .steps-title {
            font-size: 0.9rem;
            color: #25d366;
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .steps-container {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .step-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
            min-height: 50px;
        }

        .step-item:hover {
            background: rgba(37, 211, 102, 0.05);
            border-color: rgba(37, 211, 102, 0.2);
            transform: translateX(5px);
        }

        .step-number {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
        }

        .step-text {
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 500;
            flex: 1;
            text-align: left;
        }

        .step-arrow {
            color: #25d366;
            font-size: 1rem;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .step-item:hover .step-arrow {
            transform: translateX(3px);
        }

        /* Final step styling */
        .step-item:last-child .step-arrow {
            color: #25d366;
        }

        .step-item:last-child .step-number {
            background: linear-gradient(135deg, #25d366, #1db954);
        }

        /* Workflow Stats */
        .workflow-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            background: rgba(37, 211, 102, 0.05);
            border-color: rgba(37, 211, 102, 0.2);
        }

        .stat-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: #25d366;
            display: block;
        }

        .stat-label {
            font-size: 0.75rem;
            color: #aaaaaa;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Workflow Actions */
        .workflow-actions {
            display: flex;
            gap: 0.8rem;
            align-items: center;
        }

        .workflow-btn {
            padding: 0.7rem 1.2rem;
            border: none;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .workflow-btn.primary {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .workflow-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }

        .workflow-btn.secondary {
            background: transparent;
            color: #cccccc;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .workflow-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* Workflow Builder Section */
        .workflow-builder {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 3rem;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }

        .workflow-builder::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                45deg,
                rgba(37, 211, 102, 0.03),
                rgba(18, 140, 126, 0.03)
            );
            pointer-events: none;
        }

        .builder-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

        .builder-title {
            font-size: 1.8rem;
            color: #ffffff;
            margin-bottom: 0.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }

        .builder-title i {
            color: #25d366;
            font-size: 2rem;
        }

        .builder-subtitle {
            color: #aaaaaa;
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Interactive Canvas */
        .builder-canvas {
            background: rgba(0, 0, 0, 0.2);
            border: 2px dashed rgba(37, 211, 102, 0.3);
            border-radius: 16px;
            padding: 3rem;
            position: relative;
            z-index: 2;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .canvas-flow {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .canvas-node {
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 1.2rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            min-width: 120px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .canvas-node:hover {
            transform: scale(1.05);
            border-color: rgba(37, 211, 102, 0.5);
            background: rgba(37, 211, 102, 0.1);
        }

        .canvas-node.start-node {
            border-color: rgba(34, 197, 94, 0.5);
            background: rgba(34, 197, 94, 0.1);
        }

        .canvas-node.action-node {
            border-color: rgba(59, 130, 246, 0.5);
            background: rgba(59, 130, 246, 0.1);
        }

        .canvas-node.condition-node {
            border-color: rgba(168, 85, 247, 0.5);
            background: rgba(168, 85, 247, 0.1);
        }

        .canvas-node.end-node {
            border-color: rgba(239, 68, 68, 0.5);
            background: rgba(239, 68, 68, 0.1);
        }

        .canvas-node i {
            font-size: 1.5rem;
            color: #25d366;
        }

        .canvas-node span {
            font-size: 0.85rem;
            color: #ffffff;
            text-align: center;
            font-weight: 600;
        }

        .canvas-connector {
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #25d366, #128c7e);
            position: relative;
            border-radius: 2px;
        }

        .canvas-connector::after {
            content: "";
            position: absolute;
            right: -6px;
            top: -3px;
            width: 0;
            height: 0;
            border-left: 8px solid #25d366;
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
        }

        /* Builder Tools */
        .builder-tools {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .tool-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            padding: 0.8rem 1.2rem;
            color: #cccccc;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .tool-btn:hover {
            background: rgba(37, 211, 102, 0.1);
            border-color: rgba(37, 211, 102, 0.3);
            color: #25d366;
            transform: translateY(-2px);
        }

        /* Workflow Templates */
        .workflow-templates {
            margin-top: 3rem;
            position: relative;
            z-index: 2;
        }

        .templates-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .templates-title {
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .templates-subtitle {
            color: #aaaaaa;
            font-size: 0.9rem;
        }

        .templates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .template-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .template-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(37, 211, 102, 0.3);
        }

        .template-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .template-name {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .template-description {
            font-size: 0.85rem;
            color: #aaaaaa;
            line-height: 1.5;
        }

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .workflows-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 0 1rem;
            }

            .workflows {
                margin: 0 -1rem;
            }

            .workflows-grid {
                grid-template-columns: 1fr;
            }

            .workflow-tabs {
                flex-direction: column;
                align-items: center;
            }

            .workflow-stats {
                grid-template-columns: 1fr;
            }

            .canvas-flow {
                flex-direction: column;
                gap: 1rem;
            }

            .canvas-connector {
                transform: rotate(90deg);
                width: 20px;
            }

            .builder-canvas {
                padding: 2rem;
            }

            .workflow-actions {
                flex-direction: column;
            }

            .section-title {
                font-size: 2rem;
            }

            .templates-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .workflows-container {
                padding: 0 1rem;
            }

            .workflow-card {
                padding: 1.5rem;
            }

            .workflow-builder {
                padding: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .builder-title {
                font-size: 1.5rem;
                flex-direction: column;
                gap: 0.5rem;
            }
        }
    