        .upkey-categories {
            max-width: 1400px;
            margin: 60px auto;
            padding: 40px;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 8px 30px rgba(43, 52, 65, 0.08);
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .upkey-categories::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 0% 0%, rgba(18,151,224,0.03) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(245,105,17,0.03) 0%, transparent 50%);
            z-index: 0;
        }

        .upkey-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 0;
            padding: 0;
            position: relative;
            z-index: 1;
        }

        .upkey-card {
            position: relative;
            background: #f8faf8;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 30px rgba(43, 52, 65, 0.05);
            border: 1px solid #e5e9ef;
            min-height: 240px;
            display: flex;
            align-items: center;
            padding: 32px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            text-decoration: none;
        }

        .upkey-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(43, 52, 65, 0.1);
            border-color: rgba(245,105,17,0.3);
        }

        .upkey-content {
            position: relative;
            z-index: 1;
            max-width: 65%;
        }

        .upkey-title {
            font-size: 1.5rem;
            margin: 0 0 16px;
            color: #1a1a1a;
            font-weight: 600;
            position: relative;
            padding-bottom: 12px;
        }

        .upkey-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #f56911;
            transition: width 0.3s ease;
        }

        .upkey-card:hover .upkey-title::after {
            width: 100px;
        }

        .upkey-desc {
            font-size: 1.05rem;
            color: #4a5568;
            margin: 0;
            line-height: 1.6;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .upkey-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #f56911 0%, #ff8a43 100%);
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(245,105,17,0.2);
            transition: all 0.3s ease;
        }

        .upkey-card:hover .upkey-icon {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(245,105,17,0.3);
        }

        .upkey-icon i {
            font-size: 1.2rem;
            color: white;
            transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .upkey-card:hover .upkey-icon i {
            transform: rotate(360deg);
        }

        .upkey-image {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 320px;
            height: auto;
            transform: scale(1) rotate(-4deg);
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 0;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
        }

        .upkey-card:hover .upkey-image {
            transform: scale(1.05) rotate(0deg);
            filter: drop-shadow(0 12px 25px rgba(0,0,0,0.2));
        }

        /* Responsive Tasarım */
        @media (max-width: 1200px) {
            .upkey-categories {
                padding: 30px;
            }
            .upkey-grid {
                gap: 20px;
            }
            .upkey-card {
                min-height: 220px;
                padding: 24px;
            }
            .upkey-image {
                width: 280px;
            }
        }

        @media (max-width: 992px) {
            .upkey-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }
            .upkey-content {
                max-width: 70%;
            }
        }

        @media (max-width: 576px) {
            .upkey-categories {
                padding: 20px;
                margin: 30px auto;
            }
            .upkey-card {
                min-height: 200px;
                padding: 20px;
            }
            .upkey-content {
                max-width: 100%;
            }
            .upkey-title {
                font-size: 1.2rem;
                margin-bottom: 12px;
            }
            .upkey-desc {
                font-size: 0.95rem;
                gap: 12px;
            }
            .upkey-icon {
                width: 40px;
                height: 40px;
            }
            .upkey-icon i {
                font-size: 1rem;
            }
            .upkey-image {
                width: 180px;
                bottom: -10px;
                right: -10px;
            }
        }

        .shop-cta {
            padding: 40px 50px;
            background: #ffffff;
            border-radius: 24px;
            margin: 60px auto;
            max-width: 1400px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 8px 30px rgba(43, 52, 65, 0.08);
            position: relative;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
            border: 1px solid #e5e9ef;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .shop-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(43, 52, 65, 0.1);
            border-color: rgba(245,105,17,0.3);
        }

        .shop-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 0% 0%, rgba(18,151,224,0.03) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(245,105,17,0.03) 0%, transparent 50%);
            z-index: 0;
        }

        .cta-content {
            display: flex;
            align-items: center;
            gap: 22px;
            position: relative;
            z-index: 1;
        }

        .rocket-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #f56911 0%, #ff8a43 100%);
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(245,105,17,0.2);
            transition: all 0.3s ease;
        }

        .shop-cta:hover .rocket-icon {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(245,105,17,0.3);
        }

        .rocket-icon i {
            font-size: 24px;
            color: white;
            transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .shop-cta:hover .rocket-icon i {
            transform: rotate(360deg);
        }

        .cta-text {
            color: #1a1a1a;
            font-size: 26px;
            font-weight: 600;
            position: relative;
            padding-bottom: 4px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #f56911 0%, #ff8a43 100%);
            color: #fff;
            padding: 18px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 15px rgba(245,105,17,0.2);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(245,105,17,0.3);
        }

        .cta-button i {
            font-size: 18px;
            transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .cta-button:hover i {
            transform: translateX(6px);
        }

        @media (max-width: 768px) {
            .shop-cta {
                flex-direction: column;
                gap: 30px;
                text-align: center;
                padding: 35px;
            }

            .cta-content {
                flex-direction: column;
                justify-content: center;
            }

            .cta-text {
                font-size: 24px;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
            }
        }

        .steps-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 40px;
            font-family: 'Poppins', sans-serif;
        }

        .steps-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .steps-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2b3441;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #2b3441 0%, #404b5c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .steps-subtext {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }

        .step-item {
            position: relative;
            padding: 40px 24px;
            background: #fff;
            border-radius: 20px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .step-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(135deg, #f56911 0%, #ff8a43 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.3;
            transition: opacity 0.3s ease;
        }

        .step-item:hover::before {
            opacity: 1;
        }

        .step-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(43, 52, 65, 0.1);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #f56911 0%, #ff8a43 100%);
            color: #fff;
            width: 30px;
            height: 30px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(245, 105, 17, 0.2);
        }

        .step-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .step-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            opacity: 0.1;
            background: linear-gradient(135deg, #f56911 0%, #ff8a43 100%);
            transition: opacity 0.3s ease;
        }

        .step-icon i {
            font-size: 1.6rem;
            color: #f56911;
            transition: transform 0.3s ease;
        }

        .step-item:hover .step-icon::before {
            opacity: 0.15;
        }

        .step-item:hover .step-icon i {
            transform: scale(1.1);
        }

        .step-content h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2b3441;
            margin-bottom: 12px;
        }

        .step-content p {
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 992px) {
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 700px;
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .steps-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .steps-header h2 {
                font-size: 2.2rem;
            }

            .steps-subtext {
                font-size: 1rem;
                padding: 0 20px;
            }

            .step-item {
                padding: 35px 20px;
            }
        }


        .faq-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: #ffffff;
            border: 1px solid #e5e9ef;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(245,105,17,0.3);
            box-shadow: 0 15px 35px rgba(43, 52, 65, 0.1);
        }

        .faq-question {
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            background: #f8faf8;
            transition: all 0.3s ease;
        }

        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
            margin: 0;
            transition: color 0.3s ease;
        }

        .faq-toggle {
            width: 22px;
            height: 22px;
            background: linear-gradient(135deg, #f56911 0%, #ff8a43 100%);
            border-radius: 50%;
            position: relative;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .faq-toggle::before,
        .faq-toggle::after {
            content: '';
            position: absolute;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .faq-toggle::before {
            width: 10px;
            height: 2px;
            top: 10px;
            left: 6px;
        }

        .faq-toggle::after {
            width: 2px;
            height: 10px;
            top: 6px;
            left: 10px;
        }

        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .faq-answer p {
            color: #4a5568;
            line-height: 1.6;
            margin: 0;
            padding: 16px 0;
            font-size: 0.95rem;
        }

        .faq-item.active {
            background: #fff;
            border-color: rgba(245,105,17,0.3);
            box-shadow: 0 15px 35px rgba(43, 52, 65, 0.1);
        }

        .faq-item.active .faq-question {
            background: #fff;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
            background: linear-gradient(135deg, #1297e0 0%, #43a7e8 100%);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            opacity: 1;
        }

        @media (max-width: 992px) {
            .faq-container {
                grid-template-columns: 1fr;
                gap: 40px;
                max-width: 600px;
            }

            .faq-column {
                gap: 16px;
            }
        }

        /* ... diğer media query'ler aynı ... */

        /* Başlık kısmı için yeni stiller */
        .faq-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .faq-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 16px;
            line-height: 1.2;
            position: relative;
            display: inline-block;
            padding-bottom: 16px;
        }

        .faq-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, #f56911 0%, #ff8a43 100%);
            transition: width 0.3s ease;
        }

        .faq-header:hover h2::after {
            width: 120px;
        }

        .faq-header::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle at center, rgba(245,105,17,0.03) 0%, transparent 70%);
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            z-index: -1;
        }

        .faq-subtext {
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 600px;
            margin: 16px auto 0;
            line-height: 1.6;
            position: relative;
            padding-top: 16px;
        }

        .faq-subtext::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: rgba(245,105,17,0.2);
        }

        /* Responsive düzenlemeler */
        @media (max-width: 768px) {
            .faq-header h2 {
                font-size: 2.2rem;
            }
            
            .faq-subtext {
                font-size: 1.1rem;
                padding: 12px 20px 0;
            }
        }

        @media (max-width: 576px) {
            .faq-header h2 {
                font-size: 1.8rem;
            }
            
            .faq-subtext {
                font-size: 1rem;
            }
        }