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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
            position: relative;
        }

/* TAB STYLES - Add this to your style.css file */

/* Fix subtitle spacing when tabs are present */
.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem; /* Reduced from 5rem for tabs pages */
}

.tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.tabs {
  display: inline-flex;
  gap: 0.75rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.tab-btn {
  border: none;
  background: transparent;
  color: #e5e7eb;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.tab-btn:hover {
  background: rgba(255,255,255,0.06);
}

.tab-btn.active {
  background: #a855f7;
  color: #fff;
  box-shadow: 0 0 20px rgba(168,85,247,0.4);
}

.tab-content { 
  display: none; 
}

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

/* Remove top margin from analytics grid to match features */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 0; /* Changed from 4rem to match features spacing */
}

/* STAR BACKGROUND */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: #cd9fff;
    border-radius: 50%;
    animation: twinkle linear infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}


.dashboard-tilt {
    transform: perspective(1400px) rotateX(25deg) rotateY(-12deg) scale(0.9);
    transition: transform 1s ease-out;
    transform-origin: center top;
}

        .simple-footer {
    background: #0d0d0d;
    color: #ccc;
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #222;
    font-size: 14px;
}


        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .star {
            position: absolute;
            background: #cd9fff;
            border-radius: 50%;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }

        nav, section {
            position: relative;
            z-index: 1;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            padding: 1.2rem 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #cd9fff;
        }

        .cta-button {
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            padding: 0.7rem 1.8rem;
            border-radius: 25px;
            border: none;
            color: #000;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(205, 159, 255, 0.5);
        }

        .hero {
            margin-top: 80px;
            padding: 10rem 5% 6rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(205, 159, 255, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 6rem;
        }

        .primary-btn {
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            padding: 1.1rem 2.8rem;
            border-radius: 30px;
            border: none;
            color: #000;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(205, 159, 255, 0.4);
        }

        .secondary-btn {
            background: rgba(80, 80, 80, 0.3);
            padding: 1.1rem 2.8rem;
            border-radius: 30px;
            border: 1px solid rgba(205, 159, 255, 0.2);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            backdrop-filter: blur(10px);
        }

        .secondary-btn:hover {
            background: rgba(80, 80, 80, 0.5);
            border-color: rgba(205, 159, 255, 0.5);
        }

        .dashboard-preview {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            perspective: 1000px;
            opacity: 1;
            transform: translateY(0);
            transition: all 1s ease;
        }

.dashboard-container {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border-radius: 20px;
    padding: 4.5rem 2rem 2rem 2rem; /* ⬅️ Increased top padding */
    border: 1px solid rgba(205, 159, 255, 0.15);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    backdrop-filter: blur(20px);
    position: relative; /* required for logo absolute positioning */
}


        .dashboard-preview:hover .dashboard-container {
            transform: rotateX(2deg) rotateY(-2deg);
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .dashboard-card {
            background: rgba(60, 60, 60, 0.4);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(205, 159, 255, 0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .dashboard-card:hover {
            background: rgba(80, 80, 80, 0.5);
            border-color: rgba(205, 159, 255, 0.3);
        }

        .card-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 0.5rem;
        }

        .card-value {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .chart-container {
            background: rgba(60, 60, 60, 0.4);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(205, 159, 255, 0.1);
            height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            backdrop-filter: blur(10px);
        }

        .chart-inner {
            flex: 1;
        }

        .chart-legend {
            margin-top: 1rem;
            text-align: center;
        }

        .chart-legend-item {
            display: inline-flex;
            align-items: center;
            margin: 0 1rem;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .chart-legend-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 8px;
            display: inline-block;
        }

        .dot-rev { background: #cd9fff; }
        .dot-exp { background: #ff7597; }

        .content-section {
            padding: 8rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .content-section h1,
        .content-section h2 {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 2rem;
        }

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

        .feature-card {
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            background: linear-gradient(135deg, rgba(70, 70, 70, 0.5) 0%, rgba(40, 40, 40, 0.7) 100%);
            border-color: rgba(205, 159, 255, 0.4);
            box-shadow: 0 20px 60px rgba(205, 159, 255, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

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

        .feature-card p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }

        .stats {
            padding: 6rem 5%;
            background: linear-gradient(135deg, rgba(205, 159, 255, 0.05) 0%, rgba(160, 96, 255, 0.05) 100%);
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(60, 60, 60, 0.3) 50%, transparent 100%);
            pointer-events: none;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .dashboard-grid {
                grid-template-columns: 1fr 1fr;
            }

            .content-section h2 {
                font-size: 2.5rem;
            }
        }
    .logo-img{height:50px;width:auto;display:block;} 


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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
            position: relative;
        }
        .simple-footer {
    background: #0d0d0d;
    color: #ccc;
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #222;
    font-size: 14px;
}
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .star {
            position: absolute;
            background: #cd9fff;
            border-radius: 50%;
            animation: twinkle linear infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }

        nav, section {
            position: relative;
            z-index: 1;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            padding: 1.2rem 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #cd9fff;
        }

        .cta-button {
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            padding: 0.7rem 1.8rem;
            border-radius: 25px;
            border: none;
            color: #000;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(205, 159, 255, 0.5);
        }

        

        .hero {
            margin-top: 80px;
            padding: 10rem 5% 6rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(205, 159, 255, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 6rem;
        }

        .primary-btn {
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            padding: 1.1rem 2.8rem;
            border-radius: 30px;
            border: none;
            color: #000;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(205, 159, 255, 0.4);
        }

        .secondary-btn {
            background: rgba(80, 80, 80, 0.3);
            padding: 1.1rem 2.8rem;
            border-radius: 30px;
            border: 1px solid rgba(205, 159, 255, 0.2);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            backdrop-filter: blur(10px);
        }

        .secondary-btn:hover {
            background: rgba(80, 80, 80, 0.5);
            border-color: rgba(205, 159, 255, 0.5);
        }

        .dashboard-preview {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            perspective: 1000px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease;
        }

        .dashboard-preview.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .dashboard-container {
            background: linear-gradient(135deg, rgba(40, 40, 40, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(205, 159, 255, 0.15);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            transform-style: preserve-3d;
            transition: transform 0.5s ease;
            backdrop-filter: blur(20px);
        }

        .dashboard-preview:hover .dashboard-container {
            transform: rotateX(2deg) rotateY(-2deg);
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .dashboard-card {
            background: rgba(60, 60, 60, 0.4);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(205, 159, 255, 0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .dashboard-card:hover {
            background: rgba(80, 80, 80, 0.5);
            border-color: rgba(205, 159, 255, 0.3);
        }

        .card-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 0.5rem;
        }

        .card-value {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .chart-container {
            background: rgba(60, 60, 60, 0.4);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(205, 159, 255, 0.1);
            height: 250px;
            display: flex;
            align-items: flex-end;
            gap: 1rem;
            justify-content: space-around;
            backdrop-filter: blur(10px);
        }

        .bar {
            background: linear-gradient(180deg, #cd9fff 0%, #8040bf 100%);
            border-radius: 8px 8px 0 0;
            width: 60px;
            animation: growBar 1s ease forwards;
            transform-origin: bottom;
            opacity: 0;
            box-shadow: 0 0 20px rgba(205, 159, 255, 0.3);
        }

        .dashboard-preview.visible .bar {
            opacity: 1;
        }

        .bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
        .bar:nth-child(2) { height: 80%; animation-delay: 0.2s; }
        .bar:nth-child(3) { height: 45%; animation-delay: 0.3s; }
        .bar:nth-child(4) { height: 90%; animation-delay: 0.4s; }
        .bar:nth-child(5) { height: 70%; animation-delay: 0.5s; }
        .bar:nth-child(6) { height: 55%; animation-delay: 0.6s; }

        @keyframes growBar {
            from {
                transform: scaleY(0);
                opacity: 0;
            }
            to {
                transform: scaleY(1);
                opacity: 1;
            }
        }

        .content-section {
            padding: 8rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .content-section h1,
        .content-section h2 {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 5rem;
        }

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

        .feature-card {
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            background: linear-gradient(135deg, rgba(70, 70, 70, 0.5) 0%, rgba(40, 40, 40, 0.7) 100%);
            border-color: rgba(205, 159, 255, 0.4);
            box-shadow: 0 20px 60px rgba(205, 159, 255, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

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

        .feature-card p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .pricing-card {
            padding: 3rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            position: relative;
        }

        .pricing-card.featured {
            border-color: rgba(205, 159, 255, 0.5);
            background: linear-gradient(135deg, rgba(70, 70, 70, 0.5) 0%, rgba(40, 40, 40, 0.7) 100%);
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            color: #000;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: rgba(205, 159, 255, 0.4);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .plan-period {
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 2rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 0.75rem 0;
            color: rgba(255, 255, 255, 0.7);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .plan-features li:before {
            content: '✓';
            color: #cd9fff;
            font-weight: bold;
            margin-right: 1rem;
        }

        .analytics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .analytics-card {
            padding: 3rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .analytics-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .analytics-card p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .analytics-stat {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stat-name {
            color: rgba(255, 255, 255, 0.7);
        }

        .stat-value {
            color: #cd9fff;
            font-weight: 700;
        }

        .contact-container {
            max-width: 800px;
            margin: 4rem auto;
            padding: 3rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(60, 60, 60, 0.4);
            border: 1px solid rgba(205, 159, 255, 0.1);
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(205, 159, 255, 0.5);
            background: rgba(80, 80, 80, 0.5);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .stats {
            padding: 6rem 5%;
            background: linear-gradient(135deg, rgba(205, 159, 255, 0.05) 0%, rgba(160, 96, 255, 0.05) 100%);
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(60, 60, 60, 0.3) 50%, transparent 100%);
            pointer-events: none;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .dashboard-grid {
                grid-template-columns: 1fr;
            }

            .analytics-grid {
                grid-template-columns: 1fr;
            }

            .content-section h2 {
                font-size: 2.5rem;
            }
        }
    .logo-img{height:50px;width:auto;display:block;} 


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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
            position: relative;
        }
        .simple-footer {
    background: #0d0d0d;
    color: #ccc;
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #222;
    font-size: 14px;
}
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .star {
            position: absolute;
            background: #cd9fff;
            border-radius: 50%;
            animation: twinkle linear infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }

        nav, section {
            position: relative;
            z-index: 1;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            padding: 1.2rem 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #cd9fff;
        }

        .cta-button {
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            padding: 0.7rem 1.8rem;
            border-radius: 25px;
            border: none;
            color: #000;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(205, 159, 255, 0.5);
        }

        

        .hero {
            margin-top: 80px;
            padding: 10rem 5% 6rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(205, 159, 255, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 6rem;
        }

        .primary-btn {
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            padding: 1.1rem 2.8rem;
            border-radius: 30px;
            border: none;
            color: #000;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(205, 159, 255, 0.4);
        }

        .secondary-btn {
            background: rgba(80, 80, 80, 0.3);
            padding: 1.1rem 2.8rem;
            border-radius: 30px;
            border: 1px solid rgba(205, 159, 255, 0.2);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            backdrop-filter: blur(10px);
        }

        .secondary-btn:hover {
            background: rgba(80, 80, 80, 0.5);
            border-color: rgba(205, 159, 255, 0.5);
        }

        .dashboard-preview {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            perspective: 1000px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease;
        }

        .dashboard-preview.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .dashboard-container {
            background: linear-gradient(135deg, rgba(40, 40, 40, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(205, 159, 255, 0.15);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            transform-style: preserve-3d;
            transition: transform 0.5s ease;
            backdrop-filter: blur(20px);
        }

        .dashboard-preview:hover .dashboard-container {
            transform: rotateX(2deg) rotateY(-2deg);
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .dashboard-card {
            background: rgba(60, 60, 60, 0.4);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(205, 159, 255, 0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .dashboard-card:hover {
            background: rgba(80, 80, 80, 0.5);
            border-color: rgba(205, 159, 255, 0.3);
        }

        .card-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 0.5rem;
        }

        .card-value {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .chart-container {
            background: rgba(60, 60, 60, 0.4);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(205, 159, 255, 0.1);
            height: 250px;
            display: flex;
            align-items: flex-end;
            gap: 1rem;
            justify-content: space-around;
            backdrop-filter: blur(10px);
        }

        .bar {
            background: linear-gradient(180deg, #cd9fff 0%, #8040bf 100%);
            border-radius: 8px 8px 0 0;
            width: 60px;
            animation: growBar 1s ease forwards;
            transform-origin: bottom;
            opacity: 0;
            box-shadow: 0 0 20px rgba(205, 159, 255, 0.3);
        }

        .dashboard-preview.visible .bar {
            opacity: 1;
        }

        .bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
        .bar:nth-child(2) { height: 80%; animation-delay: 0.2s; }
        .bar:nth-child(3) { height: 45%; animation-delay: 0.3s; }
        .bar:nth-child(4) { height: 90%; animation-delay: 0.4s; }
        .bar:nth-child(5) { height: 70%; animation-delay: 0.5s; }
        .bar:nth-child(6) { height: 55%; animation-delay: 0.6s; }

        @keyframes growBar {
            from {
                transform: scaleY(0);
                opacity: 0;
            }
            to {
                transform: scaleY(1);
                opacity: 1;
            }
        }

        .content-section {
            padding: 8rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .content-section h1,
        .content-section h2 {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 5rem;
        }

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

        .feature-card {
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            background: linear-gradient(135deg, rgba(70, 70, 70, 0.5) 0%, rgba(40, 40, 40, 0.7) 100%);
            border-color: rgba(205, 159, 255, 0.4);
            box-shadow: 0 20px 60px rgba(205, 159, 255, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

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

        .feature-card p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .pricing-card {
            padding: 3rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            position: relative;
        }

        .pricing-card.featured {
            border-color: rgba(205, 159, 255, 0.5);
            background: linear-gradient(135deg, rgba(70, 70, 70, 0.5) 0%, rgba(40, 40, 40, 0.7) 100%);
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            color: #000;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: rgba(205, 159, 255, 0.4);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .plan-period {
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 2rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 0.75rem 0;
            color: rgba(255, 255, 255, 0.7);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .plan-features li:before {
            content: '✓';
            color: #cd9fff;
            font-weight: bold;
            margin-right: 1rem;
        }

        .analytics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .analytics-card {
            padding: 3rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .analytics-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .analytics-card p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .analytics-stat {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stat-name {
            color: rgba(255, 255, 255, 0.7);
        }

        .stat-value {
            color: #cd9fff;
            font-weight: 700;
        }

        .contact-container {
            max-width: 800px;
            margin: 4rem auto;
            padding: 3rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(60, 60, 60, 0.4);
            border: 1px solid rgba(205, 159, 255, 0.1);
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(205, 159, 255, 0.5);
            background: rgba(80, 80, 80, 0.5);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .stats {
            padding: 6rem 5%;
            background: linear-gradient(135deg, rgba(205, 159, 255, 0.05) 0%, rgba(160, 96, 255, 0.05) 100%);
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(60, 60, 60, 0.3) 50%, transparent 100%);
            pointer-events: none;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .dashboard-grid {
                grid-template-columns: 1fr;
            }

            .analytics-grid {
                grid-template-columns: 1fr;
            }

            .content-section h2 {
                font-size: 2.5rem;
            }
        }
    .logo-img{height:50px;width:auto;display:block;} 


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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
            position: relative;
        }
        .simple-footer {
    background: #0d0d0d;
    color: #ccc;
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #222;
    font-size: 14px;
}
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .star {
            position: absolute;
            background: #cd9fff;
            border-radius: 50%;
            animation: twinkle linear infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }

        nav, section {
            position: relative;
            z-index: 1;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            padding: 1.2rem 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #cd9fff;
        }

        .cta-button {
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            padding: 0.7rem 1.8rem;
            border-radius: 25px;
            border: none;
            color: #000;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(205, 159, 255, 0.5);
        }

        

        .hero {
            margin-top: 80px;
            padding: 10rem 5% 6rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(205, 159, 255, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 6rem;
        }

        .primary-btn {
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            padding: 1.1rem 2.8rem;
            border-radius: 30px;
            border: none;
            color: #000;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(205, 159, 255, 0.4);
        }

        .secondary-btn {
            background: rgba(80, 80, 80, 0.3);
            padding: 1.1rem 2.8rem;
            border-radius: 30px;
            border: 1px solid rgba(205, 159, 255, 0.2);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            backdrop-filter: blur(10px);
        }

        .secondary-btn:hover {
            background: rgba(80, 80, 80, 0.5);
            border-color: rgba(205, 159, 255, 0.5);
        }

        .dashboard-preview {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            perspective: 1000px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease;
        }

        .dashboard-preview.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .dashboard-container {
            background: linear-gradient(135deg, rgba(40, 40, 40, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(205, 159, 255, 0.15);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            transform-style: preserve-3d;
            transition: transform 0.5s ease;
            backdrop-filter: blur(20px);
        }

        .dashboard-preview:hover .dashboard-container {
            transform: rotateX(2deg) rotateY(-2deg);
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .dashboard-card {
            background: rgba(60, 60, 60, 0.4);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(205, 159, 255, 0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .dashboard-card:hover {
            background: rgba(80, 80, 80, 0.5);
            border-color: rgba(205, 159, 255, 0.3);
        }

        .card-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 0.5rem;
        }

        .card-value {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .chart-container {
            background: rgba(60, 60, 60, 0.4);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(205, 159, 255, 0.1);
            height: 250px;
            display: flex;
            align-items: flex-end;
            gap: 1rem;
            justify-content: space-around;
            backdrop-filter: blur(10px);
        }

        .bar {
            background: linear-gradient(180deg, #cd9fff 0%, #8040bf 100%);
            border-radius: 8px 8px 0 0;
            width: 60px;
            animation: growBar 1s ease forwards;
            transform-origin: bottom;
            opacity: 0;
            box-shadow: 0 0 20px rgba(205, 159, 255, 0.3);
        }

        .dashboard-preview.visible .bar {
            opacity: 1;
        }

        .bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
        .bar:nth-child(2) { height: 80%; animation-delay: 0.2s; }
        .bar:nth-child(3) { height: 45%; animation-delay: 0.3s; }
        .bar:nth-child(4) { height: 90%; animation-delay: 0.4s; }
        .bar:nth-child(5) { height: 70%; animation-delay: 0.5s; }
        .bar:nth-child(6) { height: 55%; animation-delay: 0.6s; }

        @keyframes growBar {
            from {
                transform: scaleY(0);
                opacity: 0;
            }
            to {
                transform: scaleY(1);
                opacity: 1;
            }
        }

        .content-section {
            padding: 8rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .content-section h1,
        .content-section h2 {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 5rem;
        }

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

        .feature-card {
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            background: linear-gradient(135deg, rgba(70, 70, 70, 0.5) 0%, rgba(40, 40, 40, 0.7) 100%);
            border-color: rgba(205, 159, 255, 0.4);
            box-shadow: 0 20px 60px rgba(205, 159, 255, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

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

        .feature-card p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .pricing-card {
            padding: 3rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            position: relative;
        }

        .pricing-card.featured {
            border-color: rgba(205, 159, 255, 0.5);
            background: linear-gradient(135deg, rgba(70, 70, 70, 0.5) 0%, rgba(40, 40, 40, 0.7) 100%);
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            color: #000;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: rgba(205, 159, 255, 0.4);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .plan-period {
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 2rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 0.75rem 0;
            color: rgba(255, 255, 255, 0.7);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .plan-features li:before {
            content: '✓';
            color: #cd9fff;
            font-weight: bold;
            margin-right: 1rem;
        }

        .analytics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .analytics-card {
            padding: 3rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .analytics-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .analytics-card p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .analytics-stat {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stat-name {
            color: rgba(255, 255, 255, 0.7);
        }

        .stat-value {
            color: #cd9fff;
            font-weight: 700;
        }

        .contact-container {
            max-width: 800px;
            margin: 4rem auto;
            padding: 3rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(60, 60, 60, 0.4);
            border: 1px solid rgba(205, 159, 255, 0.1);
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(205, 159, 255, 0.5);
            background: rgba(80, 80, 80, 0.5);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .stats {
            padding: 6rem 5%;
            background: linear-gradient(135deg, rgba(205, 159, 255, 0.05) 0%, rgba(160, 96, 255, 0.05) 100%);
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(60, 60, 60, 0.3) 50%, transparent 100%);
            pointer-events: none;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .dashboard-grid {
                grid-template-columns: 1fr;
            }

            .analytics-grid {
                grid-template-columns: 1fr;
            }

            .content-section h2 {
                font-size: 2.5rem;
            }
        }
    .logo-img{height:50px;width:auto;display:block;} 


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

        .simple-footer {
    background: #0d0d0d;
    color: #ccc;
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #222;
    font-size: 14px;
}

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
            position: relative;
        }

        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .star {
            position: absolute;
            background: #cd9fff;
            border-radius: 50%;
            animation: twinkle linear infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }

        nav, section {
            position: relative;
            z-index: 1;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            padding: 1.2rem 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #cd9fff;
        }

        .cta-button {
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            padding: 0.7rem 1.8rem;
            border-radius: 25px;
            border: none;
            color: #000;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(205, 159, 255, 0.5);
        }

        

        .hero {
            margin-top: 80px;
            padding: 10rem 5% 6rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(205, 159, 255, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 6rem;
        }

        .primary-btn {
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            padding: 1.1rem 2.8rem;
            border-radius: 30px;
            border: none;
            color: #000;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(205, 159, 255, 0.4);
        }

        .secondary-btn {
            background: rgba(80, 80, 80, 0.3);
            padding: 1.1rem 2.8rem;
            border-radius: 30px;
            border: 1px solid rgba(205, 159, 255, 0.2);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            backdrop-filter: blur(10px);
        }

        .secondary-btn:hover {
            background: rgba(80, 80, 80, 0.5);
            border-color: rgba(205, 159, 255, 0.5);
        }

        .dashboard-preview {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            perspective: 1000px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease;
        }

        .dashboard-preview.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .dashboard-container {
            background: linear-gradient(135deg, rgba(40, 40, 40, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(205, 159, 255, 0.15);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            transform-style: preserve-3d;
            transition: transform 0.5s ease;
            backdrop-filter: blur(20px);
        }

        .dashboard-preview:hover .dashboard-container {
            transform: rotateX(2deg) rotateY(-2deg);
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .dashboard-card {
            background: rgba(60, 60, 60, 0.4);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(205, 159, 255, 0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .dashboard-card:hover {
            background: rgba(80, 80, 80, 0.5);
            border-color: rgba(205, 159, 255, 0.3);
        }

        .card-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 0.5rem;
        }

        .card-value {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .chart-container {
            background: rgba(60, 60, 60, 0.4);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(205, 159, 255, 0.1);
            height: 250px;
            display: flex;
            align-items: flex-end;
            gap: 1rem;
            justify-content: space-around;
            backdrop-filter: blur(10px);
        }

        .bar {
            background: linear-gradient(180deg, #cd9fff 0%, #8040bf 100%);
            border-radius: 8px 8px 0 0;
            width: 60px;
            animation: growBar 1s ease forwards;
            transform-origin: bottom;
            opacity: 0;
            box-shadow: 0 0 20px rgba(205, 159, 255, 0.3);
        }

        .dashboard-preview.visible .bar {
            opacity: 1;
        }

        .bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
        .bar:nth-child(2) { height: 80%; animation-delay: 0.2s; }
        .bar:nth-child(3) { height: 45%; animation-delay: 0.3s; }
        .bar:nth-child(4) { height: 90%; animation-delay: 0.4s; }
        .bar:nth-child(5) { height: 70%; animation-delay: 0.5s; }
        .bar:nth-child(6) { height: 55%; animation-delay: 0.6s; }

        @keyframes growBar {
            from {
                transform: scaleY(0);
                opacity: 0;
            }
            to {
                transform: scaleY(1);
                opacity: 1;
            }
        }

        .content-section {
            padding: 8rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .content-section h1,
        .content-section h2 {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 5rem;
        }

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

        .feature-card {
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            background: linear-gradient(135deg, rgba(70, 70, 70, 0.5) 0%, rgba(40, 40, 40, 0.7) 100%);
            border-color: rgba(205, 159, 255, 0.4);
            box-shadow: 0 20px 60px rgba(205, 159, 255, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

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

        .feature-card p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .pricing-card {
            padding: 3rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            position: relative;
        }

        .pricing-card.featured {
            border-color: rgba(205, 159, 255, 0.5);
            background: linear-gradient(135deg, rgba(70, 70, 70, 0.5) 0%, rgba(40, 40, 40, 0.7) 100%);
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            color: #000;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: rgba(205, 159, 255, 0.4);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .plan-period {
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 2rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 0.75rem 0;
            color: rgba(255, 255, 255, 0.7);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .plan-features li:before {
            content: '✓';
            color: #cd9fff;
            font-weight: bold;
            margin-right: 1rem;
        }

        .analytics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .analytics-card {
            padding: 3rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .analytics-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .analytics-card p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .analytics-stat {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stat-name {
            color: rgba(255, 255, 255, 0.7);
        }

        .stat-value {
            color: #cd9fff;
            font-weight: 700;
        }

        .contact-container {
            max-width: 800px;
            margin: 4rem auto;
            padding: 3rem;
            background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
            border-radius: 20px;
            border: 1px solid rgba(205, 159, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(60, 60, 60, 0.4);
            border: 1px solid rgba(205, 159, 255, 0.1);
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(205, 159, 255, 0.5);
            background: rgba(80, 80, 80, 0.5);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .stats {
            padding: 6rem 5%;
            background: linear-gradient(135deg, rgba(205, 159, 255, 0.05) 0%, rgba(160, 96, 255, 0.05) 100%);
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(60, 60, 60, 0.3) 50%, transparent 100%);
            pointer-events: none;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .dashboard-grid {
                grid-template-columns: 1fr;
            }

            .analytics-grid {
                grid-template-columns: 1fr;
            }

            .content-section h2 {
                font-size: 2.5rem;
            }
        }
    .logo-img{height:50px;width:auto;display:block;} 
/* Reduce spacing between stats section and 'Why Choose Managrie?' on home page only */
#home .stats + .content-section {
    padding-top: 3rem;
}
/* HOW IT WORKS SECTION */
.how-it-works-section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.how-it-works-section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.step-card {
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
    border-radius: 20px;
    border: 1px solid rgba(205, 159, 255, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cd9fff 0%, #a060ff 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(70, 70, 70, 0.5) 0%, rgba(40, 40, 40, 0.7) 100%);
    border-color: rgba(205, 159, 255, 0.4);
    box-shadow: 0 25px 70px rgba(205, 159, 255, 0.25);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    box-shadow: 0 5px 20px rgba(205, 159, 255, 0.4);
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.15) rotate(5deg);
}

.step-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
}

.step-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA SECTION */
.cta-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, rgba(205, 159, 255, 0.08) 0%, rgba(160, 96, 255, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(205, 159, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-content > p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.primary-btn.large,
.secondary-btn.large {
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
}

.cta-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1.5rem;
}

/* Responsive updates for new sections */
@media (max-width: 968px) {
    .how-it-works-section h2,
    .cta-content h2 {
        font-size: 2.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn.large,
    .secondary-btn.large {
        width: 100%;
        max-width: 300px;
    }
}
/* AUTHENTICATION PAGE STYLES */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 5% 5rem;
    position: relative;
}

.auth-container {
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.auth-card {
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
    border-radius: 20px;
    border: 1px solid rgba(205, 159, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: 12px;
}

.auth-tab {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-tab.active {
    background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(205, 159, 255, 0.4);
}

.auth-form-container {
    display: none;
}

.auth-form-container.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form-container h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #cd9fff;
}

.checkbox-label a {
    color: #cd9fff;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.forgot-link {
    color: #cd9fff;
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    margin-bottom: 1.5rem;
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background: transparent;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 600;
}

.social-auth {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(60, 60, 60, 0.3);
    color: #fff;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.social-btn:hover {
    background: rgba(80, 80, 80, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.auth-features {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-features h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.auth-features ul {
    list-style: none;
    padding: 0;
}

.auth-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
    color: #000;
    font-weight: 900;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Responsive styles for auth page */
@media (max-width: 968px) {
    .auth-section {
        padding: 8rem 5% 3rem;
    }

    .auth-card {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .auth-form-container h2 {
        font-size: 1.75rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* ENHANCED CONTACT PAGE STYLES */
.contact-grid-wrapper {
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: start;
}


.contact-form-section .contact-container {
    margin: 0;
    max-width: 100%;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
    border-radius: 20px;
    border: 1px solid rgba(205, 159, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(205, 159, 255, 0.3);
    transform: translateY(-5px);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(205, 159, 255, 0.2) 0%, rgba(160, 96, 255, 0.2) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-details a {
    color: #cd9fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #a060ff;
}

.contact-details span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hours-item .time {
    color: rgba(255, 255, 255, 0.6);
}

.support-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(205, 159, 255, 0.1);
    border-radius: 10px;
    border-left: 3px solid #cd9fff;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.support-note strong {
    color: #cd9fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(205, 159, 255, 0.3);
}

.form-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
    border-radius: 15px;
    border: 1px solid rgba(205, 159, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(205, 159, 255, 0.3);
}

.faq-item.active {
    border-color: rgba(205, 159, 255, 0.4);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #cd9fff;
    font-weight: 400;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(205, 159, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    line-height: 0;
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, #cd9fff 0%, #a060ff 100%);
    color: #000;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Enhanced form select styling */
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(60, 60, 60, 0.4);
    border: 1px solid rgba(205, 159, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: rgba(205, 159, 255, 0.5);
    background: rgba(80, 80, 80, 0.5);
}

.form-group select option {
    background: #2a2a2a;
    color: #fff;
}

/* Responsive styles for contact page */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-section {
        order: 2;
    }

    .contact-form-section {
        order: 1;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* WHY CONTACT CARD */
.why-contact-card {
    padding: 1.8rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.why-contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.why-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-contact-list li {
    display: flex;
    gap: 0.6rem;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: #dcdcdc;
}

/* ========================================
   FREE TRIAL BANNER STYLES
======================================== */

.free-trial-banner {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Full-width version for index page */
.free-trial-banner-fullwidth {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: none;
    border-top: 2px solid rgba(168, 85, 247, 0.3);
    border-bottom: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 0;
    padding: 5rem 5%;
    margin: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.free-trial-banner-fullwidth > * {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.free-trial-banner-fullwidth h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #fff;
}

.free-trial-banner-fullwidth .cta-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.free-trial-banner::before,
.free-trial-banner-fullwidth::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.trial-badge {
    display: inline-block;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
    position: relative;
    z-index: 1;
}

.free-trial-banner h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #cd9fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.trial-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.trial-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trial-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    width: 200px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trial-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.trial-step.bonus-step {
    border: 2px solid rgba(236, 72, 153, 0.4);
    background: rgba(236, 72, 153, 0.08);
}

.trial-step.bonus-step:hover {
    border-color: rgba(236, 72, 153, 0.6);
    background: rgba(236, 72, 153, 0.12);
}

.trial-step-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.trial-step-content {
    text-align: center;
}

.trial-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.trial-step-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.trial-step-arrow {
    color: rgba(168, 85, 247, 0.6);
    font-size: 1.5rem;
    font-weight: 700;
}

.trial-cta {
    position: relative;
    z-index: 1;
}

.trial-cta .primary-btn.large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

.trial-cta .primary-btn.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.6);
}

.trial-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Responsive styles for trial banner */
@media (max-width: 968px) {
    .free-trial-banner,
    .free-trial-banner-fullwidth {
        padding: 2rem 1.5rem;
    }

    .free-trial-banner h3,
    .free-trial-banner-fullwidth h3 {
        font-size: 2rem;
    }

    .free-trial-banner-fullwidth h2 {
        font-size: 2.25rem;
    }

    .trial-steps {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trial-step-arrow {
        transform: rotate(90deg);
    }

    .trial-step {
        min-width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .free-trial-banner h3,
    .free-trial-banner-fullwidth h3 {
        font-size: 1.75rem;
    }

    .free-trial-banner-fullwidth h2 {
        font-size: 1.85rem;
    }

    .trial-subtitle,
    .cta-subtitle {
        font-size: 1rem;
    }

    .trial-cta .primary-btn.large {
        padding: 0.875rem 2rem;
        font-size: 1.05rem;
    }
}
/* ================================================
   COMPARISON TIMELINE STYLES (V3)
   ================================================ */
.comparison-timeline {
    max-width: 900px;
    margin: 3rem auto 0 auto;
    position: relative;
    padding: 2rem 0 0 0;
}

.comparison-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 6rem);
    background: linear-gradient(180deg, #ff6b6b 0%, #a855f7 50%, #51cf66 100%);
    top: 2rem;
}

.comparison-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.comparison-timeline-item:last-child {
    margin-bottom: 1rem;
}

.comparison-timeline-item.left {
    flex-direction: row;
}

.comparison-timeline-item.right {
    flex-direction: row-reverse;
}

.comparison-timeline-content {
    width: 45%;
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
    border-radius: 15px;
    border: 1px solid rgba(205, 159, 255, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
}

.comparison-timeline-content:hover {
    border-color: rgba(205, 159, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.comparison-timeline-item.left .comparison-timeline-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
}

.comparison-timeline-item.right .comparison-timeline-icon {
    background: linear-gradient(135deg, #51cf66 0%, #69db7c 100%);
}

.comparison-timeline-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.comparison-timeline-item.left .comparison-timeline-label {
    color: #ff6b6b;
}

.comparison-timeline-item.right .comparison-timeline-label {
    color: #51cf66;
}

.comparison-timeline-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* ================================================
   TESTIMONIAL CAROUSEL STYLES (V4)
   ================================================ */
.testimonial-carousel-container {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
}

.testimonial-carousel-track {
    position: relative;
    width: 100%;
}

.testimonial-carousel-card {
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
    border-radius: 20px;
    border: 2px solid rgba(205, 159, 255, 0.3);
    padding: 3rem;
    text-align: center;
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(20px);
}

.testimonial-carousel-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

.testimonial-carousel-card:hover {
    border-color: rgba(205, 159, 255, 0.5);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.2);
}

.testimonial-carousel-stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3rem;
}

.testimonial-carousel-quote {
    font-size: 1.3rem;
    color: #fff;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
    min-height: 100px;
}

.testimonial-carousel-author-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-carousel-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.testimonial-carousel-author-info {
    text-align: left;
}

.testimonial-carousel-author {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-carousel-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(205, 159, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(205, 159, 255, 0.5);
}

.carousel-dot.active {
    background: #a855f7;
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comparison-timeline {
        padding-left: 70px;
        padding-right: 1rem;
    }
    
    .comparison-timeline::before {
        left: 35px;
        transform: translateX(-50%);
    }
    
    .comparison-timeline-item.left,
    .comparison-timeline-item.right {
        flex-direction: row;
        padding-left: 0;
        margin-left: 0;
        position: relative;
    }
    
    .comparison-timeline-content {
        width: 100%;
        margin-left: 0;
        padding: 1.5rem;
    }
    
    .comparison-timeline-icon {
        position: absolute;
        left: -60px;
        transform: translateX(0);
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .comparison-timeline-label {
        font-size: 0.8rem;
    }
    
    .comparison-timeline-text {
        font-size: 0.95rem;
    }
    
    .testimonial-carousel-quote {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .testimonial-carousel-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-carousel-author-section {
        flex-direction: column;
    }
    
    .testimonial-carousel-author-info {
        text-align: center;
    }
    
    .testimonial-carousel-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .comparison-timeline {
        padding-left: 65px;
        padding-right: 0.75rem;
    }
    
    .comparison-timeline::before {
        left: 32px;
    }
    
    .comparison-timeline-icon {
        left: -57px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .comparison-timeline-content {
        padding: 1.25rem;
    }
    
    .comparison-timeline-text {
        font-size: 0.9rem;
    }
    
    .testimonial-carousel-quote {
        font-size: 1rem;
    }
    
    .testimonial-carousel-stars {
        font-size: 1.2rem;
    }
}

/* ==================== SITE FOOTER ==================== */

.site-footer {
    background: #0d0d0d;
    border-top: 1px solid rgba(205, 159, 255, 0.1);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #cd9fff;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #cd9fff;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 600px) {
    .footer-links,
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }

    .site-footer {
        padding: 2rem 1rem;
    }
}

/* ==================== LEGAL PAGES (Terms, Privacy) ==================== */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #cd9fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-intro {
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
    border: 1px solid rgba(205, 159, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.legal-intro p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-toc {
    background: rgba(205, 159, 255, 0.05);
    border: 1px solid rgba(205, 159, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
}

.legal-toc h3 {
    color: #cd9fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.legal-toc ol {
    columns: 2;
    column-gap: 2rem;
    padding-left: 1.5rem;
}

.legal-toc li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.4rem 0;
    break-inside: avoid;
}

.legal-toc a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-toc a:hover {
    color: #cd9fff;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    color: #cd9fff;
    margin: 2rem 0 1rem;
}

.legal-section h4 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-section li strong {
    color: rgba(255, 255, 255, 0.9);
}

.legal-section a {
    color: #cd9fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: #e0c4ff;
    text-decoration: underline;
}

.legal-contact {
    background: rgba(205, 159, 255, 0.05);
    border: 1px solid rgba(205, 159, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.legal-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.legal-contact p:last-child {
    margin-bottom: 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-table th {
    background: rgba(205, 159, 255, 0.1);
    color: #cd9fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-table td {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-table td strong {
    color: rgba(255, 255, 255, 0.9);
}

.legal-footer-note {
    background: linear-gradient(135deg, rgba(205, 159, 255, 0.1) 0%, rgba(100, 50, 150, 0.1) 100%);
    border: 1px solid rgba(205, 159, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    text-align: center;
}

.legal-footer-note p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

/* Legal page responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 1rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-toc ol {
        columns: 1;
    }

    .legal-section h2 {
        font-size: 1.4rem;
    }

    .legal-table {
        font-size: 0.85rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .legal-content h1 {
        font-size: 1.75rem;
    }

    .legal-intro,
    .legal-toc,
    .legal-contact {
        padding: 1rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
    }
}