        :root {

            --primary: #1297e0;

            --secondary: #f56911;

            --dark: #2b3441;

            --light: #f8f9fa;

            --gradient-primary: linear-gradient(135deg, #1297e0 0%, #43a7e8 100%);

            --gradient-secondary: linear-gradient(135deg, #f56911 0%, #ff8a43 100%);

            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);

            --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.08);

            --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);

            --radius-sm: 8px;

            --radius-md: 12px;

            --radius-lg: 20px;

        }



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;

        }



        body {

            background-color: #fff;

            color: var(--dark);

            line-height: 1.6;

        }



      /* Hero Section */

        .hero-section {

            position: relative;

            overflow: hidden;

            background: 

                radial-gradient(circle at 0% 0%, rgba(18,151,224,0.05) 0%, transparent 50%),

                radial-gradient(circle at 100% 100%, rgba(245,105,17,0.05) 0%, transparent 50%);

        }



        .container {

            max-width: 1400px;

            margin: 0 auto;

            padding: 0 24px;

        }



        .hero-grid {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 60px;

            align-items: center;

            }

            .hero-content {
            position: relative;

            z-index: 2;

        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient-secondary);

            color: white;
            padding: 8px 16px;
            border-radius: 100px;

            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 32px;

            box-shadow: var(--shadow-md);

        }



        .hero-title {
            position: relative;
            line-height: 1.2;
            margin-bottom: 24px;
            color: #4a4a4a;
            font-weight: 700;
            font-size:31px;
            text-align: center
        }

        .hero-title::before {
            content: '';
            position: absolute;
            inset: -10px;
            background: radial-gradient(
                circle at 50% 50%,
                rgba(18,151,224,0.15),
                rgba(245,105,17,0.15),
                transparent 50%
            );
            filter: blur(15px);
            animation: glowPulse 3s infinite;
            z-index: -1;
        }

        @keyframes glowPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }



        .hero-description {

            font-size: 1.2rem;
            text-align: center;

        }



        .hero-buttons {

            display: flex;

            gap: 16px;

        }



        .btn {

            display: inline-flex;

            align-items: center;

            gap: 8px;

            padding: 14px 28px;

            border-radius: var(--radius-sm);

            font-weight: 600;

            font-size: 1rem;

            text-decoration: none;

            transition: all 0.3s ease;

        }

        .btn-primary {
            background: var(--gradient-secondary);

            color: white;
            box-shadow: var(--shadow-md);

        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);

        }

        .btn-secondary {
            background: white;

            color: var(--primary);

            border: 2px solid var(--primary);

        }

        .btn-secondary:hover {
            background: var(--primary);

            color: white;
        }


        .hero-image-wrapper {

            position: relative;

            z-index: 1;


            margin: 0 auto;

        }



        .hero-image {

            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));

            transform-origin: center;

            animation: float 6s ease-in-out infinite;

            margin: 0 auto;

        }


        .feature-badge {
            position: absolute;

            background: white;
            padding: 12px 24px;

            border-radius: var(--radius-sm);

            display: flex;
            align-items: center;
            gap: 12px;

            box-shadow: var(--shadow-md);

            font-weight: 500;
            transition: all 0.3s ease;
        }

        .feature-badge-1 {

            top: 10%;

            left: -20px;

        }



        .feature-badge-2 {

            bottom: 10%;

            right: -20px;

        }



        .feature-badge i {

            font-size: 1.2rem;

        }



        .feature-badge-1 i {

            color: var(--secondary);

        }



        .feature-badge-2 i {

            color: var(--primary);

        }



        @keyframes float {

            0%, 100% { transform: translateY(0); }

            50% { transform: translateY(-20px); }

        }



        /* Floating Elements Animation */

        .floating-element {

            position: absolute;

            border-radius: 50%;

            opacity: 0.1;

            z-index: 0;

        }



        .float-1 {

            width: 300px;

            height: 300px;

            background: var(--primary);

            top: -150px;

            left: -150px;

            animation: float-rotate 15s infinite linear;

        }



        .float-2 {

            width: 200px;

            height: 200px;

            background: var(--secondary);

            bottom: -100px;

            right: -100px;

            animation: float-rotate 12s infinite linear reverse;

        }



        @keyframes float-rotate {

            0% { transform: rotate(0deg); }

            100% { transform: rotate(360deg); }

        }



        /* Trust Counter Section */

        .trust-counter {
            display: flex;
            gap: 1.5rem;
            margin: 15px auto;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius-sm);
            box-shadow: 0 4px 15px rgba(18,151,224,0.05);
            max-width: fit-content;
            position: relative;
            overflow: hidden;
        }

        .trust-counter::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(18,151,224,0.05),
                transparent
            );
            animation: shine 3s infinite;
        }

        .trust-counter::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(
                45deg,
                rgba(245,105,17,0.1),
                transparent
            );
            border-radius: 50%;
            top: -50px;
            left: -50px;
            animation: rotate 10s infinite linear;
        }

        .trust-counter-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .trust-counter-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.2;
        }

        .dot-1 { top: 10%; left: 10%; animation: float 3s infinite ease-in-out; }
        .dot-2 { top: 90%; right: 10%; animation: float 3s infinite ease-in-out 0.5s; }
        .dot-3 { top: 50%; right: 5%; animation: float 3s infinite ease-in-out 1s; }

        @keyframes shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(5px); }
        }

        .counter-item {
            position: relative;
            text-align: center;
            padding: 0.5rem 1.5rem;
        }

        .counter-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -0.75rem;
            top: 50%;
            transform: translateY(-50%);
            height: 70%;
            width: 1px;
            background: linear-gradient(
                to bottom,
                transparent,
                rgba(18,151,224,0.15),
                transparent
            );
        }

        .counter-number {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .counter-number i {
            font-size: 1rem;
            opacity: 0.8;
        }

        .counter-label {
            font-size: 0.8rem;
            color: var(--dark);
            opacity: 0.7;
            font-weight: 500;
        }



        /* Brand Logos Section */

        .brand-logos {

            display: flex;
            align-items: center;
            gap: 2rem;

            margin-top: 1rem;
            padding: 1rem;

            background: rgba(255, 255, 255, 0.6);

            border-radius: 12px;

        }



        .brand-logos img {

            height: 40px;

            opacity: 0.6;

            transition: opacity 0.3s ease;

            filter: grayscale(1);

        }



        .brand-logos img:hover {

            opacity: 1;

            filter: grayscale(0);

        }



        /* Notification Badge */

        .notification-badge {

            position: absolute;
            top: 2rem;

            right: 2rem;

            padding: 0.75rem 1.5rem;

            background: white;

            border-radius: 8px;

            box-shadow: 0 4px 15px rgba(0,0,0,0.1);

            display: flex;
            align-items: center;
            gap: 0.75rem;

            animation: slideIn 0.5s ease-out;

        }



        @keyframes slideIn {

            from { transform: translateX(100%); opacity: 0; }

            to { transform: translateX(0); opacity: 1; }

        }



        /* Mouse Scroll Indicator */

        .scroll-indicator {

            position: absolute;
            bottom: 2rem;

            left: 50%;

            transform: translateX(-50%);

            width: 30px;

            height: 50px;

            border: 2px solid var(--primary);

            border-radius: 15px;

            display: flex;

            justify-content: center;

            padding-top: 10px;

        }



        .scroll-dot {

            width: 4px;

            height: 4px;

            background: var(--primary);

            border-radius: 50%;

            animation: scrollDot 1.5s infinite;

        }



        @keyframes scrollDot {

            0% { transform: translateY(0); opacity: 1; }

            100% { transform: translateY(15px); opacity: 0; }

        }



        /* Responsive Design */

        @media (max-width: 992px) {
            .hero-grid {

                grid-template-columns: 1fr;
                text-align: center;

                gap: 40px;

            }



            .hero-content {

                order: 2;

            }



            .hero-description {

                margin: 0 auto 40px;

            }



            .hero-buttons {

                justify-content: center;

            }



            .feature-badge {

                position: static;

                display: inline-flex;

                margin: 8px;

            }



            .hero-image-wrapper {

                order: 1;

            display: flex;
            flex-direction: column;
            align-items: center;
                max-width: 300px;

            }



            .hero-image {

                max-width: 80%;

            }

            .trust-counter {
                margin-left: auto;
                margin-right: auto;
            }
        }





            .hero-buttons {

                flex-direction: column;

            }



            .btn {

                width: 100%;

                justify-content: center;

            }




        @media (max-width: 768px) {
            .trust-counter {
                gap: 1.5rem;
                margin: 2rem auto;
            }

            .counter-item:not(:last-child)::after {
                display: none;
            }

            .counter-item {
                width: 100%;
                padding: 0.75rem;
            }

            .counter-item:last-child {
                border-bottom: none;
            }

            .brand-logos {
                flex-wrap: wrap;
                justify-content: center;
            }

            .notification-badge {
                display: none;
            }
        }

        /* Mevcut stillere eklenecek */

        /* Başlık için özel wrapper */
        .hero-title-wrapper {
            position: relative;
            padding-bottom: 10px;
        }

        /* Animasyonlu kutular */
        .animated-box {
            position: absolute;
            width: 30px;
            height: 30px;
            border-radius: 8px;
            opacity: 0.2;
            z-index: -1;
        }

        .box-1 {
            top: -10px;
            left: -10px;
            background: var(--primary);
            animation: rotateBox 4s infinite linear;
        }

        .box-2 {
            top: -10px;
            right: -10px;
            background: var(--secondary);
            animation: rotateBox 4s infinite linear reverse;
        }

        .box-3 {
            bottom: -10px;
            left: -10px;
            background: var(--secondary);
            animation: rotateBox 4s infinite linear 1s;
        }

        .box-4 {
            bottom: -10px;
            right: -10px;
            background: var(--primary);
            animation: rotateBox 4s infinite linear 1s reverse;
        }

        /* Sincap temalı dekoratif elementler */
        .acorn {
            position: absolute;
            width: 20px;
            height: 20px;
            background: #8B4513;
            border-radius: 50%;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .acorn-1 {
            top: 20%;
            left: -30px;
            animation: bounce 3s infinite ease-in-out;
        }

        .acorn-2 {
            bottom: 20%;
            right: -30px;
            animation: bounce 3s infinite ease-in-out 1.5s;
        }

        /* Animasyonlar */
        @keyframes rotateBox {
            0% {
                transform: rotate(0deg) translateY(0);
            }
            25% {
                transform: rotate(90deg) translateY(5px);
            }
            50% {
                transform: rotate(180deg) translateY(0);
            }
            75% {
                transform: rotate(270deg) translateY(-5px);
            }
            100% {
                transform: rotate(360deg) translateY(0);
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-10px) scale(1.1);
            }
        }

        /* Başlık hover efekti */
        .hero-title {
            transition: transform 0.3s ease;
        }

        .hero-title-wrapper:hover .hero-title {
            transform: scale(1.02);
        }

        .hero-title-wrapper:hover .animated-box {
            animation-duration: 2s;
        }