        /* Smooth scroll için */
        html {
            scroll-behavior: smooth;
        }

        /* ========== HERO SECTION - Premium Design (kompakt yükseklik) ========== */
        .hero-section {
            min-height: 60vh;
            min-height: 65dvh;
            padding: clamp(5rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
            background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(26,26,26,0.80) 50%, rgba(0,0,0,0.72) 100%),
                        url('resimler/ens.jpg') center center / cover no-repeat;
            color: white;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            animation: heroFadeIn 1.2s ease-out;
        }
        /* Slide başına canlı arka plan (görsel veya video) */
        .hero-section .swiper-slide {
            position: relative;
        }
        .hero-section .hero-slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }
        .hero-section .hero-slide-img {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
        }
        .hero-section .hero-slide-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }
        .hero-section .hero-slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(26,26,26,0.85) 50%, rgba(0,0,0,0.75) 100%);
            z-index: 1;
        }
        .hero-section .hero-slide-inner {
            position: relative;
            z-index: 2;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                background-attachment: scroll;
            }
        }

        /* Parçacık katmanı 1 — büyük, yavaş */
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle, rgba(255,215,0,0.55) 1.5px, transparent 1.5px),
                radial-gradient(circle, rgba(255,215,0,0.35) 1px,   transparent 1px),
                radial-gradient(circle, rgba(255,215,0,0.25) 2px,   transparent 2px);
            background-size: 130px 130px, 90px 90px, 170px 170px;
            background-position: 20px 40px, 55px 85px, 10px 120px;
            animation: particlesRise1 18s linear infinite;
            pointer-events: none;
        }

        /* Parçacık katmanı 2 — küçük, hızlı */
        .hero-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle, rgba(255,215,0,0.40) 1px,   transparent 1px),
                radial-gradient(circle, rgba(255,215,0,0.20) 1.5px, transparent 1.5px);
            background-size: 100px 100px, 150px 150px;
            background-position: 70px 10px, 30px 60px;
            animation: particlesRise2 11s linear infinite;
            pointer-events: none;
            /* overlay gradient üstünde, içerik altında */
            z-index: 0;
        }

        /* içerik parçacıkların üstünde kalsın */
        .hero-section .hero-swiper {
            position: relative;
            z-index: 1;
        }

        @keyframes particlesRise1 {
            0%   { background-position: 20px 40px,  55px 85px,  10px 120px; }
            100% { background-position: 20px -90px, 55px -45px, 10px -50px; }
        }

        @keyframes particlesRise2 {
            0%   { background-position: 70px 10px,  30px 60px; }
            100% { background-position: 70px -90px, 30px -90px; }
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, var(--dark-bg), transparent);
            pointer-events: none;
        }

        .hero-section h1 {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: clamp(1.8rem, 5vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
            position: relative;
            color: #ffffff;
            letter-spacing: -0.5px;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-section h1::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: clamp(50px, 12vw, 100px);
            height: 3px;
            background: var(--accent-gold);
            border-radius: 2px;
            animation: expandLine 1.2s ease-out 0.5s both;
        }

        @keyframes expandLine {
            from { width: 0; }
            to { width: clamp(50px, 12vw, 100px); }
        }

        .hero-section p {
            font-size: clamp(0.95rem, 2vw, 1.2rem);
            line-height: 1.7;
            margin-bottom: clamp(1.5rem, 3vw, 2rem);
            color: rgba(255, 255, 255, 0.85);
            font-weight: 400;
            animation: fadeInUp 1s ease-out 0.3s both;
            max-width: 95%;
        }

        .hero-section .btn-primary {
            padding: clamp(1rem, 2.5vw, 1.35rem) clamp(2.25rem, 5vw, 3rem);
            font-size: clamp(1.05rem, 2vw, 1.3rem);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            border-radius: 50px;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease-out 0.6s both;
            border: 2px solid var(--accent-gold);
            background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
        }

        .hero-section .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
            transform: translate(-50%, -50%);
            transition: width 0.8s, height 0.8s;
        }

        .hero-section .btn-primary:hover::before {
            width: 400px;
            height: 400px;
        }

        .hero-section .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
            border-color: var(--accent-gold-light);
        }

        .hero-section .btn-primary:active {
            transform: translateY(-2px) scale(1.02);
        }

        /* ========== HERO İKİ KOLON / SWIPER ========== */
        .hero-two-columns {
            min-height: 60vh;
            min-height: 65dvh;
            padding: 0;
            display: block;
        }

        .hero-two-columns .container {
            width: 100%;
            max-width: 1140px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 15px;
            padding-right: 15px;
        }

        .hero-two-columns .hero-row-inner {
            align-items: center;
        }

        .hero-two-columns .hero-col-left,
        .hero-two-columns .hero-col-right {
            text-align: center;
        }

        .hero-panel {
            padding: clamp(1rem, 3vw, 1.5rem) 0;
            height: 100%;
        }

        .hero-panel-ers .hero-panel-ers-title {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2rem, 5vw, 3.25rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.75rem;
        }

        .hero-panel-ers .hero-panel-ers-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent-gold);
            border-radius: 2px;
            margin-top: 0.5rem;
        }

        .hero-panel-ers .hero-panel-ers-lead {
            font-size: clamp(1.05rem, 2vw, 1.35rem);
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        @media (max-width: 991px) {
            .hero-panel-ers .hero-panel-ers-title::after {
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* ========== PROPERTY CARDS - Minimalist Design ========== */
        .property-card {
            background: rgba(26, 26, 26, 0.5);
            backdrop-filter: blur(10px);
            border-radius: var(--card-radius-small);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .property-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transition: left 0.6s ease;
            z-index: 1;
            pointer-events: none;
        }

        .property-card:hover::before {
            left: 100%;
        }

        .property-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(255, 215, 0, 0.2);
            border-color: rgba(255, 215, 0, 0.4);
        }

        .property-image {
            position: relative;
            height: clamp(200px, 30vw, 280px);
            overflow: hidden;
            z-index: 0;
        }

        .property-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .property-card:hover .property-image img {
            transform: scale(1.2) rotate(3deg);
        }

        .property-tag {
            position: absolute;
            top: clamp(10px, 2vw, 12px);
            left: clamp(10px, 2vw, 12px);
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(10px);
            color: var(--accent-gold);
            padding: clamp(0.35rem, 0.8vw, 0.5rem) clamp(0.75rem, 1.5vw, 1rem);
            border-radius: 6px;
            font-weight: 700;
            font-size: clamp(0.7rem, 1.3vw, 0.8rem);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .property-price {
            position: absolute;
            bottom: clamp(10px, 2vw, 12px);
            right: clamp(10px, 2vw, 12px);
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            color: var(--accent-gold);
            padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.875rem, 1.8vw, 1.25rem);
            border-radius: 6px;
            font-weight: 700;
            font-size: clamp(0.85rem, 1.6vw, 1rem);
            z-index: 2;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .property-content {
            padding: clamp(1rem, 2.5vw, 1.5rem);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            background: rgba(26, 26, 26, 0.6);
            position: relative;
            z-index: 1;
        }

        .property-content h3 {
            font-family: 'Inter', sans-serif;
            color: white;
            font-weight: 600;
            margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
            font-size: clamp(1rem, 2vw, 1.25rem);
            line-height: 1.4;
        }

        .property-content p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: clamp(0.75rem, 2vw, 1rem);
            font-size: clamp(0.85rem, 1.8vw, 1rem);
        }

        .property-content i {
            color: var(--accent-gold);
            margin-right: 0.5rem;
            font-size: 0.9em;
        }

        .property-content .d-flex span {
            color: rgba(255, 255, 255, 0.8);
            font-size: clamp(0.8rem, 1.5vw, 0.95rem);
        }

        /* ========== STATS SECTION - Minimalist Design ========== */
        .stats-section {
            background: var(--dark-bg);
            padding: clamp(3rem, 8vw, 5rem) 0;
            position: relative;
            overflow: hidden;
            scroll-margin-top: 100px;
        }

        .stat-card {
            background: rgba(26, 26, 26, 0.4);
            backdrop-filter: blur(10px);
            padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
            border-radius: var(--card-radius-small);
            border: 1px solid rgba(255, 215, 0, 0.1);
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .stat-card:hover::before {
            width: 500px;
            height: 500px;
        }

        .stat-card:hover {
            transform: translateY(-8px) scale(1.03);
            border-color: rgba(255, 215, 0, 0.35);
            box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(255, 215, 0, 0.2);
        }

        .stat-icon {
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--accent-gold);
            margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            position: relative;
            z-index: 1;
        }

        .stat-card:hover .stat-icon {
            transform: scale(1.2) rotateY(360deg);
            filter: drop-shadow(0 0 20px var(--accent-gold));
        }

        .stat-number {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1.75rem, 4vw, 2.75rem);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }

        .stat-title {
            color: rgba(255, 255, 255, 0.6);
            font-size: clamp(0.8rem, 1.5vw, 0.95rem);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        /* ========== SECTION TITLES - Minimalist ========== */
        section h2 {
            font-family: 'Inter', sans-serif;
            color: #ffffff;
            font-weight: 700;
            font-size: clamp(1.5rem, 4vw, 2.25rem);
            margin-bottom: clamp(2rem, 5vw, 3rem);
            text-align: center;
            position: relative;
            padding-bottom: clamp(0.75rem, 2vw, 1rem);
        }

        section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(40px, 10vw, 80px);
            height: 2px;
            background: var(--accent-gold);
            border-radius: 1px;
        }

        /* ========== FOOTER MENU ========== */
        .footer-menu li {
            margin-bottom: 0.6rem;
        }

        .footer-menu a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
        }

        .footer-menu a i {
            color: var(--accent-gold);
            font-size: 0.65rem;
            width: auto;
            margin-right: 0.4rem;
            transition: transform 0.25s ease;
        }

        .footer-menu a:hover {
            color: var(--accent-gold);
            padding-left: 4px;
        }

        .footer-menu a:hover i {
            transform: translateX(3px);
        }

        /* ========== FOOTER - Premium Design ========== */
        .footer {
            background: linear-gradient(180deg, var(--dark-secondary) 0%, #000000 50%, var(--dark-secondary) 100%);
            padding: clamp(4rem, 10vw, 6rem) 0 clamp(2rem, 5vw, 3rem);
            margin-top: clamp(4rem, 10vw, 6rem);
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
            box-shadow: 0 0 20px var(--accent-gold);
        }

        .footer h5 {
            font-family: var(--font-heading);
            color: var(--accent-gold);
            font-weight: 700;
            margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent-gold);
            border-radius: 1px;
        }

        .footer p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
        }

        .footer i {
            color: var(--accent-gold);
            margin-right: 0.5rem;
            width: 20px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: clamp(45px, 6vw, 50px);
            height: clamp(45px, 6vw, 50px);
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.2);
            border-radius: 50%;
            color: var(--accent-gold);
            transition: all var(--transition);
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--accent-gold);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .social-links a:hover::before {
            width: 100px;
            height: 100px;
        }

        .social-links a:hover {
            background: var(--accent-gold);
            color: var(--primary-color);
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
            border-color: var(--accent-gold-light);
        }

        .social-links a i {
            position: relative;
            z-index: 1;
            margin: 0;
        }

        /* ========== WHATSAPP BUTTON - Premium Floating ========== */
        .whatsapp-button {
            position: fixed;
            bottom: clamp(20px, 5vw, 30px);
            right: clamp(20px, 5vw, 30px);
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
            width: clamp(55px, 8vw, 65px);
            height: clamp(55px, 8vw, 65px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(26px, 4vw, 32px);
            box-shadow: 
                0 8px 25px rgba(37, 211, 102, 0.5),
                0 0 0 3px rgba(255, 255, 255, 0.1),
                0 0 30px rgba(37, 211, 102, 0.3);
            transition: all var(--transition);
            z-index: 1000;
            border: 3px solid rgba(255, 255, 255, 0.2);
            animation: float 3s ease-in-out infinite;
        }

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

        .whatsapp-button:hover {
            transform: scale(1.15) rotate(10deg) translateY(-5px);
            box-shadow: 
                0 12px 35px rgba(37, 211, 102, 0.7),
                0 0 0 4px rgba(255, 255, 255, 0.2),
                0 0 50px rgba(37, 211, 102, 0.5);
            color: white;
            animation: none;
        }

        .whatsapp-button::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.8);
                opacity: 0;
            }
        }

        /* ========== SECTION PADDING - Minimalist ========== */
        section {
            padding: var(--section-padding) 0;
            scroll-margin-top: 100px; /* Navbar için scroll offset */
        }

        /* ========== Tema uyumlu: sade üst/alt çizgi + hafif arka plan farklılıkları ========== */
        .section-altin-cerceve {
            position: relative;
            overflow: hidden;
            padding: clamp(3rem, 8vw, 5rem) 0;
        }

        /* Üst ve alt kenarda ince altın çizgi (tema gibi minimal) */
        .section-altin-cerceve::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 20%, rgba(255, 215, 0, 0.5) 50%, rgba(255, 215, 0, 0.3) 80%, transparent 100%);
            pointer-events: none;
            z-index: 1;
        }

        .section-altin-cerceve::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 20%, rgba(255, 215, 0, 0.5) 50%, rgba(255, 215, 0, 0.3) 80%, transparent 100%);
            pointer-events: none;
            z-index: 1;
        }

        .section-altin-cerceve .container {
            position: relative;
            z-index: 1;
        }

        /* ---------- Neden Biz: Tema renkleri + çok hafif altın vurgu ---------- */
        .section-bg-vintage {
            background: var(--dark-bg-gradient);
        }

        .section-bg-vintage .container {
            position: relative;
        }

        .section-bg-vintage .container::before {
            content: '';
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        /* ---------- İstatistikler: Tema renkleri + hafif ambient glow ---------- */
        .section-bg-geometric {
            background: var(--dark-bg-gradient);
        }

        .section-bg-geometric .container {
            position: relative;
        }

        .section-bg-geometric .container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 60%;
            background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        /* ---------- Öne Çıkan İlanlar: Tema renkleri + hafif merkez ışığı ---------- */
        #featured.section-bg-soft {
            background: var(--dark-bg-gradient);
        }

        .section-bg-soft .container {
            position: relative;
        }

        .section-bg-soft .container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: 900px;
            height: 80%;
            background: radial-gradient(ellipse 100% 70% at center, rgba(255, 215, 0, 0.03) 0%, transparent 65%);
            pointer-events: none;
            z-index: 0;
        }

        /* ========== RESPONSIVE DESIGN - Mobile First ========== */

        /* ── Mobil Animasyonlar ── */
        @keyframes mobileSlideUp {
            from { opacity: 0; transform: translateY(18px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes mobileFadeIn {
            from { opacity: 0; transform: scale(0.96); }
            to   { opacity: 1; transform: scale(1); }
        }
        @keyframes mobilePulseGold {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
            50%       { box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.18); }
        }

        /* ── Ortak Mobil (<768px) ── */
        @media (max-width: 767.98px) {
            /* Genel section padding küçültme */
            section {
                padding: 1.75rem 0 !important;
            }
            section.py-5 {
                padding-top: 1.75rem !important;
                padding-bottom: 1.75rem !important;
            }

            /* Section başlıkları daha küçük */
            section h2,
            .section-title {
                font-size: clamp(1.15rem, 4.5vw, 1.5rem) !important;
                margin-bottom: 1.1rem !important;
                padding-bottom: 0.6rem !important;
            }

            /* Hero daha kompakt */
            .hero-section,
            .hero-section .hero-swiper,
            .hero-section .swiper {
                min-height: 42vh !important;
                min-height: 45dvh !important;
            }
            .hero-section .swiper-slide {
                padding: 4.5rem 3.5rem 3rem !important;
            }
            .hero-panel-ers .hero-panel-ers-title {
                font-size: clamp(1.35rem, 5.5vw, 2rem) !important;
            }
            .hero-panel-ers .hero-panel-ers-lead {
                font-size: 0.88rem !important;
                margin-bottom: 1rem !important;
            }
            .hero-section .btn-primary,
            .hero-section .btn-lg {
                padding: 0.65rem 1.5rem !important;
                font-size: 0.85rem !important;
            }
            /* Hero parçacıklar mobilde küçük */
            .hero-section::before {
                background-size: 80px 80px, 55px 55px, 100px 100px;
            }
            .hero-section::after {
                background-size: 65px 65px, 95px 95px;
            }

            /* Neden Biz kart kompakt */
            .avantaj-card {
                padding: 0.9rem 0.75rem !important;
                border-radius: 12px !important;
                animation: mobileFadeIn 0.5s ease-out both;
            }
            .avantaj-card-icon {
                width: 2rem !important;
                height: 2rem !important;
                font-size: 1.1rem !important;
                margin-bottom: 0.5rem !important;
            }
            .avantaj-card-title {
                font-size: 0.8rem !important;
                margin-bottom: 0.3rem !important;
            }
            .avantaj-card-text {
                font-size: 0.72rem !important;
                line-height: 1.4 !important;
            }

            /* İstatistik kartları kompakt — 3 yan yana */
            .stat-card {
                padding: 0.85rem 0.5rem !important;
                border-radius: 12px !important;
                animation: mobilePulseGold 3s ease-in-out infinite;
            }
            .stat-icon {
                font-size: 1.35rem !important;
                margin-bottom: 0.4rem !important;
            }
            .stat-number {
                font-size: 1.25rem !important;
                margin-bottom: 0.2rem !important;
            }
            .stat-title {
                font-size: 0.65rem !important;
                letter-spacing: 0.5px !important;
            }
            .stats-section {
                padding: 1.5rem 0 !important;
            }
            .stats-section .col-4 {
                padding-left: 0.35rem !important;
                padding-right: 0.35rem !important;
            }

            /* Hakkımızda section: sol kolon tam genişlik */
            #hakkimizda-ozet .col-lg-6:first-child > div {
                padding: 1rem !important;
            }
            #hakkimizda-ozet .col-lg-6:first-child h2 {
                font-size: 1.2rem !important;
            }
            #hakkimizda-ozet .col-lg-6:first-child p {
                font-size: 0.82rem !important;
                line-height: 1.55 !important;
            }
            /* Özellik kutuları kompakt */
            #hakkimizda-ozet .col-6 > div {
                padding: 0.85rem 0.7rem !important;
                border-radius: 10px !important;
            }
            #hakkimizda-ozet .col-6 > div > div:first-child {
                width: 40px !important;
                height: 40px !important;
                margin-bottom: 0.5rem !important;
            }
            #hakkimizda-ozet .col-6 > div > div:first-child i {
                font-size: 1.2rem !important;
            }
            #hakkimizda-ozet .col-6 h4 {
                font-size: 0.82rem !important;
                margin-bottom: 0.25rem !important;
            }
            #hakkimizda-ozet .col-6 p {
                font-size: 0.7rem !important;
            }

            /* Hizmetlerimiz kartları kompakt */
            #hizmetlerimiz .avantaj-card h3 {
                font-size: 0.82rem !important;
                margin-bottom: 0.5rem !important;
            }
            #hizmetlerimiz .avantaj-card ul li {
                font-size: 0.72rem !important;
                line-height: 1.6 !important;
            }
            #hizmetlerimiz .avantaj-card ul li i {
                font-size: 0.65rem !important;
                margin-right: 0.3rem !important;
            }
            #hizmetlerimiz .text-center p {
                font-size: 0.85rem !important;
            }
            #hizmetlerimiz .mt-5 {
                margin-top: 1.25rem !important;
            }
            #hizmetlerimiz .btn-lg {
                padding: 0.65rem 1.5rem !important;
                font-size: 0.85rem !important;
            }

            /* Genel row gap azaltma */
            .row.g-4 {
                --bs-gutter-x: 0.6rem;
                --bs-gutter-y: 0.6rem;
            }
            .row.g-3 {
                --bs-gutter-x: 0.5rem;
                --bs-gutter-y: 0.5rem;
            }

            /* Footer kompakt */
            .footer {
                padding: 2rem 0 1.25rem !important;
                margin-top: 1.5rem !important;
            }
            .footer h5 {
                font-size: 1rem !important;
                margin-bottom: 0.75rem !important;
            }
            .footer p {
                font-size: 0.82rem !important;
            }
            .footer-menu a {
                font-size: 0.82rem !important;
            }

            /* Butona dokunuş animasyonu */
            .btn-primary:active,
            .btn-success:active,
            .btn-outline-warning:active {
                transform: scale(0.96) !important;
                transition: transform 0.1s ease !important;
            }

            /* WhatsApp butonu daha küçük mobilde */
            .whatsapp-button {
                width: 50px !important;
                height: 50px !important;
                font-size: 22px !important;
                bottom: 16px !important;
                right: 16px !important;
            }
        }

        /* ── Extra Küçük (<576px) ── */
        @media (max-width: 575.98px) {
            section {
                padding: 1.4rem 0 !important;
            }
            section.py-5 {
                padding-top: 1.4rem !important;
                padding-bottom: 1.4rem !important;
            }

            /* Hero çok küçük ekran */
            .hero-section,
            .hero-section .hero-swiper,
            .hero-section .swiper {
                min-height: 38vh !important;
                min-height: 40dvh !important;
            }
            /* Çok küçük ekranda da ok alanını koru */
            .hero-section .swiper-slide {
                padding-left: 3rem !important;
                padding-right: 3rem !important;
            }
            .hero-panel-ers .hero-panel-ers-title {
                font-size: clamp(1.15rem, 5vw, 1.6rem) !important;
            }

            /* Avantaj kartları daha da kompakt */
            .avantaj-card {
                padding: 0.75rem 0.6rem !important;
            }
            .avantaj-card-title {
                font-size: 0.75rem !important;
            }
            .avantaj-card-text {
                font-size: 0.68rem !important;
            }

            /* Stats 3 kolon küçük */
            .stat-number {
                font-size: 1.1rem !important;
            }
            .stat-icon {
                font-size: 1.1rem !important;
            }
            .stat-title {
                font-size: 0.58rem !important;
            }

            /* row gap daha da küçük */
            .row.g-4 {
                --bs-gutter-x: 0.35rem;
                --bs-gutter-y: 0.45rem;
            }
        }

        /* Medium Devices (tablets, 768px and up) */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .hero-section {
                padding: clamp(8rem, 12vw, 10rem) 0 clamp(5rem, 8vw, 6rem);
            }
            .property-card {
                margin-bottom: 2rem;
            }
        }

        /* Large Devices (desktops, 992px and up) */
        @media (min-width: 992px) {
            .hero-section .row {
                align-items: center;
            }
        }

        /* Extra Large Devices (large desktops, 1200px and up) */
        @media (min-width: 1200px) {
            .container {
                max-width: 1140px;
            }
        }

        /* Ultra Wide Screens */
        @media (min-width: 1400px) {
            .container {
                max-width: 1320px;
            }
        }

        /* Touch Device Optimizations */
        @media (hover: none) and (pointer: coarse) {
            .property-card:hover {
                transform: none;
            }
            .stat-card:hover {
                transform: none;
            }
            .nav-link:hover {
                transform: none;
            }
        }

        /* Print Styles */
        @media print {
            .navbar,
            .whatsapp-button,
            .footer {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
        }

        /* ========== BUTTONS - Premium Design ========== */
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-hover)) !important;
            border: 2px solid var(--accent-gold) !important;
            border-color: var(--accent-gold) !important;
            color: #fff !important;
            padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
            border-radius: 50px;
            font-weight: 700;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 
                0 4px 15px rgba(255, 215, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
            transform: translate(-50%, -50%);
            transition: width 0.8s, height 0.8s;
        }

        .btn-primary:hover::before {
            width: 400px;
            height: 400px;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-hover), var(--primary-color)) !important;
            border-color: var(--accent-gold-light) !important;
            color: #fff !important;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 
                0 8px 25px rgba(255, 215, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 30px rgba(255, 215, 0, 0.3);
        }

        .btn-primary:active {
            transform: translateY(-1px) scale(1);
        }

        .btn-success {
            background: linear-gradient(135deg, var(--success-color), var(--success-hover)) !important;
            border: 2px solid var(--success-color) !important;
            border-color: var(--success-color) !important;
            color: #fff !important;
            padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
            border-radius: 50px;
            font-weight: 700;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
            transition: all var(--transition);
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }

        .btn-success:hover {
            background: linear-gradient(135deg, var(--success-hover), var(--success-color)) !important;
            border-color: #1e7e34 !important;
            color: #fff !important;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
        }

        .btn-lg {
            padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2rem, 5vw, 2.5rem);
            font-size: clamp(1rem, 2vw, 1.2rem);
        }

        /* ========== VIDEO CARD STYLES ========== */
        .video-card {
            background: transparent;
            border-radius: 24px;
            overflow: visible;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            max-width: 400px;
            margin: 0 auto;
            padding: 6px;
            position: relative;
            /* GPU katmanına al - hover transform için */
            will-change: transform;
            /* Repaint alanını bu kartla sınırla */
            contain: layout style;
        }

        /* Lüks altın çerçeve - statik gradient border */
        .video-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 4px;
            background: linear-gradient(
                135deg,
                #FFD700 0%,
                #FFA500 30%,
                #FFD700 60%,
                #FFA500 100%
            );
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: 0;
            /* Statik box-shadow - animasyon yok, repaint yok */
            box-shadow: 
                0 0 25px rgba(255, 215, 0, 0.55),
                0 0 55px rgba(255, 215, 0, 0.30);
        }

        /* Glow katmanı: sadece opacity animasyonu = GPU compositor, sıfır repaint */
        .video-card::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 26px;
            background: transparent;
            box-shadow: 
                0 0 40px rgba(255, 215, 0, 0.75),
                0 0 80px rgba(255, 215, 0, 0.45),
                0 0 110px rgba(255, 215, 0, 0.20);
            z-index: -1;
            pointer-events: none;
            /* Yalnızca opacity animasyonu → GPU tarafından bileştirilir, repaint olmaz */
            will-change: opacity;
            animation: videoGlow 3s ease-in-out infinite alternate;
        }

        @keyframes videoGlow {
            0%   { opacity: 0.60; }
            100% { opacity: 1.00; }
        }

        .video-card:hover::after {
            opacity: 1;
            animation: none;
            box-shadow: 
                0 0 50px rgba(255, 215, 0, 0.90),
                0 0 100px rgba(255, 215, 0, 0.65),
                0 0 140px rgba(255, 215, 0, 0.35);
        }

        .video-card:hover {
            transform: translateY(-12px) scale(1.04);
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 177.78%; /* 9:16 dikey format */
            height: 0;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
            border-radius: 20px;
            z-index: 1;
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.6),
                inset 0 2px 4px rgba(255, 255, 255, 0.05),
                inset 0 -2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .video-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            background: linear-gradient(
                135deg,
                rgba(255, 215, 0, 0.1) 0%,
                transparent 50%,
                rgba(255, 215, 0, 0.1) 100%
            );
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 2;
        }
        
        .video-card:hover .video-wrapper::after {
            opacity: 1;
        }
        
        .lazy-load-iframe:not([src]) {
            opacity: 0;
        }
        
        .lazy-load-iframe[src],
        .video-player[src] {
            opacity: 1;
            transition: opacity 0.3s ease;
        }
        
        /* Mobilde videolar hemen görünür olmalı */
        @media (max-width: 768px) {
            .video-player {
                opacity: 1 !important;
            }
        }
        
        .video-wrapper iframe {
            pointer-events: auto; /* Her zaman tıklanabilir olmalı */
        }
        
        /* Desktop'ta kontrolleri CSS ile gizle (controls=0 ile birlikte) */
        @media (min-width: 769px) {
            .video-wrapper iframe {
                /* Desktop'ta kontroller zaten embed URL'de controls=0 ile gizli */
            }
        }
        
        /* Mobilde kontrolleri görünür bırak ama küçült */
        @media (max-width: 768px) {
            .video-wrapper iframe {
                pointer-events: auto; /* Mobilde tıklanabilir */
            }
        }

        .video-player {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Yerel videolar - sesiz, otomatik, tıklanamaz (sabit) */
        .video-player-local {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none !important;
            user-select: none;
            /* Kendi compositor katmanına al → video decode ve render izole olur */
            transform: translateZ(0);
            will-change: transform;
            /* Başlangıçta gizli – IntersectionObserver görünce oynatır */
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .video-player-local.video-visible {
            opacity: 1;
        }


        @media (max-width: 768px) {
            .video-card {
                margin-bottom: 0;
                max-width: 100%;
            }
            .video-wrapper {
                padding-bottom: 177.78%;
            }
        }

        /* ═══════════════════════════════════════════
           MOBİL STICKY BOTTOM BAR
        ═══════════════════════════════════════════ */
        /* ── Mobil Sticky Bar — siyah/altın tema ── */
        .mobile-sticky-bar {
            position: fixed;
            bottom: 0; left: 0; right: 0;
            z-index: 1040;
            display: flex;
            align-items: stretch;
            height: 58px;
            background: rgba(8, 8, 8, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 215, 0, 0.35);
            box-shadow: 0 -8px 32px rgba(0,0,0,0.8);
        }
        .mobile-sticky-wa,
        .mobile-sticky-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            text-decoration: none;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            -webkit-tap-highlight-color: transparent;
            transition: background 0.12s ease;
            padding: 0 0.85rem;
            position: relative;
        }
        /* WhatsApp — koyu zemin, WA yeşil ikon + beyaz yazı */
        .mobile-sticky-wa {
            flex: 1;
            color: rgba(255, 255, 255, 0.8);
            border-right: 1px solid rgba(255, 215, 0, 0.2);
        }
        .mobile-sticky-wa i {
            font-size: 1.4rem;
            color: #25d366;
            flex-shrink: 0;
        }
        .mobile-sticky-wa:active { background: rgba(255,255,255,0.05); }
        /* Değerini Öğren — altın metin + ikon, ince üst accent çizgi */
        .mobile-sticky-cta {
            flex: 1.35;
            color: #FFD700;
        }
        .mobile-sticky-cta i {
            font-size: 1.2rem;
            color: #FFD700;
            flex-shrink: 0;
        }
        /* CTA üstünde ince altın accent şeridi */
        .mobile-sticky-cta::before {
            content: '';
            position: absolute;
            top: 0; left: 18%; right: 18%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #FFD700, transparent);
            border-radius: 0 0 3px 3px;
            box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
        }
        .mobile-sticky-cta:active { background: rgba(255, 215, 0, 0.07); color: #FFD700; }

        /* ═══════════════════════════════════════════
           VİDEO BÖLÜMÜ — MOBİLDE YATAY CAROUSEL
        ═══════════════════════════════════════════ */

        /* Scroll wrapper: overflow-x scroll + üst/alt padding için sarmalayıcı div */
        .video-carousel-wrap {
            overflow-x: auto;
            overflow-y: visible;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            /* padding: çerçeve/glow'un kırpılmaması için */
            padding: 14px 4px 12px;
            margin: 0 -4px;
        }
        .video-carousel-wrap::-webkit-scrollbar { display: none; }

        @media (max-width: 767.98px) {
            /* Row'a overflow değil, wrapper'a overflow veriyoruz */
            #featured .video-carousel-row {
                flex-wrap: nowrap;
                /* Gutter sıfırla */
                --bs-gutter-x: 0.65rem;
                --bs-gutter-y: 0;
                /* inline-flex yapısını koru — wrapper scroll alır */
                width: max-content;
                min-width: 100%;
            }
            #featured .video-carousel-row > [class*="col-"] {
                flex: 0 0 68vw;
                max-width: 68vw;
                scroll-snap-align: start;
            }
            #featured .video-carousel-row > [class*="col-"]:last-child {
                padding-right: 1rem;
            }
            /* video-card: contain kaldır — glow dışarı taşsın */
            #featured .video-card {
                contain: none !important;
            }
            /* Kaydır ipucu */
            #featured .video-scroll-hint {
                display: block;
                text-align: center;
                color: rgba(255,215,0,0.55);
                font-size: 0.7rem;
                margin-top: 0.4rem;
                letter-spacing: 1.5px;
                animation: hintFade 2s ease-in-out 1s both;
            }
            @keyframes hintFade {
                0%   { opacity: 0; }
                30%  { opacity: 1; }
                80%  { opacity: 1; }
                100% { opacity: 0.4; }
            }
        }
        @media (min-width: 768px) {
            #featured .video-scroll-hint { display: none !important; }
        }

        /* ═══════════════════════════════════════════
           FOOTER — MOBİLDE ACCORDION
        ═══════════════════════════════════════════ */
        @media (max-width: 767.98px) {
            .footer-col-toggle h5 {
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: space-between;
                user-select: none;
                -webkit-tap-highlight-color: transparent;
            }
            .footer-col-toggle h5::after {
                content: '+';
                font-size: 1.3rem;
                font-weight: 400;
                color: var(--accent-gold);
                font-family: var(--font-body);
                transition: transform 0.3s ease;
                line-height: 1;
                flex-shrink: 0;
            }
            .footer-col-toggle.open h5::after {
                transform: rotate(45deg);
            }
            .footer-accordion-content {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
            }
            .footer-accordion-content.open {
                max-height: 600px;
            }
        }

        /* ═══════════════════════════════════════════
           HAKKIMIZDA — MOBİLDE SOL KOLON GİZLE
        ═══════════════════════════════════════════ */
        @media (max-width: 767.98px) {
            #hakkimizda-ozet .col-lg-6.mb-4.mb-lg-0 {
                display: none !important;
            }
            #hakkimizda-ozet .col-lg-6:last-child {
                width: 100% !important;
                max-width: 100% !important;
                flex: 0 0 100% !important;
            }
        }

        /* ═══════════════════════════════════════════
           MOBİLDE BODY PADDING (sticky bar için)
        ═══════════════════════════════════════════ */
        @media (max-width: 767.98px) {
            body { padding-bottom: 60px !important; }
            /* WhatsApp floating butonu sticky bar'ın üstüne çık */
            .whatsapp-button {
                bottom: 76px !important;
            }
        }

        /* ═══════════════════════════════════════════
           ANA SAYFA 2026 - CRM LANDING
        ═══════════════════════════════════════════ */
        .home-modern-page {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 10% 8%, rgba(255, 215, 0, 0.12), transparent 28%),
                radial-gradient(circle at 92% 18%, rgba(255, 215, 0, 0.08), transparent 26%),
                var(--dark-bg-gradient);
        }

        .home-modern-page h1,
        .home-modern-page h2,
        .home-modern-page h3,
        .home-modern-page p {
            margin-top: 0;
        }

        .home-modern-page h2::after,
        .home-modern-page h1::after {
            display: none !important;
        }

        .home-section {
            position: relative;
            padding: clamp(4rem, 8vw, 6.5rem) 0;
        }

        .home-hero-section {
            position: relative;
            min-height: 88vh;
            display: flex;
            align-items: center;
            padding: clamp(7.5rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
            overflow: hidden;
        }

        .home-hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 18% 20%, rgba(255, 215, 0, 0.16), transparent 26%),
                radial-gradient(circle at 84% 32%, rgba(255, 215, 0, 0.10), transparent 24%),
                linear-gradient(120deg, rgba(0, 0, 0, 0.92) 0%, rgba(18, 18, 18, 0.86) 48%, rgba(0, 0, 0, 0.94) 100%);
            transform: scale(1.02);
            z-index: 0;
        }

        .home-hero-section::after {
            content: '';
            position: absolute;
            inset: auto 0 0;
            height: 180px;
            background: linear-gradient(to top, var(--dark-bg), transparent);
            z-index: 0;
            pointer-events: none;
        }

        .home-hero-section .container {
            position: relative;
            z-index: 1;
        }

        .home-eyebrow,
        .home-section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            width: fit-content;
            margin-bottom: 1rem;
            padding: 0.45rem 0.8rem;
            border: 1px solid rgba(255, 215, 0, 0.28);
            border-radius: 999px;
            background: rgba(255, 215, 0, 0.08);
            color: var(--accent-gold);
            font-size: 0.76rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .home-hero-copy h1 {
            max-width: 720px;
            color: #fff;
            font-family: var(--font-body);
            font-size: clamp(2.45rem, 6vw, 5.4rem);
            line-height: 0.98;
            font-weight: 900;
            letter-spacing: -0.06em;
            margin-bottom: 1.35rem;
        }

        .home-hero-copy p {
            max-width: 650px;
            color: rgba(255, 255, 255, 0.78);
            font-size: clamp(1rem, 1.6vw, 1.2rem);
            line-height: 1.75;
            margin-bottom: 1.6rem;
        }

        .home-hero-actions {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.9rem;
            margin-bottom: 1.35rem;
        }

        .home-outline-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 52px;
            padding: 0.85rem 1.45rem;
            border: 1px solid rgba(255, 215, 0, 0.35);
            border-radius: 999px;
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
            text-decoration: none;
            font-weight: 800;
            transition: transform var(--transition), border-color var(--transition), background var(--transition);
        }

        .home-outline-btn:hover {
            color: var(--accent-gold);
            border-color: rgba(255, 215, 0, 0.72);
            background: rgba(255, 215, 0, 0.1);
            transform: translateY(-2px);
        }

        .home-proof-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
        }

        .home-proof-row span {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.48rem 0.72rem;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.38);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.82rem;
            font-weight: 700;
        }

        .home-proof-row i {
            color: var(--accent-gold);
        }

        .home-dashboard-preview {
            position: relative;
            padding: clamp(1.2rem, 3vw, 1.8rem);
            border: 1px solid rgba(255, 215, 0, 0.22);
            border-radius: 32px;
            background:
                radial-gradient(circle at top left, rgba(255, 215, 0, 0.18), transparent 34%),
                linear-gradient(145deg, rgba(18, 18, 18, 0.9), rgba(4, 4, 4, 0.86));
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(18px);
        }

        .home-dashboard-preview::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            background: linear-gradient(145deg, rgba(255, 215, 0, 0.35), transparent 36%, rgba(255, 215, 0, 0.15));
            opacity: 0.65;
            z-index: -1;
        }

        .home-dashboard-top,
        .home-contract-strip,
        .home-payment-line {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .home-dashboard-top {
            margin-bottom: 1.2rem;
        }

        .home-dashboard-top span,
        .home-contract-strip span {
            display: block;
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.78rem;
        }

        .home-dashboard-top strong,
        .home-contract-strip strong {
            display: block;
            color: #fff;
            font-size: 1.05rem;
        }

        .home-dashboard-top a,
        .home-card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 800;
        }

        .home-dashboard-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.85rem;
            margin-bottom: 1rem;
        }

        .home-dashboard-grid article,
        .home-feature-card,
        .home-integration-card,
        .home-flow-item,
        .home-empty-listing,
        .home-cta-box {
            border: 1px solid rgba(255, 215, 0, 0.16);
            background: rgba(255, 255, 255, 0.055);
            box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(14px);
        }

        .home-dashboard-grid article {
            min-height: 150px;
            padding: 1rem;
            border-radius: 22px;
        }

        .home-dashboard-grid i {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            border-radius: 14px;
            background: rgba(255, 215, 0, 0.13);
            color: var(--accent-gold);
            font-size: 1.15rem;
        }

        .home-dashboard-grid span {
            display: block;
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.76rem;
            margin-bottom: 0.25rem;
        }

        .home-dashboard-grid strong {
            color: #fff;
            font-size: 0.98rem;
        }

        .home-contract-strip {
            margin-bottom: 0.85rem;
            padding: 1rem;
            border-radius: 22px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.16), rgba(255, 255, 255, 0.045));
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .home-contract-icon {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            border-radius: 18px;
            background: linear-gradient(135deg, #FFD700, #ffb000);
            color: #111;
            font-size: 1.35rem;
        }

        .home-payment-line {
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        .home-payment-line span {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.45rem 0.65rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.07);
            color: rgba(255, 255, 255, 0.74);
            font-size: 0.78rem;
            font-weight: 700;
        }

        .home-payment-line i {
            color: var(--accent-gold);
        }

        .home-section-head {
            max-width: 760px;
            margin: 0 auto 2.8rem;
            text-align: center;
        }

        .home-section-head .home-section-kicker {
            margin-left: auto;
            margin-right: auto;
        }

        .home-section-head h2,
        .home-left-title,
        .home-cta-box h2 {
            color: #fff;
            font-family: var(--font-body);
            font-size: clamp(2rem, 4.5vw, 3.5rem);
            line-height: 1.05;
            font-weight: 900;
            letter-spacing: -0.045em;
            margin-bottom: 1rem;
            padding-bottom: 0;
        }

        .home-section-head p,
        .home-left-text,
        .home-cta-box p {
            color: rgba(255, 255, 255, 0.67);
            font-size: 1rem;
            line-height: 1.75;
        }

        .home-feature-section,
        .home-integrations-section {
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.9));
        }

        .home-feature-card {
            position: relative;
            min-height: 280px;
            height: 100%;
            padding: 1.45rem;
            border-radius: 26px;
            overflow: hidden;
            transition: transform var(--transition), border-color var(--transition), background var(--transition);
        }

        .home-feature-card::after {
            content: '';
            position: absolute;
            inset: auto -20% -45% -20%;
            height: 150px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.12), transparent 68%);
            pointer-events: none;
        }

        .home-feature-card:hover,
        .home-integration-card:hover,
        .home-flow-item:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 215, 0, 0.42);
            background: rgba(255, 255, 255, 0.075);
        }

        .home-feature-icon {
            width: 58px;
            height: 58px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            border-radius: 20px;
            background: rgba(255, 215, 0, 0.13);
            color: var(--accent-gold);
            font-size: 1.45rem;
        }

        .home-feature-card h3,
        .home-integration-card h3,
        .home-flow-item h3 {
            color: #fff;
            font-size: 1.12rem;
            font-weight: 800;
            margin-bottom: 0.7rem;
        }

        .home-feature-card p,
        .home-integration-card p,
        .home-flow-item p {
            color: rgba(255, 255, 255, 0.64);
            font-size: 0.93rem;
            line-height: 1.65;
            margin-bottom: 0;
        }

        .home-flow-section {
            background:
                radial-gradient(circle at 15% 45%, rgba(255, 215, 0, 0.08), transparent 28%),
                var(--dark-bg);
        }

        .home-flow-list {
            display: grid;
            gap: 1rem;
        }

        .home-flow-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.25rem;
            border-radius: 24px;
            transition: transform var(--transition), border-color var(--transition), background var(--transition);
        }

        .home-flow-item > span {
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            border-radius: 16px;
            background: linear-gradient(135deg, #FFD700, #ffb000);
            color: #111;
            font-weight: 900;
        }

        .home-integration-card {
            min-height: 230px;
            height: 100%;
            padding: 1.3rem;
            border-radius: 24px;
            transition: transform var(--transition), border-color var(--transition), background var(--transition);
        }

        .home-integration-card > i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            margin-bottom: 1rem;
            border-radius: 18px;
            background: rgba(255, 215, 0, 0.12);
            color: var(--accent-gold);
            font-size: 1.25rem;
        }

        .home-listing-section {
            background:
                radial-gradient(circle at 85% 18%, rgba(255, 215, 0, 0.08), transparent 26%),
                linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(4, 4, 4, 0.98));
        }

        .home-property-card {
            display: flex;
            flex-direction: column;
            border-radius: 28px !important;
            overflow: hidden;
        }

        .home-property-card .property-image {
            height: 250px;
        }

        .home-property-card .property-content {
            flex: 1;
        }

        .home-property-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 0.2rem 0 1.1rem;
        }

        .home-property-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.38rem 0.55rem;
            border-radius: 999px;
            color: rgba(255, 255, 255, 0.76);
            background: rgba(255, 255, 255, 0.07);
            font-size: 0.78rem;
            font-weight: 700;
        }

        .home-card-link {
            margin-top: auto;
        }

        .home-empty-listing,
        .home-cta-box {
            max-width: 820px;
            margin: 0 auto;
            padding: clamp(1.5rem, 4vw, 2.4rem);
            border-radius: 30px;
            text-align: center;
        }

        .home-empty-listing > i {
            color: var(--accent-gold);
            font-size: 2.4rem;
            margin-bottom: 1rem;
        }

        .home-empty-listing h3 {
            color: #fff;
            font-weight: 850;
        }

        .home-empty-listing p {
            color: rgba(255, 255, 255, 0.68);
        }

        .home-cta-section {
            padding: clamp(3.5rem, 7vw, 5.5rem) 0;
            background:
                radial-gradient(circle at center, rgba(255, 215, 0, 0.12), transparent 42%),
                var(--dark-bg);
        }

        .home-cta-box {
            border-color: rgba(255, 215, 0, 0.28);
            background:
                linear-gradient(145deg, rgba(255, 215, 0, 0.14), rgba(255, 255, 255, 0.055)),
                rgba(10, 10, 10, 0.78);
        }

        .home-cta-box .home-section-kicker {
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 991.98px) {
            .home-hero-section {
                min-height: auto;
                padding-top: 7rem;
            }

            .home-dashboard-preview {
                margin-top: 0.5rem;
            }
        }

        @media (max-width: 767.98px) {
            .home-section {
                padding: 2.6rem 0 !important;
            }

            .home-hero-section {
                padding: 6.5rem 0 3rem !important;
            }

            .home-hero-copy h1 {
                font-size: clamp(2rem, 11vw, 3.25rem);
                line-height: 1.02;
            }

            .home-hero-copy p {
                font-size: 0.94rem;
            }

            .home-hero-actions,
            .home-proof-row {
                align-items: stretch;
            }

            .home-hero-actions .btn,
            .home-hero-actions .home-outline-btn {
                width: 100%;
            }

            .home-dashboard-grid {
                grid-template-columns: 1fr;
            }

            .home-dashboard-grid article {
                min-height: auto;
            }

            .home-contract-strip {
                align-items: flex-start;
            }

            .home-section-head {
                margin-bottom: 1.6rem;
            }

            .home-section-head h2,
            .home-left-title,
            .home-cta-box h2 {
                font-size: clamp(1.55rem, 8vw, 2.15rem) !important;
            }

            .home-feature-card,
            .home-integration-card,
            .home-flow-item {
                min-height: auto;
                border-radius: 20px;
            }

            .home-flow-item {
                flex-direction: column;
            }

            .home-property-card .property-image {
                height: 220px;
            }
        }

        /* Ana sayfa kompakt ölçek: tüm landing içeriği yaklaşık yarı boyuta çekildi. */
        .home-modern-page {
            font-size: 0.82rem;
        }

        .home-modern-page .container {
            max-width: 1040px;
        }

        .home-modern-page .btn,
        .home-modern-page .btn-lg,
        .home-modern-page .home-outline-btn {
            min-height: 34px;
            padding: 0.42rem 0.82rem !important;
            border-radius: 999px;
            font-size: 0.68rem !important;
            letter-spacing: 0.04em;
        }

        .home-section {
            padding: clamp(2rem, 4vw, 3.25rem) 0 !important;
        }

        .home-hero-section {
            min-height: 52vh;
            padding: clamp(4.8rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem) !important;
        }

        .home-eyebrow,
        .home-section-kicker {
            margin-bottom: 0.5rem;
            padding: 0.24rem 0.46rem;
            font-size: 0.52rem;
            gap: 0.28rem;
        }

        .home-hero-copy h1 {
            max-width: 520px;
            font-size: clamp(1.25rem, 3vw, 2.7rem);
            margin-bottom: 0.68rem;
        }

        .home-hero-copy p,
        .home-section-head p,
        .home-left-text,
        .home-cta-box p {
            max-width: 520px;
            font-size: 0.72rem;
            line-height: 1.55;
            margin-bottom: 0.85rem;
        }

        .home-hero-actions {
            gap: 0.45rem;
            margin-bottom: 0.72rem;
        }

        .home-proof-row {
            gap: 0.34rem;
        }

        .home-proof-row span,
        .home-payment-line span,
        .home-property-meta span {
            padding: 0.24rem 0.4rem;
            font-size: 0.56rem;
            gap: 0.24rem;
        }

        .home-dashboard-preview {
            max-width: 430px;
            margin-left: auto;
            padding: 0.8rem;
            border-radius: 18px;
            box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.07);
        }

        .home-dashboard-top {
            margin-bottom: 0.62rem;
        }

        .home-dashboard-top span,
        .home-contract-strip span,
        .home-dashboard-grid span {
            font-size: 0.56rem;
        }

        .home-dashboard-top strong,
        .home-contract-strip strong,
        .home-dashboard-grid strong {
            font-size: 0.7rem;
        }

        .home-dashboard-top a,
        .home-card-link {
            font-size: 0.62rem;
        }

        .home-dashboard-grid {
            gap: 0.46rem;
            margin-bottom: 0.52rem;
        }

        .home-dashboard-grid article {
            min-height: 78px;
            padding: 0.55rem;
            border-radius: 13px;
        }

        .home-dashboard-grid i,
        .home-feature-icon,
        .home-integration-card > i {
            width: 30px;
            height: 30px;
            margin-bottom: 0.52rem;
            border-radius: 10px;
            font-size: 0.82rem;
        }

        .home-contract-strip {
            margin-bottom: 0.48rem;
            padding: 0.56rem;
            border-radius: 13px;
        }

        .home-contract-icon {
            width: 34px;
            height: 34px;
            border-radius: 11px;
            font-size: 0.88rem;
        }

        .home-section-head {
            max-width: 560px;
            margin-bottom: 1.35rem;
        }

        .home-section-head h2,
        .home-left-title,
        .home-cta-box h2 {
            font-size: clamp(1.05rem, 2.4vw, 1.85rem);
            margin-bottom: 0.52rem;
        }

        .home-feature-card,
        .home-integration-card,
        .home-flow-item {
            min-height: 130px;
            padding: 0.78rem;
            border-radius: 15px;
        }

        .home-feature-card h3,
        .home-integration-card h3,
        .home-flow-item h3 {
            font-size: 0.72rem;
            margin-bottom: 0.34rem;
        }

        .home-feature-card p,
        .home-integration-card p,
        .home-flow-item p {
            font-size: 0.62rem;
            line-height: 1.48;
        }

        .home-flow-list {
            gap: 0.52rem;
        }

        .home-flow-item {
            gap: 0.56rem;
        }

        .home-flow-item > span {
            width: 28px;
            height: 28px;
            border-radius: 9px;
            font-size: 0.68rem;
        }

        .home-integration-card {
            min-height: 120px;
        }

        .home-cta-section {
            padding: clamp(1.8rem, 4vw, 2.8rem) 0 !important;
        }

        .home-cta-box {
            max-width: 520px;
            padding: clamp(0.9rem, 2vw, 1.25rem);
            border-radius: 18px;
        }

        @media (max-width: 991.98px) {
            .home-dashboard-preview {
                margin-left: 0;
            }
        }

        @media (max-width: 767.98px) {
            .home-modern-page .container {
                max-width: 100%;
            }

            .home-section {
                padding: 1.45rem 0 !important;
            }

            .home-hero-section {
                padding: 5.2rem 0 1.7rem !important;
            }

            .home-hero-copy h1 {
                font-size: clamp(1.28rem, 7vw, 2rem);
            }

            .home-hero-copy p,
            .home-section-head p,
            .home-left-text,
            .home-cta-box p {
                font-size: 0.68rem;
            }

            .home-dashboard-preview {
                max-width: none;
                padding: 0.68rem;
            }

            .home-dashboard-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .home-dashboard-grid article {
                min-height: 72px;
            }

            .home-section-head h2,
            .home-left-title,
            .home-cta-box h2 {
                font-size: clamp(1rem, 6vw, 1.55rem) !important;
            }
        }

        /* Kompakt görünüm ayarı: önceki yarım ölçeğe göre bir tık daha okunaklı. */
        .home-modern-page {
            font-size: 0.9rem;
        }

        .home-modern-page .btn,
        .home-modern-page .btn-lg,
        .home-modern-page .home-outline-btn {
            min-height: 40px;
            padding: 0.5rem 1rem !important;
            font-size: 0.76rem !important;
        }

        .home-hero-section {
            min-height: 58vh;
            padding-top: clamp(5.2rem, 7.5vw, 6.25rem) !important;
            padding-bottom: clamp(2.35rem, 4.5vw, 3.4rem) !important;
        }

        .home-hero-copy h1 {
            font-size: clamp(1.5rem, 3.35vw, 3.15rem);
        }

        .home-hero-copy p,
        .home-section-head p,
        .home-left-text,
        .home-cta-box p {
            font-size: 0.82rem;
        }

        .home-section {
            padding-top: clamp(2.35rem, 4.6vw, 3.75rem) !important;
            padding-bottom: clamp(2.35rem, 4.6vw, 3.75rem) !important;
        }

        .home-section-head h2,
        .home-left-title,
        .home-cta-box h2 {
            font-size: clamp(1.25rem, 2.75vw, 2.15rem);
        }

        .home-dashboard-preview {
            max-width: 470px;
            padding: 0.95rem;
        }

        .home-dashboard-grid article {
            min-height: 92px;
            padding: 0.68rem;
        }

        .home-dashboard-grid i,
        .home-feature-icon,
        .home-integration-card > i {
            width: 36px;
            height: 36px;
            font-size: 0.95rem;
        }

        .home-feature-card,
        .home-integration-card,
        .home-flow-item {
            min-height: 148px;
            padding: 0.95rem;
        }

        .home-feature-card h3,
        .home-integration-card h3,
        .home-flow-item h3 {
            font-size: 0.84rem;
        }

        .home-feature-card p,
        .home-integration-card p,
        .home-flow-item p {
            font-size: 0.7rem;
        }

        @media (max-width: 767.98px) {
            .home-hero-copy h1 {
                font-size: clamp(1.45rem, 7.8vw, 2.25rem);
            }

            .home-hero-copy p,
            .home-section-head p,
            .home-left-text,
            .home-cta-box p {
                font-size: 0.76rem;
            }

            .home-section-head h2,
            .home-left-title,
            .home-cta-box h2 {
                font-size: clamp(1.18rem, 6.6vw, 1.78rem) !important;
            }
        }

        /* Bir kademe daha buyuk ana sayfa olcegi. */
        .home-modern-page {
            font-size: 0.96rem;
        }

        .home-modern-page .btn,
        .home-modern-page .btn-lg,
        .home-modern-page .home-outline-btn {
            min-height: 44px;
            padding: 0.58rem 1.12rem !important;
            font-size: 0.82rem !important;
        }

        .home-hero-section {
            min-height: 62vh;
            padding-top: clamp(5.6rem, 8vw, 6.8rem) !important;
            padding-bottom: clamp(2.7rem, 5vw, 3.9rem) !important;
        }

        .home-hero-copy h1 {
            font-size: clamp(1.72rem, 3.8vw, 3.55rem);
        }

        .home-hero-copy p,
        .home-section-head p,
        .home-left-text,
        .home-cta-box p {
            font-size: 0.9rem;
        }

        .home-section {
            padding-top: clamp(2.7rem, 5.2vw, 4.25rem) !important;
            padding-bottom: clamp(2.7rem, 5.2vw, 4.25rem) !important;
        }

        .home-section-head h2,
        .home-left-title,
        .home-cta-box h2 {
            font-size: clamp(1.42rem, 3.05vw, 2.45rem);
        }

        .home-dashboard-preview {
            max-width: 500px;
            padding: 1.08rem;
        }

        .home-dashboard-grid article {
            min-height: 104px;
            padding: 0.82rem;
        }

        .home-dashboard-grid i,
        .home-feature-icon,
        .home-integration-card > i {
            width: 40px;
            height: 40px;
            font-size: 1.05rem;
        }

        .home-feature-card,
        .home-integration-card,
        .home-flow-item {
            min-height: 165px;
            padding: 1.08rem;
        }

        .home-feature-card h3,
        .home-integration-card h3,
        .home-flow-item h3 {
            font-size: 0.94rem;
        }

        .home-feature-card p,
        .home-integration-card p,
        .home-flow-item p {
            font-size: 0.76rem;
        }

        @media (max-width: 767.98px) {
            .home-hero-copy h1 {
                font-size: clamp(1.62rem, 8.5vw, 2.45rem);
            }

            .home-hero-copy p,
            .home-section-head p,
            .home-left-text,
            .home-cta-box p {
                font-size: 0.82rem;
            }

            .home-section-head h2,
            .home-left-title,
            .home-cta-box h2 {
                font-size: clamp(1.32rem, 7.2vw, 1.95rem) !important;
            }
        }

        /* Son ince ayar: ana sayfa boyutlari bir tik daha buyutuldu. */
        .home-modern-page {
            font-size: 1rem;
        }

        .home-modern-page .btn,
        .home-modern-page .btn-lg,
        .home-modern-page .home-outline-btn {
            min-height: 48px;
            padding: 0.64rem 1.22rem !important;
            font-size: 0.88rem !important;
        }

        .home-hero-section {
            min-height: 66vh;
            padding-top: clamp(6rem, 8.5vw, 7.3rem) !important;
            padding-bottom: clamp(3rem, 5.4vw, 4.3rem) !important;
        }

        .home-hero-copy h1 {
            font-size: clamp(1.9rem, 4.15vw, 3.9rem);
        }

        .home-hero-copy p,
        .home-section-head p,
        .home-left-text,
        .home-cta-box p {
            font-size: 0.96rem;
        }

        .home-section {
            padding-top: clamp(3rem, 5.7vw, 4.7rem) !important;
            padding-bottom: clamp(3rem, 5.7vw, 4.7rem) !important;
        }

        .home-section-head h2,
        .home-left-title,
        .home-cta-box h2 {
            font-size: clamp(1.58rem, 3.35vw, 2.7rem);
        }

        .home-dashboard-preview {
            max-width: 530px;
            padding: 1.2rem;
        }

        .home-dashboard-grid article {
            min-height: 116px;
            padding: 0.95rem;
        }

        .home-dashboard-grid i,
        .home-feature-icon,
        .home-integration-card > i {
            width: 44px;
            height: 44px;
            font-size: 1.16rem;
        }

        .home-feature-card,
        .home-integration-card,
        .home-flow-item {
            min-height: 182px;
            padding: 1.18rem;
        }

        .home-feature-card h3,
        .home-integration-card h3,
        .home-flow-item h3 {
            font-size: 1rem;
        }

        .home-feature-card p,
        .home-integration-card p,
        .home-flow-item p {
            font-size: 0.82rem;
        }

        @media (max-width: 767.98px) {
            .home-hero-copy h1 {
                font-size: clamp(1.78rem, 9.2vw, 2.65rem);
            }

            .home-hero-copy p,
            .home-section-head p,
            .home-left-text,
            .home-cta-box p {
                font-size: 0.88rem;
            }

            .home-section-head h2,
            .home-left-title,
            .home-cta-box h2 {
                font-size: clamp(1.45rem, 7.8vw, 2.1rem) !important;
            }
        }

        /* Ozellikler sayfasi */
        .features-page {
            background:
                radial-gradient(circle at 12% 8%, rgba(255, 215, 0, 0.11), transparent 28%),
                radial-gradient(circle at 86% 18%, rgba(255, 215, 0, 0.08), transparent 24%),
                var(--dark-bg-gradient);
        }

        .features-hero {
            position: relative;
            overflow: hidden;
        }

        .features-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 22% 22%, rgba(255, 215, 0, 0.16), transparent 26%),
                linear-gradient(120deg, rgba(0, 0, 0, 0.92), rgba(18, 18, 18, 0.84), rgba(0, 0, 0, 0.94));
            z-index: 0;
        }

        .features-hero .container {
            position: relative;
            z-index: 1;
        }

        .features-kicker {
            display: inline-flex;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0.45rem 0.85rem;
            border: 1px solid rgba(255, 215, 0, 0.28);
            border-radius: 999px;
            background: rgba(255, 215, 0, 0.08);
            color: var(--accent-gold);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .features-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.9rem;
            justify-content: center;
            margin-top: 1.4rem;
        }

        .features-content {
            padding: clamp(3.2rem, 6vw, 5rem) 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.25rem;
        }

        .features-card {
            position: relative;
            height: 100%;
            padding: 1.35rem;
            border: 1px solid rgba(255, 215, 0, 0.16);
            border-radius: 26px;
            background: rgba(255, 255, 255, 0.055);
            box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(14px);
            overflow: hidden;
            transition: transform var(--transition), border-color var(--transition), background var(--transition);
        }

        .features-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 215, 0, 0.42);
            background: rgba(255, 255, 255, 0.075);
        }

        .features-card-icon {
            width: 50px;
            height: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            border-radius: 18px;
            background: rgba(255, 215, 0, 0.13);
            color: var(--accent-gold);
            font-size: 1.25rem;
        }

        .features-card h2,
        .features-final-cta h2 {
            color: #fff;
            font-family: var(--font-body);
            font-weight: 900;
            letter-spacing: -0.035em;
        }

        .features-card h2 {
            margin-bottom: 0.65rem;
            font-size: 1.12rem;
        }

        .features-card p {
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.9rem;
            line-height: 1.65;
        }

        .features-card ul {
            display: grid;
            gap: 0.65rem;
            margin: 1rem 0 0;
            padding: 0;
            list-style: none;
        }

        .features-card li {
            display: flex;
            align-items: flex-start;
            gap: 0.55rem;
            color: rgba(255, 255, 255, 0.76);
            font-size: 0.84rem;
            line-height: 1.55;
        }

        .features-card li i {
            margin-top: 0.2rem;
            color: var(--accent-gold);
            font-size: 0.75rem;
        }

        .features-final-cta {
            max-width: 860px;
            margin: clamp(2rem, 5vw, 3.5rem) auto 0;
            padding: clamp(1.5rem, 4vw, 2.4rem);
            border: 1px solid rgba(255, 215, 0, 0.28);
            border-radius: 30px;
            background:
                linear-gradient(145deg, rgba(255, 215, 0, 0.14), rgba(255, 255, 255, 0.055)),
                rgba(10, 10, 10, 0.78);
            text-align: center;
        }

        .features-final-cta span {
            display: inline-block;
            margin-bottom: 0.7rem;
            color: var(--accent-gold);
            font-size: 0.78rem;
            font-weight: 900;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .features-final-cta h2 {
            margin-bottom: 0.8rem;
            font-size: clamp(1.55rem, 3.2vw, 2.55rem);
        }

        .features-final-cta p {
            color: rgba(255, 255, 255, 0.68);
            margin-bottom: 1.2rem;
        }

        @media (max-width: 991.98px) {
            .features-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 767.98px) {
            .features-grid {
                grid-template-columns: 1fr;
            }

            .features-hero-actions .btn {
                width: 100%;
            }
        }

    </style>
