        :root {

            --primary: #f3ce14;

            --secondary: #252529;

            --dark: #252529;

            --light: #f8f9fa;

            --gradient-primary: linear-gradient(135deg, #f3ce14 0%, #f5d93a 100%);

            --gradient-secondary: linear-gradient(135deg, #252529 0%, #3a3a3f 100%);

            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);

            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);

            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);

            --radius-sm: 4px;

            --radius-md: 8px;

            --radius-lg: 12px;

        }



        * {
            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: #ffffff;
        }



        .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;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .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 - HIDDEN for minimal look */

        .floating-element {
            display: none;
        }



        .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;
            }
        }







        /* Mobile button styles moved inside media query */




        @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 - HIDDEN for minimal look */
        .animated-box {
            display: none;
        }

        .box-1,
        .box-2,
        .box-3,
        .box-4 {
            display: none;
        }

        /* Dekoratif elementler - HIDDEN for minimal look */
        .acorn {
            display: none;
        }

        .acorn-1,
        .acorn-2 {
            display: none;
        }

        /* 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;
        }

        /* ================================================
   NEKATRUST UTILITY CLASSES
   ================================================ */

        /* Text Colors */
        .text-dark {
            color: #252529 !important;
        }

        .text-gold {
            color: #f3ce14 !important;
        }

        .text-white {
            color: #ffffff !important;
        }

        /* Button Styles */
        .btn-gold {
            background: #f3ce14 !important;
            color: #252529 !important;
            font-weight: 600;
            border: none;
        }

        .btn-gold:hover {
            background: #e5c013 !important;
            transform: translateY(-2px);
        }

        .btn-dark {
            background: #252529 !important;
            color: #ffffff !important;
            font-weight: 500;
            border: none;
        }

        .btn-dark:hover {
            background: #3a3a3f !important;
            transform: translateY(-2px);
        }

        /* Trust Badges */
        .trust-badges {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: #ffffff;
            border-radius: 8px;
            border: 1px solid #e5e9ef;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
        }

        .trust-badge:hover {
            border-color: #f3ce14;
            transform: translateY(-2px);
        }

        .trust-badge i {
            color: #f3ce14;
            font-size: 1.1rem;
        }

        .trust-badge span {
            color: #252529;
            font-weight: 500;
            font-size: 0.85rem;
        }

        /* Feature Badge Icons */
        .feature-badge i {
            color: #f3ce14;
        }

        /* Notification Badge */
        .notification-badge i {
            color: #f3ce14;
        }

        /* Hero Buttons Symmetry */
        .hero-buttons .btn {
            min-width: 180px;
            justify-content: center;
        }

        /* ================================================
   MOBILE RESPONSIVE FIXES
   ================================================ */

        @media (max-width: 768px) {

            /* Hero Title */
            .hero-title {
                font-size: 1.8rem !important;
                line-height: 1.3;
            }

            /* Hero Description */
            .hero-description {
                font-size: 0.95rem;
                padding: 0 10px;
            }

            /* Hero Buttons - Stack on mobile */
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .hero-buttons .btn {
                width: 100%;
                max-width: 280px;
                min-width: unset;
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            /* Trust Badges */
            .trust-badges {
                gap: 8px;
                padding: 0 10px;
            }

            .trust-badge {
                padding: 8px 12px;
                flex: 1 1 calc(33% - 8px);
                min-width: 0;
            }

            .trust-badge span {
                font-size: 0.7rem;
            }

            .trust-badge i {
                font-size: 0.9rem;
            }

            /* Feature badges */
            .feature-badge {
                padding: 6px 12px !important;
                font-size: 0.8rem;
            }

            /* Notification badge */
            .notification-badge {
                font-size: 0.8rem;
                padding: 6px 12px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.5rem !important;
            }

            .hero-description {
                font-size: 0.9rem;
            }

            .container {
                padding: 0 15px;
            }
        }

        /* ================================================
   TRUST BADGES - 2x2 GRID, CENTERED on desktop
   ================================================ */
        .trust-badges-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 24px;
            max-width: 360px;
            margin-left: auto;
            margin-right: auto;
        }

        .trust-badges-grid .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            background: #ffffff;
            border-radius: 8px;
            border: 1px solid #e5e9ef;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
        }

        .trust-badges-grid .trust-badge:hover {
            border-color: #f3ce14;
            transform: translateY(-2px);
        }

        .trust-badges-grid .trust-badge i {
            color: #f3ce14;
            font-size: 1rem;
        }

        .trust-badges-grid .trust-badge span {
            color: #252529;
            font-weight: 500;
            font-size: 0.8rem;
        }

        @media (max-width: 992px) {
            .trust-badges-grid {
                max-width: 100%;
            }
        }

        /* ================================================
   HERO BUTTONS - CENTERED (aligned with title)
   ================================================ */
        .hero-buttons {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            gap: 10px;
            justify-content: center;
            margin-top: 24px;
        }

        .hero-buttons .btn {
            min-width: 140px;
            padding: 12px 18px;
            font-size: 0.9rem;
            justify-content: center;
            white-space: nowrap;
        }

        /* Mobile buttons - smaller to fit side by side */
        @media (max-width: 768px) {
            .hero-buttons .btn {
                min-width: auto;
                padding: 10px 14px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 400px) {
            .hero-buttons {
                gap: 8px;
            }

            .hero-buttons .btn {
                min-width: auto;
                padding: 8px 10px;
                font-size: 0.75rem;
            }
        }

        /* ================================================
   HERO CONTENT - CENTER ALL CHILDREN ON DESKTOP
   ================================================ */
        .hero-section .hero-content {
            text-align: center !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
        }

        .hero-section .hero-content .hero-title-wrapper {
            text-align: center !important;
        }

        .hero-section .hero-content .hero-description {
            text-align: center !important;
        }

        .hero-section .hero-content .hero-buttons {
            justify-content: center !important;
            width: auto !important;
        }

        .hero-section .hero-content .trust-badges-grid {
            margin-left: auto !important;
            margin-right: auto !important;
        }

        /* ================================================
   MOBILE HERO IMAGE & FEATURE BADGES
   ================================================ */

        /* Feature badges container - always flex row */
        .feature-badges-container {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 12px;
            margin-top: 15px;
        }

        /* Desktop: badges are absolute positioned, container hidden */
        @media (min-width: 993px) {
            .feature-badges-container {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                display: block;
            }

            .feature-badges-container .feature-badge-1 {
                position: absolute;
                top: 10%;
                left: -20px;
            }

            .feature-badges-container .feature-badge-2 {
                position: absolute;
                bottom: 10%;
                right: -20px;
            }
        }

        @media (max-width: 992px) {

            /* Bigger hero image on mobile */
            .hero-image {
                max-width: 100% !important;
                width: 350px !important;
            }

            /* Hero image wrapper centered */
            .hero-image-wrapper {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                position: relative;
            }

            /* Feature badges container - flex row for side by side */
            .feature-badges-container {
                display: flex !important;
                flex-direction: row !important;
                justify-content: center !important;
                gap: 8px !important;
                flex-wrap: nowrap !important;
                margin-top: 12px !important;
            }

            /* Badges side by side */
            .feature-badges-container .feature-badge {
                position: static !important;
                display: inline-flex !important;
                padding: 8px 12px !important;
                font-size: 0.75rem !important;
                white-space: nowrap !important;
            }
        }

        @media (max-width: 768px) {
            .hero-image {
                width: 300px !important;
            }

            .feature-badge {
                padding: 8px 14px !important;
                font-size: 0.8rem !important;
            }

            .feature-badge i {
                font-size: 1rem !important;
            }
        }