* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Ultra-Modern Color System */
    --bg-body: #fafbfc;
    --bg-gradient: linear-gradient(135deg, #ffffff 0%, #f3f4f6 50%, #fafbfc 100%);
    --surface: #ffffff;
    --surface-hover: #f9fafb;
    --glass: rgba(255, 255, 255, 0.99);
    --glass-border: rgba(0, 0, 0, 0.03);

    /* Modern Gradient Colors */
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --primary-glow: rgba(124, 58, 237, 0.15);
    --secondary: #06b6d4;
    --secondary-glow: rgba(6, 182, 212, 0.15);
    --accent: #f43f5e;
    --accent-glow: rgba(244, 63, 94, 0.15);
    --success: #10b981;
    --warning: #f59e0b;

    /* Text Colors */
    --text: #111827;
    --text-muted: #6b7280;
    --text-dim: #9ca3af;

    /* Borders & Shadows */
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 25%, #e8eaed 50%, #f0f2f5 75%, #f8f9fa 100%);
    background-size: 400% 400%;
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    animation: bgGradientShift 20s ease infinite;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Subtle horizontal tracking lines */
        linear-gradient(0deg, transparent 8%, rgba(124, 58, 237, 0.08) 8%, rgba(124, 58, 237, 0.08) 9%, transparent 9%, transparent 91%, rgba(124, 58, 237, 0.08) 91%, rgba(124, 58, 237, 0.08) 92%, transparent 92%),
        /* Subtle vertical tracking lines */
        linear-gradient(90deg, transparent 8%, rgba(6, 182, 212, 0.08) 8%, rgba(6, 182, 212, 0.08) 9%, transparent 9%, transparent 91%, rgba(6, 182, 212, 0.08) 91%, rgba(6, 182, 212, 0.08) 92%, transparent 92%),
        /* Diagonal accent lines */
        linear-gradient(45deg, transparent 48%, rgba(124, 58, 237, 0.06) 49%, rgba(124, 58, 237, 0.06) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(6, 182, 212, 0.06) 49%, rgba(6, 182, 212, 0.06) 51%, transparent 52%);
    background-size: 150px 150px, 150px 150px, 300px 300px, 300px 300px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    background-attachment: fixed;
    pointer-events: none;
    z-index: 1;
    animation: trackingLineShift 30s linear infinite;
    opacity: 0.6;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Subtle tracking nodes - corners */
        radial-gradient(circle at 5% 5%, rgba(124, 58, 237, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 95% 5%, rgba(6, 182, 212, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 5% 95%, rgba(124, 58, 237, 0.12) 0%, transparent 25%),
        radial-gradient(circle at 95% 95%, rgba(6, 182, 212, 0.12) 0%, transparent 25%),
        /* Center subtle glow */
        radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: trackingNodePulse 8s ease-in-out infinite;
    mix-blend-mode: overlay;
    background-attachment: fixed;
    opacity: 0.7;
}

@keyframes trackingShift {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    25% {
        background-position: 60px 0, 0 60px, 120px 0, 0 120px;
    }
    50% {
        background-position: 0 60px, 60px 0, 0 120px, 120px 0;
    }
    75% {
        background-position: 60px 60px, 60px 60px, 120px 120px, 120px 120px;
    }
    100% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes trackingGridShift {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0% 50%;
    }
    25% {
        background-position: 30px 0, 0 30px, 60px 0, 0 60px, 25% 50%;
    }
    50% {
        background-position: 0 30px, 30px 0, 0 60px, 60px 0, 50% 50%;
    }
    75% {
        background-position: 30px 30px, 30px 30px, 60px 60px, 60px 60px, 75% 50%;
    }
    100% {
        background-position: 0 0, 0 0, 0 0, 0 0, 100% 50%;
    }
}

@keyframes trackingPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes trackingLineShift {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    }
    50% {
        background-position: 50px 50px, 50px 50px, 100px 100px, 100px 100px, 0 0;
    }
    100% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    }
}

@keyframes trackingNodePulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes bgGradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px var(--primary-glow);
    }

    50% {
        box-shadow: 0 0 40px var(--primary-glow), 0 0 60px var(--secondary-glow);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 20px;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.35rem;
    font-weight: 950;
    color: var(--text);
    letter-spacing: -0.8px;
    text-decoration: none;
}

.nav-brand .pro {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 950;
    font-size: 1.35rem;
}

.logo-icon {
    font-size: 1.75rem;
    animation: bounce 2s ease infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.btn-login {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-login:hover {
    background: var(--surface-hover);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.1);
}

.btn-signup {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 25px rgba(91, 33, 182, 0.2);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(91, 33, 182, 0.3);
}

/* User Profile Icon */
.user-profile-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.user-profile-icon:hover {
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.15);
}

.user-profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   HERO SECTION - Centered Engaging Layout
   ======================================== */
@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes floatMetric {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
    }
}

@keyframes circleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero {
    padding: 160px 20px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 60%, rgba(243, 244, 246, 0.95) 100%);
    min-height: 100vh;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.hero-circle.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    animation: circleFloat 20s ease-in-out infinite;
}

.hero-circle.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    animation: circleFloat 25s ease-in-out infinite reverse;
}

.hero-circle.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    animation: circleFloat 15s ease-in-out infinite;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Centered Hero Content */
.hero-center {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Badge */
.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.1rem 2.25rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    border: 2px solid rgba(124, 58, 237, 0.25);
    border-radius: 50px;
    font-size: 1.05rem;
    color: var(--primary);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12);
    position: relative;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.free-trial-highlight {
    background: linear-gradient(135deg, #fef08a, #fde047);
    border: 2px solid #eab308;
    color: #713f12;
    font-weight: 800;
    font-size: 1.05rem;
    animation: pulse 2s ease-in-out infinite;
}

.badge-pulse {
    position: absolute;
    left: 16px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #22c55e;
}

/* Title */
.hero-title {
    font-size: 5.5rem;
    font-weight: 950;
    line-height: 1.1;
    color: var(--text);
    letter-spacing: -0.04em;
    max-width: 950px;
}

.hero-title .word-line {
    display: block;
    margin: 0.15em 0;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #a78bfa 25%, var(--secondary) 50%, #06b6d4 75%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 750px;
    font-weight: 500;
}

.hero-subtitle strong {
    color: var(--primary);
    font-weight: 800;
}

/* Stats Row - Unique Design */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.hero-stats-row::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(91, 33, 182, 0.2), transparent);
    transform: translateY(-50%);
    z-index: 0;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.25rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    border: 2px solid rgba(91, 33, 182, 0.15);
    border-radius: 18px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(91, 33, 182, 0.08);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(91, 33, 182, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.stat-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.1), rgba(8, 145, 178, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 18px;
    z-index: -1;
}

.stat-box:hover::before {
    opacity: 0.4;
}

.stat-box:hover::after {
    opacity: 0.15;
}

.stat-box:hover {
    border-color: var(--primary);
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 60px rgba(91, 33, 182, 0.2);
}

.stat-box:nth-child(1):hover {
    border-color: var(--primary);
}

.stat-box:nth-child(2):hover {
    border-color: var(--secondary);
}

.stat-box:nth-child(3):hover {
    border-color: var(--accent);
}

.stat-box .stat-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: float 3s ease-in-out infinite;
}

.stat-box:hover .stat-icon {
    transform: scale(1.25) rotate(12deg);
    animation: none;
}

.stat-box:nth-child(2):hover .stat-icon {
    transform: scale(1.25) rotate(-12deg);
}

.stat-box .stat-number {
    font-size: 2.25rem;
    font-weight: 950;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    transition: all 0.5s ease;
}

.stat-box:hover .stat-number {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 20px rgba(91, 33, 182, 0.3));
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.5s ease;
}

.stat-box:hover .stat-label {
    color: var(--text);
}

.stat-divider {
    display: none;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.75rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px rgba(91, 33, 182, 0.3);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(91, 33, 182, 0.4);
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(6px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.75rem;
    background: white;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 800;
    border: 2px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(91, 33, 182, 0.08);
    box-shadow: 0 8px 25px rgba(91, 33, 182, 0.15);
}

/* Trust Section */
.hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-logo {
    padding: 0.6rem 1.25rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-logo:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Floating Metric Cards */
.hero-floating-metrics {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.metric-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    animation: floatMetric 6s ease-in-out infinite;
}

.metric-card .metric-icon {
    font-size: 1.5rem;
}

.metric-card .metric-content {
    display: flex;
    flex-direction: column;
}

.metric-card .metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.metric-card .metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.metric-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.metric-2 {
    top: 30%;
    right: 5%;
    animation-delay: -2s;
}

.metric-3 {
    bottom: 25%;
    left: 8%;
    animation-delay: -4s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.75rem;
    }

    .metric-card {
        display: none;
    }

    .hero-stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-stats-row::before {
        display: none;
    }

    .stat-box {
        padding: 2rem 1.75rem;
    }

    .stat-box .stat-icon {
        font-size: 2.75rem;
    }

    .stat-box .stat-number {
        font-size: 2rem;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .badge-hero {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .trust-logos {
        gap: 0.75rem;
    }

    .hero-stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-box {
        padding: 1.75rem 1.5rem;
    }

    .stat-box .stat-icon {
        font-size: 2.25rem;
    }

    .stat-box .stat-number {
        font-size: 1.75rem;
    }

    .stat-box .stat-label {
        font-size: 0.8rem;
    }

    .stat-box:hover {
        transform: translateY(-8px) scale(1.02);
    }
}


.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat-mini {
    display: flex;
    flex-direction: column;
}

.stat-mini .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-mini .stat-text {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.btn-primary.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Hero 3D Dashboard */
.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.floating-card {
    position: absolute;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}

.floating-card .card-icon {
    font-size: 1.5rem;
}

.floating-card .card-text {
    font-weight: 700;
    color: var(--text);
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

.dashboard-3d {
    width: 100%;
    max-width: 400px;
    perspective: 1000px;
}

.screen-frame {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    transform: rotateY(-10deg) rotateX(5deg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}

.screen-frame:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.screen-content {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    height: 200px;
}

.chart-line {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 8px;
    animation: growChart 2s ease-out forwards;
}

.chart-line:nth-child(1) {
    height: 60%;
    animation-delay: 0.2s;
}

.chart-line:nth-child(2) {
    height: 85%;
    animation-delay: 0.4s;
}

.chart-line:nth-child(3) {
    height: 70%;
    animation-delay: 0.6s;
}

@keyframes growChart {
    from {
        transform: scaleY(0);
        transform-origin: bottom;
    }

    to {
        transform: scaleY(1);
        transform-origin: bottom;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 100px 20px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-img-main {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover .about-img-main {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 1.75rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 40px var(--primary-glow);
    animation: float 3s ease-in-out infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    margin-top: 8px;
    opacity: 0.95;
}

.section-tag {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.1), rgba(8, 145, 178, 0.1));
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.text-left {
    text-align: left;
}

.section-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.a-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.a-feature:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.af-icon {
    font-size: 1.75rem;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.1), rgba(8, 145, 178, 0.1));
    padding: 12px;
    border-radius: 10px;
    flex-shrink: 0;
}

.a-feature h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 700;
}

.a-feature p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: 80px 20px 140px;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 950;
    margin-bottom: 1.5rem;
    color: var(--text);
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.75rem;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-card-large {
    padding: 3rem;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.feature-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.feature-card-large::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.05), rgba(8, 145, 178, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 18px;
    z-index: -1;
}

.feature-card-large:hover::before {
    transform: scaleX(1);
}

.feature-card-large:hover::after {
    opacity: 1;
}

.feature-card-large:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(91, 33, 182, 0.15);
    transform: translateY(-12px);
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1.75rem;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card-large:hover .feature-icon-large {
    transform: scale(1.2) rotate(8deg);
}

.feature-card-large h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--text);
    font-weight: 850;
    letter-spacing: -0.01em;
}

.feature-card-large p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-weight: 500;
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.feature-link:hover {
    transform: translateX(8px);
    color: var(--primary-light);
}

/* Responsive Features Grid */
@media (max-width: 1200px) {
    .features-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 100px 20px;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card-large {
        padding: 2.5rem;
    }

    .feature-icon-large {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-card-large h3 {
        font-size: 1.4rem;
    }

    .feature-card-large p {
        font-size: 1rem;
    }
}

.feature-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    position: absolute;
    top: 15px;
    right: 20px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-arrow {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-arrow {
    transform: translateX(10px);
}

/* ========================================
   AFFILIATE SECTION
   ======================================== */
.affiliate-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    position: relative;
}

.affiliate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.affiliate-content h2 {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.affiliate-content>p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.affiliate-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
}

.affiliate-benefits li {
    padding: 0.85rem 0;
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.affiliate-benefits li::before {
    content: '✓';
    color: var(--success);
    font-weight: 900;
    font-size: 1.1rem;
}

.commission-card {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.commission-header {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text);
    text-align: center;
}

.commission-item {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.commission-item:hover {
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.05), rgba(8, 145, 178, 0.05));
    transform: translateX(8px);
    border-color: var(--primary);
}

.commission-item span {
    color: var(--text-muted);
    font-weight: 600;
}

.commission-item .amount {
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats {
    padding: 120px 20px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235b21b6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 2.5rem 2rem;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.stat-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.05), rgba(8, 145, 178, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 18px;
    z-index: -1;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-item:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(91, 33, 182, 0.15);
    transform: translateY(-12px);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 950;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    transition: all 0.5s ease;
}

.stat-item:hover .stat-number {
    font-size: 3rem;
    filter: drop-shadow(0 0 20px rgba(91, 33, 182, 0.2));
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.5s ease;
}

.stat-item:hover .stat-label {
    color: var(--text);
}

/* Responsive Stats Grid */
@media (max-width: 1200px) {
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 100px 20px;
    }

    .stats .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 2rem 1.75rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-item:hover {
        transform: translateY(-8px);
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 120px 20px;
    background: #f8fafc;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    text-align: center;
}

.testimonials .section-title {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.testimonials .section-subtitle {
    margin-bottom: 5rem;
    font-size: 1.1rem;
}

.testimonials-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card-large {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.testimonial-card-large:hover::before {
    transform: scaleX(1);
}

.testimonial-card-large:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    background: rgba(91, 33, 182, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-card-large .stars {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.testimonial-card-large .testimonial-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-card-large .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card-large .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.author-company {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.stars {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Responsive Testimonials Grid */
@media (max-width: 992px) {
    .testimonials-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid-new {
        grid-template-columns: 1fr;
    }

    .testimonial-card-large {
        padding: 1.75rem;
    }

    .testimonial-card-large .testimonial-text {
        font-size: 1rem;
    }
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
    padding: 80px 20px 140px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f5f7fa 100%);
}

.pricing .section-title,
.pricing .section-subtitle {
    text-align: center;
}

.pricing .section-title {
    font-size: 3rem;
    font-weight: 950;
    margin-bottom: 1.5rem;
    color: var(--text);
    letter-spacing: -0.03em;
}

.pricing .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 6rem;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.75rem;
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-card-new {
    background: white;
    border: 1.5px solid var(--border);
    padding: 3rem;
    border-radius: 18px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.pricing-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.pricing-card-new::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.05), rgba(8, 145, 178, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 18px;
    z-index: -1;
}

.pricing-card-new:hover::before {
    transform: scaleX(1);
}

.pricing-card-new:hover::after {
    opacity: 1;
}

.pricing-card-new:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(91, 33, 182, 0.15);
    transform: translateY(-12px);
}

.pricing-card-new.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 60px rgba(91, 33, 182, 0.2);
    position: relative;
    z-index: 10;
}

.pricing-card-new.featured:hover {
    transform: translateY(-14px);
    box-shadow: 0 30px 70px rgba(91, 33, 182, 0.25);
}

.pricing-card-new h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--text);
    font-weight: 850;
    letter-spacing: -0.01em;
}

.pricing-card-new .price {
    font-size: 2.75rem;
    font-weight: 950;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.pricing-card-new .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    -webkit-text-fill-color: var(--text-muted);
}

.pricing-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 500;
}

.pricing-card-new .pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-card-new .pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.pricing-card-new .pricing-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 900;
    font-size: 1.1rem;
}

.pricing-card-new .pricing-features li:last-child {
    border-bottom: none;
}

/* Responsive Pricing Grid */

.pricing-card-new.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 50px var(--primary-glow);
    position: relative;
    z-index: 10;
}

.pricing-card-new.featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px var(--primary-glow);
}

.pricing-card-new h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 800;
}

.pricing-card-new .price {
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pricing-card-new .price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    -webkit-text-fill-color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-card-new .pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-card-new .pricing-features li {
    padding: 0.6rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-card-new .pricing-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.pricing-card-new .pricing-features li:last-child {
    border-bottom: none;
}

/* Responsive Pricing Grid */
@media (max-width: 1200px) {
    .pricing-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 100px 20px;
    }

    .pricing .section-title {
        font-size: 2.5rem;
    }

    .pricing .section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 4rem;
    }

    .pricing-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card-new {
        padding: 2.5rem;
    }

    .pricing-card-new h3 {
        font-size: 1.4rem;
    }

    .pricing-card-new .price {
        font-size: 2.25rem;
    }

    .pricing-card-new .pricing-features li {
        font-size: 0.95rem;
    }

    .pricing-card-new:hover {
        transform: translateY(-8px);
    }

    .pricing-card-new.featured:hover {
        transform: translateY(-10px);
    }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    -webkit-text-fill-color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-pricing.featured {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
}

.btn-pricing.featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px var(--primary-glow);
}

/* Responsive Pricing Grid */
@media (max-width: 1200px) {
    .pricing-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 100px 20px;
    }

    .pricing .section-title {
        font-size: 2.5rem;
    }

    .pricing .section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 4rem;
    }

    .pricing-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card-new {
        padding: 2.5rem;
    }

    .pricing-card-new h3 {
        font-size: 1.4rem;
    }

    .pricing-card-new .price {
        font-size: 2.25rem;
    }

    .pricing-card-new .pricing-features li {
        font-size: 0.95rem;
    }

    .pricing-card-new:hover {
        transform: translateY(-8px);
    }

    .pricing-card-new.featured:hover {
        transform: translateY(-10px);
    }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    padding: 160px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f0f4f8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(91, 33, 182, 0.08) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.cta .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3.25rem;
    font-weight: 950;
    margin-bottom: 1.5rem;
    color: var(--text);
    letter-spacing: -0.03em;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 500;
}

.cta .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 1.3rem 3rem;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    box-shadow: 0 12px 40px rgba(91, 33, 182, 0.25);
    letter-spacing: 0.3px;
}

.cta .btn-primary:hover {
    box-shadow: 0 18px 50px rgba(91, 33, 182, 0.35);
    transform: translateY(-4px);
}

.cta-note {
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.cta-note strong {
    color: var(--primary);
    background: rgba(91, 33, 182, 0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 800;
}

/* ========================================
   FOOTER - Modern Redesign
   ======================================== */
.footer {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    color: var(--text);
    padding: 0;
    border-top: 1px solid var(--border);
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 4rem;
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo .logo-icon {
    font-size: 1.8rem;
}

.footer-logo .logo-text {
    color: var(--text);
}

.footer-logo .pro {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Newsletter Section */
.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 0 0 auto;
}

.newsletter-form input {
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: white;
    color: var(--text);
    font-size: 0.95rem;
    width: 280px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.newsletter-form button {
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-bottom-left p,
.footer-bottom-center p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.powered-by {
    color: #94a3b8;
    font-size: 0.9rem;
}

.powered-by a {
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: var(--secondary);
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.payment-methods span {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-methods span:hover {
    opacity: 1;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-newsletter {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-tagline {
        max-width: 100%;
    }
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid,
    .affiliate-grid {
        grid-template-columns: 1fr;
    }
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 80px 20px 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin-bottom: 20px;
}

.mobile-menu-links li {
    border-bottom: 1px solid var(--border);
}

.mobile-menu-links a {
    display: block;
    padding: 16px 0;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
}

.mobile-menu-buttons .btn-login {
    width: 100%;
    text-align: center;
    padding: 12px;
}

.mobile-menu-buttons .btn-signup {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .hero {
        padding: 120px 20px 80px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats .container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HERO - UNIQUE SPLIT DESIGN
   ======================================== */
@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-100px) translateX(20px);
        opacity: 1;
    }
}

@keyframes dashFloat {

    0%,
    100% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    }

    50% {
        transform: perspective(1000px) rotateY(-8deg) rotateX(8deg);
    }
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes barGrow {
    0% {
        transform: scaleY(0.5);
    }

    100% {
        transform: scaleY(1);
    }
}

.hero {
    background: #ffffff !important;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(168, 85, 247, 0.05) 50%, rgba(6, 182, 212, 0.08) 100%);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
}

.hero-particles span:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: 1s;
}

.hero-particles span:nth-child(3) {
    left: 60%;
    top: 10%;
    animation-delay: 2s;
}

.hero-particles span:nth-child(4) {
    left: 80%;
    top: 60%;
    animation-delay: 3s;
}

.hero-particles span:nth-child(5) {
    left: 90%;
    top: 30%;
    animation-delay: 4s;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 100%);
}

/* MSME Badge */
.msme-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.msme-icon {
    font-size: 1.5rem;
}

.msme-text {
    display: flex;
    flex-direction: column;
}

.msme-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.msme-number {
    font-size: 0.8rem;
    font-weight: 600;
    color: #059669;
    font-family: monospace;
}

.msme-verified {
    padding: 0.25rem 0.75rem;
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
}

/* Hero Grid */
.hero-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-offer {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #92400e;
    width: fit-content;
}

.offer-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text);
}

.hero-headline .line-1,
.hero-headline .line-2 {
    display: block;
}

.hero-headline .highlight-box {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    color: white;
    padding: 0.1em 0.4em;
    border-radius: 12px;
    margin-left: 0.1em;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
}

.hero-desc strong {
    color: var(--primary);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-main .btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-main:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline .play-icon {
    color: var(--primary);
}

.hero-mini-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

.mini-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-right {
    position: relative;
}

.hero-visual {
    position: relative;
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid var(--border);
    animation: dashFloat 6s ease-in-out infinite;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.dash-header {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: #f1f5f9;
    border-bottom: 1px solid var(--border);
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dot.red {
    background: #ef4444;
}

.dash-dot.yellow {
    background: #f59e0b;
}

.dash-dot.green {
    background: #22c55e;
}

.dash-content {
    padding: 1.5rem;
}

.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    margin-bottom: 1.5rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 6px 6px 0 0;
    animation: barGrow 1s ease-out forwards;
    transform-origin: bottom;
}

.dash-stats {
    display: flex;
    gap: 1.5rem;
}

.dash-stat-item {
    flex: 1;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.dash-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.dash-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.dash-stat-value.success {
    color: #10b981;
}

/* Floating Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: white;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    animation: cardFloat 4s ease-in-out infinite;
    z-index: 10;
}

.fc-icon {
    font-size: 1.25rem;
}

.fc-info {
    display: flex;
    flex-direction: column;
}

.fc-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.fc-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.card-roi {
    top: 10%;
    left: -20px;
}

.card-earnings {
    bottom: 30%;
    right: -20px;
    animation-delay: -1.5s;
}

.card-clicks {
    bottom: 5%;
    left: 20%;
    animation-delay: -3s;
}

@media (max-width: 992px) {
    .hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .hero-right {
        display: none;
    }

    .msme-badge {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-main,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-mini-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}


/* ========================================
   ORBITING CIRCLES SECTION - MODERN DESIGN
   ======================================== */
.orbiting-circles-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 50%, rgba(243, 244, 246, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1557821552-17105176677c?auto=format&fit=crop&w=1200&q=80') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: visible;
    min-height: clamp(500px, 60vh, 800px);
}

.orbiting-circles-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.orbiting-circles-section::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.orbiting-circles-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.orbiting-demo {
    width: 100%;
    background: transparent;
    border-radius: 24px;
    overflow: visible;
    padding: clamp(20px, 4vw, 60px);
    box-shadow: none;
    min-height: clamp(400px, 50vh, 600px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Mobile Layout */
.mobile-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.stats-top,
.stats-bottom {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: clamp(18px, 3.5vw, 28px);
    background: white;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    min-width: 140px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-number {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: -1px;
}

.stat-label {
    font-size: clamp(12px, 1.4vw, 14px);
    color: #6b7280;
    font-weight: 600;
    display: block;
    letter-spacing: 0.3px;
}

.orbiting-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: clamp(25px, 5vw, 45px) 0;
}

.orbiting-wrapper {
    position: relative;
    width: clamp(260px, 52vw, 320px);
    height: clamp(260px, 52vw, 320px);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.08));
}

.orbit-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6));
}

.orbit-lines line {
    stroke-linecap: round;
    stroke-linejoin: round;
}

.line-glow {
    animation: lineGlow 2s ease-in-out infinite;
    stroke: rgba(99, 102, 241, 0.8) !important;
    stroke-width: 2.5 !important;
}

.line-glow-2 {
    animation: lineGlow2 2.5s ease-in-out infinite;
    stroke: rgba(99, 102, 241, 0.6) !important;
    stroke-width: 2 !important;
}

.line-glow-3 {
    animation: lineGlow3 3s ease-in-out infinite;
    stroke: rgba(99, 102, 241, 0.4) !important;
    stroke-width: 1.5 !important;
}

@keyframes lineGlow {
    0%, 100% {
        stroke-width: 2.5;
        opacity: 0.8;
        filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
    }
    50% {
        stroke-width: 3;
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.9));
    }
}

@keyframes lineGlow2 {
    0%, 100% {
        stroke-width: 2;
        opacity: 0.6;
        filter: drop-shadow(0 0 6px rgba(99, 102, 241, 0.4));
    }
    50% {
        stroke-width: 2.5;
        opacity: 0.9;
        filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.7));
    }
}

@keyframes lineGlow3 {
    0%, 100% {
        stroke-width: 1.5;
        opacity: 0.4;
        filter: drop-shadow(0 0 4px rgba(99, 102, 241, 0.3));
    }
    50% {
        stroke-width: 2;
        opacity: 0.7;
        filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.6));
    }
}

.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(90px, 18vw, 120px);
    height: clamp(90px, 18vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.3), inset 0 0 30px rgba(99, 102, 241, 0.08);
    animation: centerGlow 3s ease-in-out infinite;
}

@keyframes centerGlow {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(99, 102, 241, 0.3), inset 0 0 30px rgba(99, 102, 241, 0.08);
    }
    50% {
        box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4), inset 0 0 40px rgba(99, 102, 241, 0.12);
    }
}

.center-earth {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(99, 102, 241, 0.15);
    border-radius: 50%;
}

.orbit-1 {
    width: clamp(180px, 36vw, 220px);
    height: clamp(180px, 36vw, 220px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 20px;
    animation: rotate 30s linear infinite;
}

.orbit-2 {
    width: clamp(250px, 48vw, 300px);
    height: clamp(250px, 48vw, 300px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 20px;
    animation: rotate 40s linear infinite reverse;
}

.orbit-3 {
    width: clamp(320px, 60vw, 380px);
    height: clamp(320px, 60vw, 380px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 20px;
    animation: rotate 50s linear infinite;
}

.orbit-icon {
    position: absolute;
    width: clamp(44px, 9vw, 56px);
    height: clamp(44px, 9vw, 56px);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 2.5px solid #e5e7eb;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    top: 50%;
    left: 50%;
    cursor: pointer;
}

.orbit-1 .orbit-icon:nth-child(1) { transform: rotate(0deg) translateY(-110px) rotate(0deg); }
.orbit-1 .orbit-icon:nth-child(2) { transform: rotate(90deg) translateY(-110px) rotate(-90deg); }
.orbit-1 .orbit-icon:nth-child(3) { transform: rotate(180deg) translateY(-110px) rotate(-180deg); }
.orbit-1 .orbit-icon:nth-child(4) { transform: rotate(270deg) translateY(-110px) rotate(-270deg); }

/* Equal spacing: 360/4 = 90deg apart - EQUAL ON ALL SIDES */

.orbit-2 .orbit-icon:nth-child(1) { transform: rotate(0deg) translateY(-155px) rotate(0deg); }
.orbit-2 .orbit-icon:nth-child(2) { transform: rotate(72deg) translateY(-155px) rotate(-72deg); }
.orbit-2 .orbit-icon:nth-child(3) { transform: rotate(144deg) translateY(-155px) rotate(-144deg); }
.orbit-2 .orbit-icon:nth-child(4) { transform: rotate(216deg) translateY(-155px) rotate(-216deg); }
.orbit-2 .orbit-icon:nth-child(5) { transform: rotate(288deg) translateY(-155px) rotate(-288deg); }

/* Equal spacing: 360/5 = 72deg apart - EQUAL ON ALL SIDES */

.orbit-3 .orbit-icon:nth-child(1) { transform: rotate(0deg) translateY(-195px) rotate(0deg); }
.orbit-3 .orbit-icon:nth-child(2) { transform: rotate(60deg) translateY(-195px) rotate(-60deg); }
.orbit-3 .orbit-icon:nth-child(3) { transform: rotate(120deg) translateY(-195px) rotate(-120deg); }
.orbit-3 .orbit-icon:nth-child(4) { transform: rotate(180deg) translateY(-195px) rotate(-180deg); }
.orbit-3 .orbit-icon:nth-child(5) { transform: rotate(240deg) translateY(-195px) rotate(-240deg); }
.orbit-3 .orbit-icon:nth-child(6) { transform: rotate(300deg) translateY(-195px) rotate(-300deg); }

/* Equal spacing: 360/6 = 60deg apart - EQUAL ON ALL SIDES */

/* Equal gap spacing */
.orbit {
    gap: 20px;
}

.orbit-icon img {
    width: clamp(24px, 5vw, 32px);
    height: clamp(24px, 5vw, 32px);
    object-fit: contain;
}

.orbit-icon:hover {
    transform: scale(1.3);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.35);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(6, 182, 212, 0.08));
}

.orbit-icon.green {
    background: rgba(16, 185, 129, 0.04);
    border-color: rgba(16, 185, 129, 0.15);
}

.orbit-icon.green:hover {
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.35);
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.12);
}

.orbit-icon.black {
    background: rgba(30, 41, 59, 0.04);
    border-color: rgba(30, 41, 59, 0.12);
}

.orbit-icon.black:hover {
    box-shadow: 0 15px 40px rgba(30, 41, 59, 0.3);
    border-color: #1e293b;
    background: rgba(30, 41, 59, 0.12);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Desktop Layout */
.desktop-layout {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.desktop-stat {
    display: flex;
    justify-content: center;
}

.desktop-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Tablet responsive */
@media (max-width: 768px) {
    .orbiting-circles-section {
        padding: clamp(50px, 7vw, 80px) 0;
        min-height: clamp(400px, 50vh, 500px);
    }

    .orbiting-demo {
        padding: clamp(20px, 4vw, 40px);
        min-height: clamp(350px, 45vh, 450px);
    }

    .orbiting-wrapper {
        width: clamp(300px, 50vw, 360px);
        height: clamp(300px, 50vw, 360px);
    }

    .center-content {
        width: clamp(110px, 20vw, 150px);
        height: clamp(110px, 20vw, 150px);
    }

    .orbit-1 {
        width: clamp(200px, 36vw, 240px);
        height: clamp(200px, 36vw, 240px);
        top: clamp(50px, 8vw, 60px);
        left: clamp(50px, 8vw, 60px);
    }

    .orbit-2 {
        width: clamp(280px, 48vw, 330px);
        height: clamp(280px, 48vw, 330px);
        top: clamp(10px, 0vw, 15px);
        left: clamp(10px, 0vw, 15px);
    }

    .orbit-3 {
        width: clamp(360px, 60vw, 420px);
        height: clamp(360px, 60vw, 420px);
        top: clamp(-30px, -4vw, -15px);
        left: clamp(-30px, -4vw, -15px);
    }

    .orbit-icon {
        width: clamp(48px, 9vw, 60px);
        height: clamp(48px, 9vw, 60px);
    }

    .orbit-icon img {
        width: clamp(26px, 5.2vw, 34px);
        height: clamp(26px, 5.2vw, 34px);
    }

    .stats-top, .stats-bottom {
        gap: clamp(18px, 3.5vw, 28px);
        margin-bottom: clamp(35px, 6vw, 50px);
    }

    .orbiting-container {
        margin: clamp(30px, 5vw, 45px) 0;
        padding: clamp(15px, 2.5vw, 25px);
    }
}

/* Large Mobile */
@media (max-width: 600px) {
    .orbiting-circles-section {
        padding: clamp(45px, 6vw, 70px) 0;
        min-height: clamp(380px, 48vh, 480px);
    }

    .orbiting-demo {
        padding: clamp(18px, 3.5vw, 30px);
        min-height: clamp(330px, 42vh, 420px);
    }

    .orbiting-wrapper {
        width: clamp(260px, 48vw, 310px);
        height: clamp(260px, 48vw, 310px);
    }

    .stats-top, .stats-bottom {
        gap: clamp(14px, 3vw, 20px);
        margin-bottom: clamp(25px, 4.5vw, 35px);
    }

    .orbiting-container {
        margin: clamp(20px, 4vw, 30px) 0;
        padding: clamp(10px, 2vw, 15px);
    }

    .mobile-layout {
        display: block !important;
    }

    .desktop-layout {
        display: none !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .orbiting-circles-section {
        padding: clamp(35px, 5vw, 50px) 0;
        min-height: clamp(320px, 42vh, 400px);
    }

    .orbiting-demo {
        padding: clamp(12px, 2.5vw, 20px);
        min-height: clamp(280px, 38vh, 350px);
    }

    .orbiting-wrapper {
        width: clamp(220px, 44vw, 270px);
        height: clamp(220px, 44vw, 270px);
    }

    .center-content {
        width: clamp(80px, 16vw, 110px);
        height: clamp(80px, 16vw, 110px);
    }

    .orbit-1 {
        width: clamp(160px, 32vw, 190px);
        height: clamp(160px, 32vw, 190px);
        top: clamp(30px, 6vw, 40px);
        left: clamp(30px, 6vw, 40px);
    }

    .orbit-2 {
        width: clamp(200px, 40vw, 240px);
        height: clamp(200px, 40vw, 240px);
        top: clamp(10px, 2vw, 15px);
        left: clamp(10px, 2vw, 15px);
    }

    .orbit-3 {
        width: clamp(240px, 48vw, 290px);
        height: clamp(240px, 48vw, 290px);
        top: clamp(-15px, -2vw, 0px);
        left: clamp(-15px, -2vw, 0px);
    }

    .orbit-icon {
        width: clamp(36px, 7.5vw, 48px);
        height: clamp(36px, 7.5vw, 48px);
    }

    .orbit-icon img {
        width: clamp(20px, 4vw, 28px);
        height: clamp(20px, 4vw, 28px);
    }

    .stat-number {
        font-size: clamp(24px, 4vw, 32px);
    }

    .stat-label {
        font-size: clamp(10px, 1.2vw, 12px);
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .orbiting-circles-section {
        padding: clamp(40px, 6vw, 60px) 0;
        min-height: clamp(550px, 65vh, 650px);
    }

    .orbiting-demo {
        padding: clamp(15px, 3vw, 25px);
        min-height: clamp(500px, 60vh, 600px);
    }

    .orbiting-wrapper {
        width: clamp(240px, 48vw, 300px);
        height: clamp(240px, 48vw, 300px);
        position: relative;
    }

    .center-content {
        width: clamp(90px, 17vw, 120px);
        height: clamp(90px, 17vw, 120px);
    }

    .orbit-1 {
        width: clamp(180px, 34vw, 220px);
        height: clamp(180px, 34vw, 220px);
        top: clamp(30px, 7vw, 40px);
        left: clamp(30px, 7vw, 40px);
    }

    .orbit-2 {
        width: clamp(230px, 44vw, 280px);
        height: clamp(230px, 44vw, 280px);
        top: clamp(5px, 1vw, 10px);
        left: clamp(5px, 1vw, 10px);
    }

    .orbit-3 {
        width: clamp(280px, 54vw, 340px);
        height: clamp(280px, 54vw, 340px);
        top: clamp(-20px, -3vw, -5px);
        left: clamp(-20px, -3vw, -5px);
    }

    .orbit-icon {
        width: clamp(40px, 8vw, 52px);
        height: clamp(40px, 8vw, 52px);
    }

    .orbit-icon img {
        width: clamp(22px, 4.5vw, 30px);
        height: clamp(22px, 4.5vw, 30px);
    }

    .stats-top, .stats-bottom {
        gap: clamp(12px, 2.5vw, 16px);
        margin-bottom: clamp(20px, 3.5vw, 28px);
    }

    .orbiting-container {
        margin: clamp(18px, 3.5vw, 26px) 0;
        padding: clamp(8px, 1.5vw, 12px);
    }

    .stat-item {
        padding: clamp(14px, 2.8vw, 20px);
    }

    .stat-number {
        font-size: clamp(22px, 3.5vw, 30px);
    }

    .stat-label {
        font-size: clamp(10px, 1.1vw, 12px);
    }
}

/* Desktop XL - Larger Laptops */
@media (min-width: 1440px) {
    .orbiting-circles-section {
        padding: clamp(80px, 10vw, 150px) 0;
        min-height: clamp(600px, 70vh, 900px);
    }

    .orbiting-demo {
        padding: clamp(40px, 6vw, 100px);
        min-height: clamp(550px, 65vh, 800px);
    }

    .orbiting-wrapper {
        width: clamp(550px, 60vw, 650px);
        height: clamp(550px, 60vw, 650px);
    }

    .center-content {
        width: clamp(180px, 22vw, 220px);
        height: clamp(180px, 22vw, 220px);
    }

    .orbit-1 {
        width: clamp(300px, 40vw, 360px);
        height: clamp(300px, 40vw, 360px);
        top: clamp(125px, 12vw, 145px);
        left: clamp(125px, 12vw, 145px);
    }

    .orbit-2 {
        width: clamp(440px, 54vw, 520px);
        height: clamp(440px, 54vw, 520px);
        top: clamp(55px, 5vw, 65px);
        left: clamp(55px, 5vw, 65px);
    }

    .orbit-3 {
        width: clamp(580px, 68vw, 680px);
        height: clamp(580px, 68vw, 680px);
        top: clamp(-15px, -1vw, 0px);
        left: clamp(-15px, -1vw, 0px);
    }

    .orbit-icon {
        width: clamp(72px, 12vw, 90px);
        height: clamp(72px, 12vw, 90px);
    }

    .orbit-icon img {
        width: clamp(40px, 7vw, 52px);
        height: clamp(40px, 7vw, 52px);
    }

    .stat-number {
        font-size: clamp(40px, 5vw, 56px);
    }

    .stat-label {
        font-size: clamp(15px, 1.8vw, 20px);
    }

    .stat-item {
        padding: clamp(28px, 4vw, 40px);
        min-width: clamp(220px, 24vw, 280px);
    }

    .stats-top, .stats-bottom {
        gap: clamp(50px, 6vw, 70px);
        margin-bottom: clamp(60px, 8vw, 80px);
    }

    .orbiting-container {
        margin: clamp(50px, 7vw, 70px) 0;
        padding: clamp(25px, 3.5vw, 40px);
    }

    /* Desktop Left-Right Layout */
    .mobile-layout {
        display: none !important;
    }

    .desktop-layout {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
        justify-items: center;
    }

    .desktop-left {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .desktop-right {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .orbiting-wrapper {
        position: relative;
        width: clamp(450px, 50vw, 550px);
        height: clamp(450px, 50vw, 550px);
        filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.08));
    }

    .stats-column {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        width: 100%;
        max-width: 380px;
    }

    .stats-column .stat-item {
        padding: clamp(24px, 3.5vw, 32px);
        min-width: auto;
        text-align: center;
    }

    .stats-column .stat-number {
        font-size: clamp(36px, 5vw, 52px);
    }

    .stats-column .stat-label {
        font-size: clamp(14px, 1.6vw, 18px);
    }
}


/* ========================================
   LOGIN POPUP STYLES - PROFESSIONAL & COMPACT
   ======================================== */
.login-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(15px);
    }
}

.login-popup {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    max-width: 520px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.login-popup-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.01em;
}

.close-popup {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.4rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #dc2626;
    transform: scale(1.05);
}

.login-popup-content {
    padding: 1rem 2rem 2rem;
}

.login-options {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.login-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.login-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.5s ease;
}

.login-option:hover::before {
    left: 100%;
}

.login-option:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.8);
}

.admin-login:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.publisher-login:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.15);
}

.login-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 0.75rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: white;
    width: 48px;
    height: 48px;
}

.publisher-login .login-icon {
    background: linear-gradient(135deg, var(--secondary), #0ea5e9);
}

.login-option:hover .login-icon {
    transform: scale(1.1);
}

.login-option-content {
    flex: 1;
}

.login-option h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.01em;
}

.login-option p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-popup {
        max-width: 380px;
        margin: 1rem;
    }
    
    .login-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .login-popup-header {
        padding: 1.25rem 1.5rem 0.75rem;
    }
    
    .login-popup-header h3 {
        font-size: 1.2rem;
    }
    
    .login-popup-content {
        padding: 0.75rem 1.5rem 1.5rem;
    }
    
    .login-option {
        padding: 1.25rem 1rem;
        gap: 0.75rem;
        flex-direction: row;
        text-align: left;
    }
    
    .login-icon {
        font-size: 1.75rem;
        padding: 0.6rem;
        width: 42px;
        height: 42px;
    }
    
    .login-option h4 {
        font-size: 1rem;
    }
    
    .login-option p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .login-popup {
        max-width: 340px;
        margin: 0.5rem;
    }
    
    .login-options {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .login-popup-header {
        padding: 1rem 1.25rem 0.5rem;
    }
    
    .login-popup-content {
        padding: 0.5rem 1.25rem 1.25rem;
    }
    
    .login-option {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
    }
    
    .login-icon {
        font-size: 1.5rem;
        padding: 0.5rem;
        width: 38px;
        height: 38px;
    }
}
/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 9998;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.whatsapp-float svg {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
    transform: scale(1.1);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        left: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 80px;
        left: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}
/* ========================================
   THEME TOGGLE BUTTON
   ======================================== */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    z-index: 9997;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: themePulse 3s ease-in-out infinite;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.theme-icon {
    position: relative;
    font-size: 24px;
    transition: transform 0.5s ease;
}

.sun-icon, .moon-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.moon-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg) scale(0);
}

@keyframes themePulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5), 0 0 0 8px rgba(16, 185, 129, 0.1);
    }
}

/* ========================================
   DARK THEME STYLES
   ======================================== */
.dark-theme {
    --bg-body: #0f172a;
    --bg-gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%);
    --surface: #1e293b;
    --surface-hover: #334155;
    --glass: rgba(30, 41, 59, 0.95);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text: #f1f5f9;
    --text-muted: #cbd5e1;
    --text-dim: #94a3b8;
    --border: #334155;
}

.dark-theme body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e293b 75%, #0f172a 100%) !important;
    color: #f1f5f9 !important;
}

.dark-theme .navbar {
    background: rgba(30, 41, 59, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dark-theme .hero {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 60%, rgba(51, 65, 85, 0.95) 100%) !important;
}

.dark-theme .features {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 50%, #1e293b 100%) !important;
}

.dark-theme .about-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%) !important;
}

.dark-theme .affiliate-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%) !important;
}

.dark-theme .stats {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
}

.dark-theme .pricing {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 50%, #1e293b 100%) !important;
}

.dark-theme .cta {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
}

.dark-theme .footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%) !important;
}

.dark-theme .contact-hero {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%) !important;
}

.dark-theme .contact-section {
    background: #1e293b !important;
}

.dark-theme .office-section {
    background: #1e293b !important;
}

/* Dark theme cards and elements */
.dark-theme .feature-card-large,
.dark-theme .pricing-card-new,
.dark-theme .stat-item,
.dark-theme .testimonial-card-large,
.dark-theme .info-card,
.dark-theme .contact-form-wrapper,
.dark-theme .office-card,
.dark-theme .commission-card {
    background: rgba(30, 41, 59, 0.8) !important;
    border-color: #334155 !important;
    color: #f1f5f9 !important;
}

/* White boxes/cards should have black text in dark themes */
.dark-theme .hero-stats-row .stat-box,
.dark-theme .trust-logo,
.dark-theme .floating-card,
.dark-theme .metric-card,
.dark-theme .badge-hero,
.dark-theme .experience-badge,
.dark-theme .a-feature,
.dark-theme .msme-info,
.dark-theme .address-block,
.dark-theme .newsletter-form input {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #111827 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.dark-theme .hero-stats-row .stat-box h3,
.dark-theme .hero-stats-row .stat-box p,
.dark-theme .trust-logo,
.dark-theme .floating-card .card-text,
.dark-theme .metric-card .metric-value,
.dark-theme .metric-card .metric-label,
.dark-theme .badge-hero,
.dark-theme .experience-badge .years,
.dark-theme .experience-badge .text,
.dark-theme .a-feature h4,
.dark-theme .a-feature p,
.dark-theme .msme-info h4,
.dark-theme .msme-info p,
.dark-theme .address-value,
.dark-theme .address-label {
    color: #111827 !important;
}

/* Login popup in dark theme */
.dark-theme .login-popup {
    background: rgba(255, 255, 255, 0.95) !important;
}

.dark-theme .login-popup-header h3,
.dark-theme .login-option h4,
.dark-theme .login-option p {
    color: #111827 !important;
}

.dark-theme .close-popup {
    color: #6b7280 !important;
}

.dark-theme .close-popup:hover {
    color: #dc2626 !important;
}

.dark-theme .theme-toggle {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.dark-theme .theme-toggle:hover {
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.dark-theme .sun-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-180deg) scale(0);
}

.dark-theme .moon-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

/* ========================================
   NIGHT THEME STYLES (Extra Dark)
   ======================================== */
.night-theme {
    --bg-body: #000000;
    --bg-gradient: linear-gradient(135deg, #111111 0%, #000000 50%, #000000 100%);
    --surface: #111111;
    --surface-hover: #1f1f1f;
    --glass: rgba(17, 17, 17, 0.95);
    --glass-border: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;
    --border: #27272a;
}

.night-theme body {
    background: linear-gradient(135deg, #000000 0%, #111111 25%, #1f1f1f 50%, #111111 75%, #000000 100%) !important;
    color: #ffffff !important;
}

.night-theme .navbar {
    background: rgba(17, 17, 17, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.night-theme .hero {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.95) 60%, rgba(31, 31, 31, 0.95) 100%) !important;
}

.night-theme .features,
.night-theme .about-section,
.night-theme .affiliate-section,
.night-theme .stats,
.night-theme .pricing,
.night-theme .cta,
.night-theme .footer,
.night-theme .contact-hero,
.night-theme .contact-section,
.night-theme .office-section {
    background: linear-gradient(180deg, #000000 0%, #111111 50%, #000000 100%) !important;
}

/* Night theme cards and elements */
.night-theme .feature-card-large,
.night-theme .pricing-card-new,
.night-theme .stat-item,
.night-theme .testimonial-card-large,
.night-theme .info-card,
.night-theme .contact-form-wrapper,
.night-theme .office-card,
.night-theme .commission-card {
    background: rgba(17, 17, 17, 0.8) !important;
    border-color: #27272a !important;
    color: #ffffff !important;
}

/* White boxes/cards should have black text in night theme */
.night-theme .hero-stats-row .stat-box,
.night-theme .trust-logo,
.night-theme .floating-card,
.night-theme .metric-card,
.night-theme .badge-hero,
.night-theme .experience-badge,
.night-theme .a-feature,
.night-theme .msme-info,
.night-theme .address-block,
.night-theme .newsletter-form input {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #111827 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.night-theme .hero-stats-row .stat-box h3,
.night-theme .hero-stats-row .stat-box p,
.night-theme .trust-logo,
.night-theme .floating-card .card-text,
.night-theme .metric-card .metric-value,
.night-theme .metric-card .metric-label,
.night-theme .badge-hero,
.night-theme .experience-badge .years,
.night-theme .experience-badge .text,
.night-theme .a-feature h4,
.night-theme .a-feature p,
.night-theme .msme-info h4,
.night-theme .msme-info p,
.night-theme .address-value,
.night-theme .address-label {
    color: #111827 !important;
}

/* Login popup in night theme */
.night-theme .login-popup {
    background: rgba(255, 255, 255, 0.95) !important;
}

.night-theme .login-popup-header h3,
.night-theme .login-option h4,
.night-theme .login-option p {
    color: #111827 !important;
}

.night-theme .close-popup {
    color: #6b7280 !important;
}

.night-theme .close-popup:hover {
    color: #dc2626 !important;
}

.night-theme .theme-toggle {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.night-theme .theme-toggle:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.night-theme .moon-icon {
    filter: brightness(1.2);
}

/* Dark theme background animations */
.dark-theme body::before,
.night-theme body::before {
    background: 
        linear-gradient(0deg, transparent 8%, rgba(99, 102, 241, 0.05) 8%, rgba(99, 102, 241, 0.05) 9%, transparent 9%, transparent 91%, rgba(99, 102, 241, 0.05) 91%, rgba(99, 102, 241, 0.05) 92%, transparent 92%),
        linear-gradient(90deg, transparent 8%, rgba(139, 92, 246, 0.05) 8%, rgba(139, 92, 246, 0.05) 9%, transparent 9%, transparent 91%, rgba(139, 92, 246, 0.05) 91%, rgba(139, 92, 246, 0.05) 92%, transparent 92%),
        linear-gradient(45deg, transparent 48%, rgba(99, 102, 241, 0.03) 49%, rgba(99, 102, 241, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(139, 92, 246, 0.03) 49%, rgba(139, 92, 246, 0.03) 51%, transparent 52%) !important;
}

.dark-theme body::after,
.night-theme body::after {
    background: 
        radial-gradient(circle at 5% 5%, rgba(99, 102, 241, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 95% 5%, rgba(139, 92, 246, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 5% 95%, rgba(99, 102, 241, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 95% 95%, rgba(139, 92, 246, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 60%) !important;
}

/* Form elements in dark themes */
.dark-theme input,
.dark-theme textarea,
.dark-theme select,
.night-theme input,
.night-theme textarea,
.night-theme select {
    background: rgba(51, 65, 85, 0.5) !important;
    border-color: #475569 !important;
    color: #f1f5f9 !important;
}

.night-theme input,
.night-theme textarea,
.night-theme select {
    background: rgba(39, 39, 42, 0.5) !important;
    border-color: #52525b !important;
    color: #ffffff !important;
}

/* Buttons in dark themes */
.dark-theme .btn-login,
.night-theme .btn-login {
    background: rgba(51, 65, 85, 0.8) !important;
    border-color: #475569 !important;
    color: #f1f5f9 !important;
}

.night-theme .btn-login {
    background: rgba(39, 39, 42, 0.8) !important;
    border-color: #52525b !important;
}

/* Links in dark themes */
.dark-theme a,
.night-theme a {
    color: #93c5fd !important;
}

.dark-theme a:hover,
.night-theme a:hover {
    color: #dbeafe !important;
}

/* Responsive Theme Toggle */
@media (max-width: 768px) {
    .theme-toggle {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }
    
    .theme-icon {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .theme-toggle {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
    }
    
    .theme-icon {
        font-size: 20px;
    }
}
/* ========================================
   CHAT SUPPORT FLOATING BUTTON
   ======================================== */
.chat-support-float {
    position: fixed;
    bottom: 190px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5, #3730a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: chatPulse 2.5s ease-in-out infinite;
}

.chat-support-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, #3730a3, #4f46e5);
}

.chat-support-float svg {
    transition: transform 0.3s ease;
}

.chat-support-float:hover svg {
    transform: scale(1.1);
}

@keyframes chatPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5), 0 0 0 10px rgba(79, 70, 229, 0.1);
    }
}

/* ========================================
   CHAT SUPPORT POPUP
   ======================================== */
.chat-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease-out;
}

.chat-popup {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    max-width: 450px;
    width: 90%;
    max-height: 600px;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.chat-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.chat-popup-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.01em;
}

.close-chat-popup {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.4rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-chat-popup:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #dc2626;
    transform: scale(1.05);
}

.chat-popup-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Chat Messages Area */
.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bot-message,
.user-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: messageSlideIn 0.3s ease-out;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #3730a3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #10b981, #059669);
}

.message-content {
    max-width: 70%;
    background: rgba(79, 70, 229, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    position: relative;
}

.user-message .message-content {
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px 12px 4px 12px;
}

.bot-message .message-content {
    border-radius: 12px 12px 12px 4px;
}

.message-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #1f2937;
    line-height: 1.4;
}

.message-time {
    font-size: 0.7rem;
    color: #6b7280;
    margin-top: 0.25rem;
    display: block;
}

/* Typing Indicator */
.typing-indicator .message-content {
    background: rgba(79, 70, 229, 0.1);
    padding: 0.75rem 1rem;
}

.typing-dots {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4f46e5;
    animation: typingDot 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    30% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chat Input Area */
.chat-input-area {
    padding: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 20px 20px;
}

#chatInput {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    font-size: 0.9rem;
    background: white;
    outline: none;
    transition: all 0.3s ease;
}

#chatInput:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #3730a3);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

/* Contact Info Section */
.contact-info-section {
    padding: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0 0 20px 20px;
}

.contact-info-section .response-time,
.contact-info-section .fast-contact {
    margin-bottom: 1rem;
}

.response-time,
.fast-contact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(79, 70, 229, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: 12px;
}

.fast-contact {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.1);
}

.time-icon,
.fast-icon {
    font-size: 1.5rem;
    background: rgba(79, 70, 229, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.fast-icon {
    background: rgba(16, 185, 129, 0.1);
}

.time-content h4,
.fast-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.time-content p,
.fast-content p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

.contact-methods {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
}

.contact-methods h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.contact-icon {
    font-size: 1.1rem;
}

/* Responsive Chat Support */
@media (max-width: 768px) {
    .chat-support-float {
        bottom: 160px;
        left: 20px;
        width: 55px;
        height: 55px;
    }
    
    .chat-support-float svg {
        width: 28px;
        height: 28px;
    }
    
    .chat-popup {
        max-width: 95%;
        margin: 1rem;
    }
    
    .chat-popup-header {
        padding: 1.25rem 1.5rem 0.75rem;
    }
    
    .chat-popup-content {
        padding: 1.25rem 1.5rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .chat-support-float {
        bottom: 145px;
        left: 15px;
        width: 50px;
        height: 50px;
    }
    
    .chat-support-float svg {
        width: 26px;
        height: 26px;
    }
    
    .chat-popup {
        max-width: 100%;
        margin: 0.5rem;
        border-radius: 16px;
    }
    
    .response-time,
    .fast-contact {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Video Demo Modal Styles */
.demo-video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease-out;
}

.demo-video-modal {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.demo-video-modal video {
    width: 100%;
    height: auto;
    display: block;
}

.close-demo-video {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    z-index: 10002;
}

.close-demo-video:hover {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .demo-video-modal {
        width: 95%;
        max-width: 100%;
    }
    
    .close-demo-video {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
}

/* ===== PROFESSIONAL TERMS OF SERVICE STYLES ===== */

/* Hero Section - Professional */
.terms-hero-pro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #000000;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.terms-hero-pro .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.terms-hero-pro .legal-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0,0,0,0.05) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content-pro {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.legal-badge-pro {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title-pro {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000000;
}

.hero-subtitle-pro {
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-meta-pro {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.meta-item-pro {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666666;
}

.meta-item-pro i {
    font-size: 1rem;
    color: var(--primary);
}

/* Quick Navigation */
.quick-nav-section {
    padding: 3rem 0;
    background: var(--surface);
}

.quick-nav-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.quick-nav-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 600;
}

.quick-nav-card h3 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item:hover {
    background: var(--surface-hover);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-item.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.nav-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-item.active .nav-number {
    background: white;
    color: var(--primary);
}

.nav-title {
    font-weight: 500;
}

/* Terms Content - Professional */
.terms-content-pro {
    padding: 4rem 0;
    background: var(--bg-body);
}

.terms-layout-pro {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.terms-main-pro {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Terms Sections */
.terms-section {
    background: var(--surface);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.terms-section.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.terms-section:hover {
    box-shadow: var(--shadow-md);
}

.section-header-pro {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.section-number-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.section-info {
    flex: 1;
}

.section-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.section-icon-pro {
    font-size: 2rem;
    opacity: 0.7;
}

.section-content-pro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-main {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
}

.content-main p {
    margin-bottom: 1rem;
}

.content-summary {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-glow) 0%, var(--secondary-glow) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.summary-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.summary-text {
    flex: 1;
}

.summary-text strong {
    color: var(--primary);
}

/* Restrictions */
.restrictions-pro h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.restriction-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.restriction-item-pro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--surface-hover);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.restriction-item-pro:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.restriction-item-pro i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Warning Notice */
.warning-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.notice-icon {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.notice-content h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Liability Info */
.liability-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.liability-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--surface-hover);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.liability-type {
    font-weight: 500;
    color: var(--text);
}

.liability-amount {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}

/* Responsibilities */
.responsibilities-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.resp-item-pro {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface-hover);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.resp-item-pro:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.resp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.resp-content h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.resp-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Prohibited Grid */
.prohibited-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.prohibited-item-pro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-radius: 8px;
    border: 1px solid rgba(244, 63, 94, 0.2);
    transition: all 0.3s ease;
}

.prohibited-item-pro:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.prohibited-item-pro i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Payment Process */
.payment-process {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--surface-hover);
    border-radius: 12px;
    border: 1px solid var(--border);
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
}

/* Additional Sections - Compact */
.additional-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.compact-section {
    background: var(--surface);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.compact-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.compact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.compact-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.compact-header h3 {
    flex: 1;
    font-size: 1.1rem;
    color: var(--text);
    margin: 0;
}

.compact-header i {
    color: var(--primary);
    font-size: 1.2rem;
}

.compact-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-glow) 0%, var(--secondary-glow) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.contact-methods-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-info h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.method-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Professional Sidebar */
.terms-sidebar-pro {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-card-pro {
    background: var(--surface);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.sidebar-card-pro h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-card-pro h4 i {
    color: var(--primary);
}

/* Document Info */
.doc-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-value {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Key Points */
.key-points {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.key-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.key-point i {
    color: var(--success);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.key-point span {
    color: var(--text-muted);
    line-height: 1.5;
}

/* Help Button */
.help-btn-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.help-btn-pro:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Related Documents */
.related-docs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.doc-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--surface-hover);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.doc-link:hover {
    background: var(--primary-glow);
    color: var(--primary);
    transform: translateX(4px);
}

.doc-link i {
    color: var(--primary);
    width: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-layout-pro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .terms-sidebar-pro {
        position: static;
        order: -1;
    }
    
    .hero-title-pro {
        font-size: 2.5rem;
    }
    
    .nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .section-header-pro {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .payment-process {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .responsibilities-pro,
    .contact-methods-pro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-meta-pro {
        flex-direction: column;
        gap: 1rem;
    }
    
    .restriction-list,
    .prohibited-grid-pro {
        grid-template-columns: 1fr;
    }
    
    .additional-sections {
        grid-template-columns: 1fr;
    }
}
/* ===== HELP CENTER STYLES ===== */

/* Help Hero Section */
.help-hero {
    padding: 6rem 0 4rem;
}

.help-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Enhanced Search */
.help-search-container {
    max-width: 600px;
    margin: 2rem auto;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.help-search-input {
    flex: 1;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--primary-light);
    transform: translateX(2px);
}

.search-suggestions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.suggestion-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.suggestion-tag {
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Help Stats */
.help-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.help-stats .stat-item {
    text-align: center;
}

.help-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.help-stats .stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Help Categories */
.help-categories {
    padding: 4rem 0;
    background: var(--bg-body);
}

.help-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.help-category-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.help-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.help-category-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.category-info {
    flex: 1;
}

.category-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.article-count {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.category-badge {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.help-category-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-topics {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.topic-tag {
    background: var(--surface-hover);
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid var(--border);
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: var(--primary-light);
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(4px);
}

/* Quick Start Guide */
.quick-start-section {
    padding: 4rem 0;
    background: var(--surface);
}

.quick-start-steps {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h4 {
    color: var(--text);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-body);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-category-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.faq-category-btn.active,
.faq-category-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.faq-category-content {
    display: none;
}

.faq-category-content.active {
    display: block;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--surface-hover);
}

.faq-question h4 {
    color: var(--text);
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.faq-helpful {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.faq-helpful span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.helpful-btn {
    background: var(--surface-hover);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Popular Articles */
.popular-articles {
    padding: 4rem 0;
    background: var(--surface);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.article-category {
    background: var(--primary-glow);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-read-time {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.article-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.article-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.article-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.article-stats i {
    color: var(--primary);
}

.article-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Contact Support Section */
.contact-support-section {
    padding: 4rem 0;
    background: var(--bg-body);
}

.support-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.support-main h2 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.support-main p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.support-option:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.support-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--primary-glow);
    border-radius: 16px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.support-info {
    flex: 1;
}

.support-info h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.support-info p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.support-status.online {
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 500;
}

.support-response,
.support-hours {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.support-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.support-btn.primary {
    background: var(--primary);
    color: white;
}

.support-btn.primary:hover {
    background: var(--primary-light);
}

.support-btn.secondary {
    background: var(--surface-hover);
    color: var(--text);
    border: 1px solid var(--border);
}

.support-btn.secondary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.support-stats {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.support-stats .stat-item {
    text-align: center;
}

.support-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.support-stats .stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Support Sidebar */
.support-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
}

.support-card h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.quick-links,
.resource-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-links a,
.resource-links a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.quick-links a:hover,
.resource-links a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.quick-links a:last-child,
.resource-links a:last-child {
    border-bottom: none;
}

.contact-card .contact-details {
    margin-bottom: 1rem;
}

.contact-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-stats {
        gap: 2rem;
    }
    
    .help-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-start-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .support-content {
        grid-template-columns: 1fr;
    }
    
    .support-option {
        flex-direction: column;
        text-align: center;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .search-suggestions {
        flex-direction: column;
        align-items: center;
    }
    
    .help-search-container {
        margin: 1.5rem auto;
    }
    
    .search-input-wrapper {
        flex-direction: column;
        border-radius: 12px;
        padding: 1rem;
    }
    
    .help-search-input {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .search-btn {
        width: 100%;
        border-radius: 8px;
    }
}
/* ===== HELP CENTER SPECIFIC STYLES ===== */

/* Help Search Wrapper */
.help-search-wrapper {
    max-width: 600px;
    margin: 2rem auto;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.search-container:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.search-container .search-icon {
    position: absolute;
    left: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    z-index: 2;
}

.search-input {
    flex: 1;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--primary-light);
    transform: translateX(2px);
}

.search-suggestions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.suggestion-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.suggestion-tag {
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Help Stats */
.help-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.help-stats .stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.help-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.help-stats .stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Help Categories Grid */
.help-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.help-category-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.help-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.help-category-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.category-info {
    flex: 1;
}

.category-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.article-count {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.category-badge {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.help-category-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-topics {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.topic-tag {
    background: var(--surface-hover);
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid var(--border);
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: var(--primary-light);
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(4px);
}

/* Quick Start Steps */
.quick-start-steps {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h4 {
    color: var(--text);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-category-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.faq-category-btn.active,
.faq-category-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.faq-category-content {
    display: none;
}

.faq-category-content.active {
    display: block;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--surface-hover);
}

.faq-question h4 {
    color: var(--text);
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.faq-helpful {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.faq-helpful span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.helpful-btn {
    background: var(--surface-hover);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.article-category {
    background: var(--primary-glow);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-read-time {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.article-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.article-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.article-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.article-stats i {
    color: var(--primary);
}

.article-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Support Content */
.support-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.support-main h2 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.support-main p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.support-option:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.support-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--primary-glow);
    border-radius: 16px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.support-info {
    flex: 1;
}

.support-info h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.support-info p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.support-status.online {
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 500;
}

.support-response,
.support-hours {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.support-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.support-btn.primary {
    background: var(--primary);
    color: white;
}

.support-btn.primary:hover {
    background: var(--primary-light);
}

.support-btn.secondary {
    background: var(--surface-hover);
    color: var(--text);
    border: 1px solid var(--border);
}

.support-btn.secondary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.support-stats {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.support-stats .stat-item {
    text-align: center;
}

.support-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.support-stats .stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Support Sidebar */
.support-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
}

.support-card h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.quick-links,
.resource-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-links a,
.resource-links a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.quick-links a:hover,
.resource-links a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.quick-links a:last-child,
.resource-links a:last-child {
    border-bottom: none;
}

.contact-card .contact-details {
    margin-bottom: 1rem;
}

.contact-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-stats {
        gap: 2rem;
    }
    
    .help-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-start-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .support-content {
        grid-template-columns: 1fr;
    }
    
    .support-option {
        flex-direction: column;
        text-align: center;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .search-suggestions {
        flex-direction: column;
        align-items: center;
    }
    
    .help-search-wrapper {
        margin: 1.5rem auto;
    }
    
    .search-container {
        flex-direction: column;
        border-radius: 12px;
        padding: 1rem;
    }
    
    .search-input {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .search-btn {
        width: 100%;
        border-radius: 8px;
    }
}


/* Hide Tracking Dashboard on Mobile */
@media (max-width: 768px) {
    #tracking-dashboard {
        display: none !important;
    }
}
