/* Centered Section */
        .app-centered-section {
            position: relative;
            overflow: hidden;
        }

        /* Decorative Ring */
        .app-deco-ring {
            position: absolute;
            border: 2px solid;
            border-radius: 50%;
            opacity: 0.1;
        }

        .app-deco-ring-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            left: -100px;
            border-color: var(--color-primary-500);
        }

        .app-deco-ring-2 {
            width: 300px;
            height: 300px;
            bottom: -50px;
            right: -50px;
            border-color: var(--color-secondary-500);
        }

        .app-deco-ring-3 {
            width: 200px;
            height: 200px;
            top: 40%;
            right: 10%;
            border-color: var(--color-primary-400);
            border-style: dashed;
        }

        /* Dot Pattern */
        .app-dot-pattern {
            position: absolute;
            width: 150px;
            height: 150px;
            background-image: radial-gradient(circle, var(--color-primary-300) 1.5px, transparent 1.5px);
            background-size: 20px 20px;
            opacity: 0.3;
        }

        .dark .app-dot-pattern {
            opacity: 0.15;
        }

        .app-dot-pattern-1 {
            top: 10%;
            right: 5%;
        }

        .app-dot-pattern-2 {
            bottom: 10%;
            left: 5%;
        }

        /* Phone Container */
        .app-phone-container {
            position: relative;
            display: inline-block;
        }

        /* Phone Shadow Ring */
        .app-phone-shadow {
            position: absolute;
            inset: -20px;
            background: linear-gradient(180deg, var(--color-primary-200) 0%, transparent 100%);
            border-radius: 50%;
            opacity: 0.5;
            filter: blur(40px);
        }

        .dark .app-phone-shadow {
            background: linear-gradient(180deg, var(--color-primary-800) 0%, transparent 100%);
            opacity: 0.3;
        }

        /* Phone Mockup */
        .app-centered-mockup {
            position: relative;
            z-index: 1;
            transition: transform 0.5s ease;
        }

        .app-centered-mockup:hover {
            transform: translateY(-10px);
        }

        /* Store Buttons */
        .store-btn-primary {
            background: var(--color-primary-600);
            color: white;
            transition: all 0.3s ease;
        }

        .store-btn-primary:hover {
            background: var(--color-primary-700);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px -5px rgba(var(--color-primary-500-rgb), 0.4);
        }

        .store-btn-secondary {
            background: var(--color-secondary-600);
            color: white;
            transition: all 0.3s ease;
        }

        .store-btn-secondary:hover {
            background: var(--color-secondary-700);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px -5px rgba(var(--color-secondary-500-rgb), 0.4);
        }

        /* Feature Card */
        .app-feature-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1.25rem 1rem;
            background: white;
            border: 1px solid var(--color-gray-200);
            border-radius: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .dark .app-feature-card {
            background: #1f2937 !important;
            border-color: #374151 !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .app-feature-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .dark .app-feature-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .app-feature-icon-box {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-600));
            border-radius: 12px;
            margin-bottom: 0.75rem;
            box-shadow: 0 4px 12px rgba(var(--color-primary-500-rgb), 0.3);
        }

        .dark .app-feature-icon-box {
            background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-700)) !important;
            box-shadow: 0 4px 12px rgba(var(--color-primary-500-rgb), 0.2);
        }

        .app-feature-icon {
            width: 24px;
            height: 24px;
            color: #ffffff !important;
        }

        .dark .app-feature-icon {
            color: #ffffff !important;
        }

        .app-feature-title {
            font-weight: 600;
            font-size: 0.9375rem;
            color: #111827;
            margin-bottom: 0.25rem;
        }

        .dark .app-feature-title {
            color: #ffffff !important;
        }

        .app-feature-desc {
            font-size: 0.8125rem;
            color: #6b7280;
            line-height: 1.4;
        }

        .dark .app-feature-desc {
            color: #9ca3af !important;
        }

        /* QR Code */
        .app-centered-qr {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            background: white;
            border-radius: 16px;
            border: 1px solid var(--color-gray-200);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .dark .app-centered-qr {
            background: #1f2937 !important;
            border-color: #374151 !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .app-centered-qr-image {
            background: white;
            padding: 6px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .app-centered-qr-title {
            font-weight: 600;
            font-size: 0.9375rem;
            color: #111827;
        }

        .dark .app-centered-qr-title {
            color: #ffffff !important;
        }

        .app-centered-qr-desc {
            font-size: 0.8125rem;
            color: #6b7280;
        }

        .dark .app-centered-qr-desc {
            color: #9ca3af !important;
        }

        /* Trusted Users */
        .app-centered-trusted {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.25rem;
            background: white;
            border-radius: 50px;
            border: 1px solid var(--color-gray-200);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .dark .app-centered-trusted {
            background: #1f2937 !important;
            border-color: #374151 !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .app-centered-trusted-text {
            font-size: 0.875rem;
            font-weight: 500;
            color: #111827;
        }

        .dark .app-centered-trusted-text {
            color: #ffffff !important;
        }

        .app-centered-trusted-sub {
            font-size: 0.75rem;
            color: #6b7280;
        }

        .dark .app-centered-trusted-sub {
            color: #9ca3af !important;
        }

        /* Stats */
        .app-stat-box {
            text-align: center;
            padding: 1rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--color-gray-100);
            transition: all 0.3s ease;
        }

        .dark .app-stat-box {
            background: #1f2937 !important;
            border-color: #374151 !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .app-stat-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .dark .app-stat-box:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .app-stat-value {
            color: #111827;
        }

        .dark .app-stat-value {
            color: #ffffff !important;
        }

        .app-stat-label {
            color: #6b7280;
        }

        .dark .app-stat-label {
            color: #9ca3af !important;
        }