/* Reset styles for why section only */
        #droph-why * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        #droph-why {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--gray-800);
            background: var(--white);
        }

        #droph-why-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 50%, var(--primary-50) 100%);
            position: relative;
            overflow: hidden;
        }

        #droph-why-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2325d366" fill-opacity="0.02"><path d="M50 0C77.614 0 100 22.386 100 50s-22.386 50-50 50S0 77.614 0 50 22.386 0 50 0zm0 10C28.461 10 10 28.461 10 50s18.461 40 40 40 40-18.461 40-40S71.539 10 50 10z"/></g></g></svg>');
            animation: droph-why-rotate 30s linear infinite;
        }

        @keyframes droph-why-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        #droph-why-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        #droph-why-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        #droph-why-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary-100);
            color: var(--primary-dark);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 2px solid var(--primary-200);
            opacity: 0;
            transform: translateY(20px);
        }

        #droph-why-headline {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            transform: translateY(30px);
        }

        #droph-why-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-bottom: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .droph-stat-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 24px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0,0,0,0.06);
            border: 1px solid var(--gray-100);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .droph-stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            border-radius: 24px 24px 0 0;
        }

        .droph-stat-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--primary-50) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .droph-stat-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 60px rgba(37, 211, 102, 0.15);
            border-color: var(--primary-200);
        }

        .droph-stat-card:hover::after {
            opacity: 1;
        }

        .droph-stat-card:nth-child(1) {
            background: linear-gradient(135deg, var(--white) 0%, var(--primary-50) 100%);
        }

        .droph-stat-card:nth-child(2) {
            background: linear-gradient(135deg, var(--white) 0%, var(--secondary-light) 100%);
        }

        .droph-stat-card:nth-child(3) {
            background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
        }

        .droph-stat-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, var(--white) 0%, var(--primary-100) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
            z-index: 2;
        }

        .droph-stat-card:nth-child(1) .droph-stat-icon {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-100) 100%);
            color: var(--primary-dark);
        }

        .droph-stat-card:nth-child(2) .droph-stat-icon {
            background: linear-gradient(135deg, var(--secondary-light) 0%, rgba(37, 99, 235, 0.1) 100%);
            color: var(--secondary-dark);
        }

        .droph-stat-card:nth-child(3) .droph-stat-icon {
            background: linear-gradient(135deg, var(--accent-light) 0%, rgba(139, 92, 246, 0.1) 100%);
            color: var(--accent-dark);
        }

        .droph-stat-icon::after {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            border: 2px solid;
            border-radius: 50%;
            opacity: 0.2;
            animation: droph-why-pulse 3s ease-in-out infinite;
        }

        .droph-stat-card:nth-child(1) .droph-stat-icon::after {
            border-color: var(--primary);
        }

        .droph-stat-card:nth-child(2) .droph-stat-icon::after {
            border-color: var(--secondary);
        }

        .droph-stat-card:nth-child(3) .droph-stat-icon::after {
            border-color: var(--accent);
        }

        @keyframes droph-why-pulse {
            0%, 100% { transform: scale(1); opacity: 0.2; }
            50% { transform: scale(1.1); opacity: 0.4; }
        }

        .droph-stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--gray-900);
            margin-bottom: 0.8rem;
            line-height: 1;
            position: relative;
            z-index: 2;
        }

        .droph-stat-card:nth-child(1) .droph-stat-number {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .droph-stat-card:nth-child(2) .droph-stat-number {
            background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .droph-stat-card:nth-child(3) .droph-stat-number {
            background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .droph-stat-label {
            color: var(--gray-600);
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.3;
            position: relative;
            z-index: 2;
        }

        #droph-why-cta {
            background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-light) 100%);
            padding: 3rem;
            border-radius: 24px;
            text-align: center;
            border: 1px solid var(--primary-100);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        #droph-why-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: droph-why-shimmer 3s ease-in-out infinite;
        }

        @keyframes droph-why-shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
            100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        }

        #droph-why-cta-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
            animation: droph-why-bounce 2s ease-in-out infinite;
        }

        @keyframes droph-why-bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        #droph-why-cta-text {
            font-size: 1.25rem;
            color: var(--gray-700);
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        #droph-why-cta-text strong {
            color: var(--primary-dark);
            font-weight: 700;
        }

        #droph-why-cta-highlight {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            color: var(--primary-dark);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid var(--primary-200);
            box-shadow: 0 4px 20px var(--primary-100);
            position: relative;
            z-index: 2;
            margin-top: 1rem;
        }

        /* Floating elements */
        #droph-why-floating {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .droph-why-float-icon {
            position: absolute;
            color: var(--primary);
            opacity: 0.08;
            font-size: 1.5rem;
            animation: droph-why-float 8s ease-in-out infinite;
        }

        .droph-why-float-icon:nth-child(1) {
            top: 15%;
            left: 5%;
            animation-delay: 0s;
        }

        .droph-why-float-icon:nth-child(2) {
            top: 25%;
            right: 8%;
            animation-delay: 2s;
        }

        .droph-why-float-icon:nth-child(3) {
            bottom: 20%;
            left: 10%;
            animation-delay: 4s;
        }

        .droph-why-float-icon:nth-child(4) {
            bottom: 35%;
            right: 15%;
            animation-delay: 6s;
        }

        @keyframes droph-why-float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.05; }
            25% { transform: translate(15px, -15px) rotate(90deg); opacity: 0.1; }
            50% { transform: translate(-10px, -25px) rotate(180deg); opacity: 0.08; }
            75% { transform: translate(-20px, -10px) rotate(270deg); opacity: 0.06; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            #droph-why-container {
                padding: 0 1rem;
            }

            #droph-why-section {
                padding: 3rem 0;
            }

            #droph-why-headline {
                font-size: 2.2rem;
            }

            #droph-why-stats {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-bottom: 2rem;
            }

            .droph-stat-card {
                padding: 2rem 1.5rem;
            }

            .droph-stat-number {
                font-size: 2.5rem;
            }

            .droph-stat-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }

            #droph-why-cta {
                padding: 2rem;
            }

            #droph-why-cta-text {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            #droph-why-headline {
                font-size: 1.8rem;
            }

            .droph-stat-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }

            .droph-stat-number {
                font-size: 2.2rem;
            }

            #droph-why-cta-icon {
                font-size: 2rem;
            }
        }