﻿/* --- CORE CONFIGURATION & VARIABLES --- */
        :root {
            --primary: #ff6b00;
            --primary-hover: #e05e00;
            --dark: #111111;
            --light: #ffffff;
            --bg-accent: #f5f7fa;
            --text-main: #333333;
            --text-muted: #666666;
            --border-color: #e2e8f0;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 10px 20px rgba(0,0,0,0.05);
            --shadow-lg: 0 20px 40px rgba(0,0,0,0.08);
            --glass: rgba(255, 255, 255, 0.85);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --header-top-h: 40px;
            --header-main-h: 76px;
            --header-total-h: calc(var(--header-top-h) + var(--header-main-h));
            --slogan-indirim: var(--primary);
            --slogan-indirim-dark: var(--primary-hover);
            --slogan-yeni: #2d2d2d;
            --slogan-yeni-dark: var(--dark);
            --slogan-domain: #22c55e;
            --slogan-domain-dark: #16a34a;
            --slogan-hosting: #0891b2;
            --slogan-hosting-dark: #0e7490;
            --slogan-bayilik: #d97706;
            --slogan-bayilik-dark: #b45309;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            outline: none;
        }

        html {
            scroll-behavior: smooth;
            margin: 0;
            padding: 0;
        }

        body {
            margin: 0;
            padding: var(--header-total-h) 0 0;
            background-color: var(--light);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Sabit header altında #anchor bölümleri */
        #domain,
        #products,
        #hosting,
        #testimonials,
        #reseller,
        #blog,
        #services {
            scroll-margin-top: var(--header-total-h);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* --- BUTTONS & BADGES --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            font-weight: 600;
            font-size: 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--light);
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--dark);
            border: 2px solid var(--border-color);
        }

        .btn-secondary:hover {
            background-color: var(--dark);
            color: var(--light);
            border-color: var(--dark);
            transform: translateY(-2px);
        }

        .badge {
            display: inline-block;
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 50px;
            background-color: rgba(255, 107, 0, 0.1);
            color: var(--primary);
            margin-bottom: 16px;
        }

        /* --- SECTION STRUCTURE --- */
        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 16px;
        }

        /* --- SITE HEADER --- */
        @keyframes header-pulse {
            0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.65); }
            70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
            100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }

        @keyframes slogan-shine {
            0% { transform: translateX(-130%) skewX(-20deg); }
            100% { transform: translateX(230%) skewX(-20deg); }
        }

        @keyframes slogan-pulse-indirim {
            0%, 100% {
                box-shadow: 0 2px 6px rgba(255, 107, 0, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 2px 14px rgba(255, 107, 0, 0.55);
                transform: scale(1.06);
            }
        }

        @keyframes slogan-pulse-yeni {
            0%, 100% {
                box-shadow: 0 2px 5px rgba(17, 17, 17, 0.25);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 2px 12px rgba(17, 17, 17, 0.4);
                transform: scale(1.05);
            }
        }

        @keyframes slogan-pulse-domain {
            0%, 100% {
                box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 2px 14px rgba(34, 197, 94, 0.5);
                transform: scale(1.06);
            }
        }

        @keyframes slogan-pulse-hosting {
            0%, 100% {
                box-shadow: 0 2px 6px rgba(8, 145, 178, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 2px 14px rgba(8, 145, 178, 0.5);
                transform: scale(1.06);
            }
        }

        @keyframes slogan-pulse-bayilik {
            0%, 100% {
                box-shadow: 0 2px 6px rgba(217, 119, 6, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 2px 14px rgba(217, 119, 6, 0.5);
                transform: scale(1.06);
            }
        }

        @keyframes slogan-glow-indirim {
            0%, 100% { box-shadow: 0 2px 8px rgba(255, 107, 0, 0.35); }
            50% { box-shadow: 0 4px 18px rgba(255, 107, 0, 0.6); }
        }

        @keyframes slogan-glow-bayilik {
            0%, 100% { box-shadow: 0 2px 8px rgba(217, 119, 6, 0.35); }
            50% { box-shadow: 0 4px 18px rgba(217, 119, 6, 0.55); }
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1100;
            margin: 0;
            padding: 0;
            background: var(--dark);
            box-shadow: none;
            transition: box-shadow 0.25s ease;
        }

        .site-header.is-scrolled {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
        }

        .site-header.is-scrolled .site-header__main {
            box-shadow: 0 1px 0 var(--border-color);
        }

        .site-header.is-mega-open .site-header__main {
            border-bottom-color: transparent;
        }

        .site-header__top {
            position: relative;
            z-index: 2;
            height: var(--header-top-h);
            background: var(--dark);
            color: rgba(255, 255, 255, 0.82);
            font-size: 13px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .site-header__top-inner {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .site-header__top-left,
        .site-header__top-right {
            display: flex;
            align-items: center;
            gap: 22px;
            flex-wrap: wrap;
        }

        .site-header__top a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .site-header__top a:hover {
            color: #ffffff;
        }

        .site-header__pickers {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .site-header__picker {
            position: relative;
        }

        .site-header__picker-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.9);
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            max-width: 180px;
        }

        .site-header__picker-btn:hover,
        .site-header__picker.is-open .site-header__picker-btn {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.28);
            color: #fff;
        }

        .site-header__picker-caret {
            font-size: 10px;
            opacity: 0.75;
        }

        .site-header__picker-menu {
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            min-width: 160px;
            margin: 0;
            padding: 6px;
            list-style: none;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: var(--shadow-md);
            z-index: 1200;
        }

        .site-header__picker-menu button {
            width: 100%;
            text-align: left;
            padding: 8px 12px;
            border: none;
            border-radius: 6px;
            background: transparent;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-main);
            cursor: pointer;
            transition: var(--transition);
        }

        .site-header__picker-menu button:hover,
        .site-header__picker-menu button[aria-selected="true"] {
            background: var(--bg-accent);
            color: var(--primary);
        }

        .site-header__live {
            color: #34d399;
            font-weight: 600;
        }

        .site-header__live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #34d399;
            animation: header-pulse 1.6s infinite;
        }

        .site-header__main {
            position: relative;
            height: var(--header-main-h);
            background: #ffffff;
            border-bottom: 1px solid var(--border-color);
            z-index: 2;
        }

        .site-header__bar {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Logo + menü + sepet/giriş tek blok, sayfa ortasında */
        .site-header__cluster {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 28px;
            max-width: 100%;
            min-width: 0;
        }

        .site-header__main > .container.site-header__bar {
            padding-left: 24px;
            padding-right: 24px;
        }

        .site-header__logo {
            flex-shrink: 0;
            margin: 0;
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.04em;
            color: var(--dark);
            line-height: 1;
        }

        .site-header__logo span {
            color: var(--primary);
        }

        .site-header__nav {
            position: static;
            flex: none;
            display: flex;
            align-items: center;
            justify-content: center;
            width: auto;
            max-width: none;
            min-width: 0;
            padding: 0;
            z-index: 2;
        }

        .site-header__menu {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            height: 100%;
            margin: 0;
        }

        .site-header__item {
            position: relative;
            display: flex;
            align-items: center;
        }

        .site-header__link,
        .site-header__menu > .site-header__item > a.site-header__link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 11px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-main);
            border-radius: 8px;
            border: none;
            background: none;
            cursor: pointer;
            font-family: inherit;
            white-space: nowrap;
            transition: color 0.2s ease, background-color 0.2s ease;
        }

        .site-header__link i {
            font-size: 10px;
            opacity: 0.55;
            transition: transform 0.25s ease;
        }

        .site-header__link:hover,
        .site-header__item.is-open > .site-header__link {
            color: var(--primary);
            background: rgba(255, 107, 0, 0.08);
        }

        .site-header__item.is-open > .site-header__link i {
            transform: rotate(180deg);
            opacity: 1;
        }

        /* Promo slogan rozetleri — header + sayfa içi */
        .promo-slogan {
            position: relative;
            display: inline-flex;
            align-items: center;
            overflow: hidden;
            padding: 2px 8px;
            font-size: 9px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #fff;
            border-radius: 999px;
            white-space: nowrap;
            pointer-events: none;
            flex-shrink: 0;
            isolation: isolate;
            vertical-align: middle;
        }

        .site-header__link .promo-slogan {
            flex-shrink: 0;
        }

        .promo-slogan::after {
            content: '';
            position: absolute;
            inset: -2px -40%;
            z-index: 1;
            background: linear-gradient(
                105deg,
                transparent 38%,
                rgba(255, 255, 255, 0.55) 50%,
                transparent 62%
            );
            transform: translateX(-130%) skewX(-20deg);
            animation: slogan-shine 2.8s ease-in-out infinite;
            pointer-events: none;
        }

        .promo-slogan--sm {
            padding: 1px 6px;
            font-size: 7px;
            letter-spacing: 0.04em;
        }

        .promo-slogan--indirim {
            background: linear-gradient(180deg, #ff8a3d 0%, var(--slogan-indirim) 55%, var(--slogan-indirim-dark) 100%);
            animation: slogan-pulse-indirim 2s ease-in-out infinite;
        }

        .promo-slogan--indirim::after {
            animation-delay: 0s;
        }

        .promo-slogan--yeni {
            background: linear-gradient(180deg, #444 0%, var(--slogan-yeni) 45%, var(--slogan-yeni-dark) 100%);
            animation: slogan-pulse-yeni 2.4s ease-in-out infinite;
            animation-delay: 0.35s;
        }

        .promo-slogan--yeni::after {
            animation-delay: 1.1s;
        }

        .promo-slogan--domain {
            padding: 2px 7px;
            font-size: 8px;
            letter-spacing: 0.03em;
            background: linear-gradient(180deg, #4ade80 0%, var(--slogan-domain) 55%, var(--slogan-domain-dark) 100%);
            animation: slogan-pulse-domain 2.1s ease-in-out infinite;
            animation-delay: 0.55s;
        }

        .promo-slogan--domain::after {
            animation-delay: 1.7s;
        }

        .promo-slogan--hosting {
            background: linear-gradient(180deg, #22d3ee 0%, var(--slogan-hosting) 55%, var(--slogan-hosting-dark) 100%);
            animation: slogan-pulse-hosting 2.15s ease-in-out infinite;
            animation-delay: 0.25s;
        }

        .promo-slogan--hosting::after {
            animation-delay: 0.9s;
        }

        .promo-slogan--bayilik {
            background: linear-gradient(180deg, #fbbf24 0%, var(--slogan-bayilik) 55%, var(--slogan-bayilik-dark) 100%);
            animation: slogan-pulse-bayilik 2.3s ease-in-out infinite;
            animation-delay: 0.8s;
        }

        .promo-slogan--bayilik::after {
            animation-delay: 2s;
        }

        .promo-slogan--coksatan {
            background: linear-gradient(180deg, #525252 0%, var(--slogan-yeni) 50%, var(--slogan-yeni-dark) 100%);
            animation: slogan-pulse-yeni 2.5s ease-in-out infinite;
            animation-delay: 0.15s;
        }

        .site-header__mega-links strong .promo-slogan {
            margin-left: 6px;
            vertical-align: middle;
        }

        .domain-search-sec .promo-slogan--domain {
            font-size: 11px;
            padding: 4px 14px;
            letter-spacing: 0.05em;
        }

        .domain-box__title-row {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 28px;
        }

        .domain-box__title-row h2 {
            margin-bottom: 0;
        }

        .domain-box__title-row .promo-slogan--domain {
            font-size: 12px;
            padding: 5px 16px;
        }

        .tld-tag--campaign {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 14px 20px 12px;
            min-width: 96px;
            border-color: rgba(74, 222, 128, 0.5);
            background: rgba(34, 197, 94, 0.14);
        }

        .tld-tag--campaign .domain-tld__badge {
            position: static;
            transform: none;
            display: inline-flex;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 11px;
            color: #ffffff;
            margin-top: 0;
        }

        .tld-tag--campaign .tld-tag__main {
            font-size: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        .tld-tag--campaign .tld-tag__main span {
            display: block;
            margin-top: 4px;
            font-size: 12px;
            font-weight: 700;
            color: #4ade80;
        }

        .prod-img .promo-slogan {
            position: absolute;
            z-index: 2;
        }

        .prod-img .promo-slogan--coksatan {
            top: 12px;
            right: 12px;
            left: auto;
        }

        .prod-img .promo-slogan--indirim {
            top: 12px;
            left: 12px;
        }

        .prod-img:has(.promo-slogan--indirim) .prod-tag {
            top: auto;
            bottom: 12px;
            left: 12px;
        }

        .pricing-card .promo-slogan--card {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 2;
        }

        .popular-badge.promo-slogan {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            padding: 4px 16px;
            font-size: 11px;
            border-radius: 50px;
            background: linear-gradient(180deg, #ff8a3d 0%, var(--slogan-indirim) 55%, var(--slogan-indirim-dark) 100%);
        }

        .popular-badge.promo-slogan.promo-slogan--indirim {
            animation: slogan-glow-indirim 2s ease-in-out infinite;
        }

        .popular-badge.promo-slogan.promo-slogan--bayilik {
            background: linear-gradient(180deg, #fbbf24 0%, var(--slogan-bayilik) 55%, var(--slogan-bayilik-dark) 100%);
            animation: slogan-glow-bayilik 2.3s ease-in-out infinite;
        }

        .popular-badge.promo-slogan::after {
            animation-delay: 0.4s;
        }

        @media (prefers-reduced-motion: reduce) {
            .promo-slogan,
            .promo-slogan::after {
                animation: none !important;
            }

            .promo-slogan--indirim {
                box-shadow: 0 2px 8px rgba(255, 107, 0, 0.28);
            }

            .promo-slogan--yeni,
            .promo-slogan--coksatan {
                box-shadow: 0 2px 6px rgba(17, 17, 17, 0.2);
            }

            .promo-slogan--domain {
                box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
            }

            .promo-slogan--hosting {
                box-shadow: 0 2px 8px rgba(8, 145, 178, 0.3);
            }

            .promo-slogan--bayilik {
                box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
            }
        }

        /* Yazılımlar aktif (mega açıkken) */
        .site-header.is-mega-open .site-header__item--mega .site-header__link {
            color: var(--primary);
            background: rgba(255, 107, 0, 0.08);
        }

        .site-header.is-mega-open .site-header__item--mega .site-header__link i {
            transform: rotate(180deg);
            opacity: 1;
        }

        .site-header__item--mobile-only,
        .site-header__item--mobile-mega {
            display: none;
        }

        .site-header__dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            min-width: 220px;
            padding: 8px;
            list-style: none;
            margin: 0;
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(6px);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
            z-index: 20;
        }

        .site-header__item.is-open > .site-header__dropdown,
        .site-header__item--has-dropdown:hover > .site-header__dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .site-header__dropdown a {
            display: block;
            padding: 10px 14px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-main);
            border-radius: 8px;
        }

        .site-header__dropdown a:hover {
            background: var(--bg-accent);
            color: var(--primary);
        }

        .site-header__actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
            margin: 0;
            padding: 0;
        }

        .site-header__cart {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: #fff;
            color: var(--dark);
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            position: relative;
        }

        .site-header__cart:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .site-header__cart-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 20px;
            height: 20px;
            padding: 0 6px;
            border-radius: 50px;
            background: var(--primary);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            line-height: 1;
        }

        .site-header__action-login {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            white-space: nowrap;
            padding: 8px 4px;
        }

        .site-header__action-login:hover {
            color: var(--primary);
        }

        .site-header__action-register {
            padding: 10px 20px;
            font-size: 14px;
            white-space: nowrap;
        }

        .site-header__mobile-auth {
            display: none;
            flex-direction: column;
            gap: 10px;
            padding: 16px;
            border-top: 1px solid var(--border-color);
            margin-top: 8px;
        }

        .site-header__mobile-auth .btn {
            width: 100%;
            justify-content: center;
        }

        .site-header__btn-ghost {
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: #ffffff;
            white-space: nowrap;
        }

        .site-header__btn-ghost:hover {
            border-color: var(--dark);
            background: var(--dark);
            color: #ffffff;
        }

        .site-header__toggle {
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            background: #ffffff;
            color: var(--dark);
            font-size: 18px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .site-header__backdrop {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.5);
            z-index: 1095;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

        /* Backdrop yalnızca mobil menü için (mega hover'da kaplamasın) */
        .site-header.is-nav-open .site-header__backdrop {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        /* Mega menu */
        .site-header__mega {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            visibility: hidden;
            pointer-events: none;
            z-index: 15;
        }

        /* Fare geçiş köprüsü (Yazılımlar → panel) */
        .site-header__mega::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 0;
            right: 0;
            height: 24px;
        }

        .site-header.is-mega-open .site-header__mega {
            visibility: visible;
            pointer-events: auto;
        }

        .site-header.is-mega-open {
            background: #ffffff;
        }

        .site-header__mega-inner {
            background: #ffffff;
            border-top: 1px solid var(--border-color);
            border-bottom: 3px solid var(--primary);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .site-header__mega-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr) 280px;
            gap: 0;
            padding: 32px 0 6px;
        }

        .site-header__mega-col {
            padding: 0 24px 24px;
            border-right: 1px solid #eef2f6;
        }

        .site-header__mega-col:last-of-type {
            border-right: none;
        }

        .site-header__mega-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .site-header__mega-links {
            display: flex;
            flex-direction: column;
            gap: 2px;
            list-style: none;
        }

        .site-header__mega-links a {
            display: flex;
            gap: 12px;
            padding: 10px;
            margin: 0 -10px;
            border-radius: 10px;
        }

        .site-header__mega-links a:hover {
            background: var(--bg-accent);
        }

        .site-header__mega-links a:hover strong {
            color: var(--primary);
        }

        .site-header__mega-icon {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 10px;
            color: var(--primary);
            font-size: 16px;
        }

        .site-header__mega-links strong {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 2px;
        }

        .site-header__mega-links small {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .site-header__mega-card {
            margin: 0 0 24px 16px;
            padding: 24px;
            border-radius: 12px;
            background: linear-gradient(150deg, #161616, #2a2a2a);
            color: #fff;
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }

        .site-header__mega-card-tag:not(.promo-slogan) {
            align-self: flex-start;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--primary);
            background: rgba(255, 107, 0, 0.15);
            padding: 4px 10px;
            border-radius: 50px;
            margin-bottom: 12px;
        }

        .site-header__mega-card-tag.promo-slogan {
            align-self: flex-start;
            margin-bottom: 12px;
            pointer-events: none;
        }

        .site-header__mega-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #fff;
        }

        .site-header__mega-card p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
            margin-bottom: 16px;
            flex: 1;
        }

        .site-header__mega-card .btn {
            width: 100%;
        }

        .site-header__mega-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            border-top: 1px solid var(--border-color);
            background: #f8fafc;
        }

        .site-header__mega-foot a {
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .site-header__mega-foot a:hover {
            color: var(--primary);
        }

        .site-header__mega-foot span {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* --- HERO (tam ekran video) --- */
        .hero {
            position: relative;
            min-height: calc(100svh - var(--header-total-h));
            min-height: calc(100dvh - var(--header-total-h));
            display: flex;
            align-items: center;
            padding: 72px 0 88px;
            overflow: hidden;
        }

        .hero__media {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero__video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            background: #0d0d0d;
            transform: translateZ(0);
            -webkit-transform: translateZ(0);
        }

        .hero__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                105deg,
                rgba(10, 10, 10, 0.88) 0%,
                rgba(10, 10, 10, 0.72) 42%,
                rgba(10, 10, 10, 0.35) 68%,
                rgba(255, 107, 0, 0.15) 100%
            );
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero__content {
            max-width: 720px;
        }

        .hero__brand {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px 24px;
            margin-bottom: 28px;
        }

        .hero__logo {
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 800;
            letter-spacing: -0.04em;
            color: #ffffff;
            line-height: 1;
            text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
        }

        .hero__logo span {
            color: var(--primary);
        }

        .hero__brand-line {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.55);
            padding-left: 20px;
            border-left: 2px solid var(--primary);
        }

        .hero .badge {
            background: rgba(255, 107, 0, 0.2);
            color: #ffb380;
            border: 1px solid rgba(255, 107, 0, 0.45);
            margin-bottom: 20px;
        }

        .hero__content h1 {
            font-size: clamp(32px, 4.5vw, 56px);
            font-weight: 800;
            line-height: 1.12;
            color: #ffffff;
            letter-spacing: -0.03em;
            margin-bottom: 22px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
        }

        .hero__content p {
            font-size: clamp(16px, 2vw, 19px);
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.82);
            margin-bottom: 36px;
            max-width: 620px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero .btn-secondary {
            border-color: rgba(255, 255, 255, 0.45);
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
        }

        .hero .btn-secondary:hover {
            background: #ffffff;
            color: var(--dark);
            border-color: #ffffff;
        }

        .hero__sound {
            position: absolute;
            bottom: 28px;
            right: 28px;
            z-index: 3;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
            color: #fff;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.2s ease, border-color 0.2s ease;
        }

        .hero__sound:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        @media (max-width: 1024px) {
            .hero {
                min-height: calc(100svh - var(--header-main-h));
                min-height: calc(100dvh - var(--header-main-h));
            }
            .hero__brand-line {
                width: 100%;
                padding-left: 0;
                border-left: none;
                padding-top: 8px;
                border-top: 1px solid rgba(255, 255, 255, 0.15);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 48px 0 64px;
            }
            .hero__sound {
                top: auto;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero__video {
                display: none;
            }
            .hero__media {
                background: url('https://images.pexels.com/videos/3255271/pictures/preview-0.jpg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
            }
        }

        /* --- STATS COUNTER BAR --- */
        .stats-bar {
            background: var(--dark);
            color: var(--light);
            padding: 20px 0;
            position: relative;
            z-index: 5;
            border-top: 1px solid rgba(255, 107, 0, 0.35);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px 12px;
            align-items: center;
        }

        .stat-item {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 6px 10px;
            text-align: left;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 28px;
            width: 1px;
            background: rgba(255, 255, 255, 0.12);
        }

        .stat-item__icon {
            width: 34px;
            height: 34px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: rgba(255, 107, 0, 0.12);
            color: var(--primary);
            font-size: 14px;
        }

        .stat-item__body {
            min-width: 0;
        }

        .stat-item__value {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            margin: 0 0 2px;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .stat-item__label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.68);
            font-weight: 500;
            line-height: 1.3;
            margin: 0;
        }

        /* --- CATEGORIES SECTION --- */
        .categories-sec .section-header h2 {
            color: var(--dark);
        }

        .categories-sec .section-header h2 span {
            color: var(--primary);
        }

        .categories-sec .section-header p {
            color: var(--text-main);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .category-card {
            display: block;
            background-color: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 32px 24px;
            text-align: center;
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
            cursor: pointer;
        }

        .category-card i {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
            transition: var(--transition);
        }

        .category-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
            background-color: var(--bg-accent);
        }

        .category-card:hover i {
            transform: scale(1.1);
        }

        /* --- DOMAIN SEARCH SECTION --- */
        .domain-search-sec {
            background: linear-gradient(135deg, #111111 0%, #222222 100%);
            color: var(--light);
            position: relative;
            overflow: hidden;
        }

        .domain-box {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .domain-box h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 30px;
            color: #ffffff;
        }

        .search-form {
            display: flex;
            background: var(--light);
            padding: 8px;
            border-radius: 50px;
            box-shadow: var(--shadow-md);
            margin-bottom: 24px;
        }

        .search-form input {
            flex-grow: 1;
            border: none;
            background: transparent;
            padding: 0 24px;
            font-size: 16px;
            color: var(--dark);
            font-weight: 500;
        }

        .search-form .btn {
            border-radius: 50px;
            padding: 14px 36px;
        }

        .domain-search-alert {
            margin-bottom: 20px;
            text-align: left;
        }

        /* Domain sorgu sonuçları — beyaz panel (YERSOFT turuncu/beyaz) */
        .domain-box--tlds {
            margin-top: 36px;
        }

        .domain-search-sec .domain-results-panel {
            max-width: 920px;
            margin: 28px auto 0;
            background: var(--light);
            color: var(--text-main);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
            text-align: left;
        }

        .domain-results-panel__header {
            padding: 22px 28px;
            background: linear-gradient(135deg, var(--primary) 0%, #ff8a3d 100%);
            color: #fff;
        }

        .domain-results-panel__label {
            margin: 0 0 6px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            opacity: 0.92;
        }

        .domain-results-panel__query {
            margin: 0;
            font-size: 26px;
            font-weight: 800;
            letter-spacing: -0.02em;
            word-break: break-all;
            color: #fff;
        }

        .domain-results-panel__list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .domain-results-panel__row {
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto;
            gap: 16px 24px;
            align-items: center;
            padding: 22px 28px;
            border-bottom: 1px solid var(--border-color);
        }

        .domain-results-panel__row:last-child {
            border-bottom: none;
        }

        .domain-results-panel__row.is-available {
            background: linear-gradient(90deg, #fff7ed 0%, #ffffff 48%);
        }

        .domain-results-panel__domain {
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 0;
        }

        .domain-results-panel__icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(255, 107, 0, 0.12);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .domain-results-panel__name {
            font-size: 20px;
            font-weight: 800;
            color: var(--dark);
            word-break: break-all;
        }

        .domain-results-panel__info {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }

        .domain-results-panel__badge {
            font-size: 11px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .domain-results-panel__badge--ok {
            background: #dcfce7;
            color: #15803d;
        }

        .domain-results-panel__badge--no {
            background: #f1f5f9;
            color: var(--text-muted);
        }

        .domain-results-panel__badge--premium {
            background: rgba(255, 107, 0, 0.12);
            color: var(--primary);
        }

        .domain-results-panel__price {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
        }

        .domain-results-panel__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: flex-end;
            align-items: center;
        }

        .domain-results-panel__buy-form {
            margin: 0;
        }

        .domain-results-panel__actions .btn {
            padding: 12px 22px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            white-space: nowrap;
        }

        .domain-search-sec .domain-results-panel__btn-outline.btn-secondary {
            background: #fff;
            color: var(--dark);
            border: 2px solid var(--border-color);
        }

        .domain-search-sec .domain-results-panel__btn-outline.btn-secondary:hover {
            background: var(--dark);
            color: #fff;
            border-color: var(--dark);
        }

        .domain-results-panel__note {
            margin: 0;
            padding: 16px 28px 20px;
            font-size: 13px;
            color: var(--text-muted);
            background: var(--bg-accent);
            text-align: center;
            line-height: 1.55;
        }

        @media (max-width: 768px) {
            .domain-results-panel__row {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .domain-results-panel__actions {
                justify-content: stretch;
            }

            .domain-results-panel__actions .btn {
                flex: 1 1 100%;
                text-align: center;
            }
        }

        .tlds-wrapper {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .tld-tag {
            background: rgba(255,255,255,0.08);
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
        }

        .tld-tag > span,
        .tld-tag .tld-tag__main span {
            color: var(--primary);
            font-size: 11px;
            display: block;
            font-weight: 400;
            margin-top: 2px;
        }

        .tld-tag .promo-slogan {
            color: #ffffff;
            display: inline-flex;
            margin-top: 0;
        }

        .tld-tag:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }

        /* --- FEATURED PRODUCTS --- */
        #products .section-header h2 span {
            color: var(--primary);
        }

        .products-section-cta {
            text-align: center;
            margin-top: 48px;
        }

        .products-section-cta .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            font-size: 15px;
            font-weight: 600;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .product-card {
            background: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .prod-img {
            background: var(--bg-accent);
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            font-size: 48px;
            color: rgba(17,17,17,0.1);
        }

        .prod-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--dark);
            color: var(--light);
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
        }

        .prod-details {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .prod-details h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .prod-details p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .prod-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
        }

        .prod-price {
            font-size: 18px;
            font-weight: 800;
            color: var(--dark);
        }

        .prod-price span {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        /* --- HOSTING PACKAGES --- */
        #hosting .section-header h2 span {
            color: var(--primary);
        }

        .hosting-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .pricing-card {
            background: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px 24px;
            position: relative;
            transition: var(--transition);
        }

        .pricing-card.featured {
            border: 2px solid var(--primary);
            box-shadow: var(--shadow-md);
            transform: scale(1.03);
        }

        .popular-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: var(--light);
            padding: 4px 16px;
            font-size: 11px;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-header h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .pricing-header p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .price-box {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 30px;
        }

        .price-box span {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .pricing-features {
            margin-bottom: 36px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .pricing-features li {
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pricing-features li i {
            color: #10b981;
        }

        .pricing-card .btn {
            width: 100%;
        }

        .pricing-card:hover:not(.featured) {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--dark);
        }

        /* --- WHY YERSOFT --- */
        .why-sec {
            background-color: var(--bg-accent);
        }

        .why-sec .section-header h2 .why-brand__yer,
        .reseller-sec .section-header h2 .why-brand__yer {
            color: var(--dark);
        }

        .why-sec .section-header h2 .why-brand__soft,
        .reseller-sec .section-header h2 .why-brand__soft {
            color: var(--primary);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .why-card {
            background: var(--light);
            padding: 36px;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .why-card i {
            font-size: 28px;
            color: var(--primary);
            background: rgba(255,107,0,0.06);
            padding: 14px;
            border-radius: 10px;
            margin-bottom: 24px;
            display: inline-block;
        }

        .why-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .why-card p {
            font-size: 14px;
            color: var(--text-muted);
        }

        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--border-color);
        }

        /* --- TESTIMONIALS --- */
        #testimonials .section-header h2 span {
            color: var(--primary);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .review-card {
            background: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 32px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .review-text {
            font-size: 14px;
            font-style: italic;
            color: var(--text-main);
            margin-bottom: 24px;
            position: relative;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .user-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--bg-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary);
            border: 2px solid var(--border-color);
        }

        .user-meta h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
        }

        .user-meta p {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* --- RESELLER PACKAGES --- */
        .reseller-sec {
            background-color: var(--bg-accent);
        }

        .reseller-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* --- BLOG SECTION --- */
        #blog .section-header h2 span {
            color: var(--primary);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-card {
            background: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
        }

        .blog-card__media {
            display: block;
            overflow: hidden;
        }

        .blog-cover {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
        }

        .blog-cover--card {
            height: 220px;
        }

        .blog-cover--hero {
            min-height: clamp(280px, 42vw, 520px);
        }

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

        .blog-cover--fallback {
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.35);
            font-size: 48px;
            background: linear-gradient(135deg, var(--primary) 0%, #c2410c 45%, var(--dark) 100%);
        }

        .blog-cover--card.blog-cover--fallback {
            font-size: 40px;
        }

        .blog-card:hover .blog-cover img {
            transform: scale(1.06);
        }

        /* Eski .blog-img — geriye dönük */
        .blog-img {
            background: #e2e8f0;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: rgba(0,0,0,0.1);
        }

        .blog-content {
            padding: 24px;
        }

        .blog-date {
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }

        .blog-content h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .blog-content h3 a:hover {
            color: var(--primary);
        }

        .blog-content p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .blog-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .blog-card:hover .blog-link {
            color: var(--primary);
        }

        /* Blog detay — ana sayfa / liste ile aynı dil */
        .blog-detail-page {
            background: var(--light);
        }

        .blog-detail-hero {
            position: relative;
            background: var(--dark);
            overflow: hidden;
            min-height: clamp(320px, 48vh, 560px);
        }

        .blog-detail-hero > .blog-cover {
            position: absolute;
            inset: 0;
            width: 100%;
            min-height: 100%;
        }

        .blog-detail-hero > .blog-cover--hero {
            min-height: clamp(320px, 48vh, 560px);
        }

        .blog-detail-hero__overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: flex-end;
            background: linear-gradient(180deg, rgba(17, 17, 17, 0.15) 0%, rgba(17, 17, 17, 0.55) 45%, rgba(17, 17, 17, 0.92) 100%);
            pointer-events: none;
        }

        .blog-detail-hero__inner {
            position: relative;
            z-index: 1;
            padding: 48px 0 56px;
            pointer-events: auto;
            text-align: left;
            max-width: 820px;
        }

        .blog-detail-hero__breadcrumb {
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 16px;
        }

        .blog-detail-hero__breadcrumb a {
            color: #fff;
        }

        .blog-detail-hero__breadcrumb a:hover {
            color: var(--primary);
        }

        .blog-detail-hero__meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .blog-detail-hero__date {
            color: var(--primary);
            margin: 0;
        }

        .blog-detail-hero__tag {
            margin: 0;
        }

        .blog-detail-hero__title {
            font-size: clamp(28px, 4.5vw, 44px);
            font-weight: 800;
            line-height: 1.15;
            color: #fff;
            margin: 0 0 16px;
            letter-spacing: -0.02em;
        }

        .blog-detail-hero__lead {
            font-size: clamp(16px, 2vw, 19px);
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.88);
            margin: 0;
            max-width: 640px;
        }

        .page-body--blog-detail {
            padding: 48px 0 100px;
            background: var(--bg-accent);
        }

        .blog-detail-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 300px;
            gap: 32px;
            align-items: start;
            margin-bottom: 64px;
        }

        .blog-detail-article {
            background: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px 44px;
            box-shadow: var(--shadow-md);
            font-size: 17px;
            line-height: 1.8;
            max-width: none;
            margin: 0;
        }

        .blog-detail-article h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--dark);
            margin: 2.2em 0 0.65em;
            padding-top: 1.2em;
            border-top: 1px solid var(--border-color);
            letter-spacing: -0.02em;
        }

        .blog-detail-article h2:first-child {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }

        .blog-detail-article h3 {
            font-size: 19px;
            font-weight: 700;
            margin: 1.6em 0 0.5em;
            color: var(--dark);
        }

        .blog-detail-article p {
            margin: 0 0 1.15em;
            color: var(--text-main);
        }

        .blog-detail-article ul,
        .blog-detail-article ol {
            margin: 0 0 1.25em 1.2em;
        }

        .blog-detail-article li {
            margin-bottom: 0.45em;
        }

        .blog-detail-article a {
            color: var(--primary);
            font-weight: 600;
        }

        .blog-detail-article img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 1.5em 0;
            border: 1px solid var(--border-color);
        }

        .blog-detail-article blockquote {
            margin: 1.75em 0;
            padding: 20px 24px;
            border-left: 4px solid var(--primary);
            background: #fff7ed;
            border-radius: 0 12px 12px 0;
            color: var(--text-main);
            font-size: 1.05em;
        }

        .blog-detail-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
        }

        .blog-detail-widget {
            background: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: calc(var(--header-total-h) + 20px);
        }

        .blog-detail-widget__title {
            font-size: 17px;
            font-weight: 800;
            margin: 0 0 10px;
            color: var(--dark);
        }

        .blog-detail-widget p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0 0 16px;
            line-height: 1.6;
        }

        .blog-detail-widget .btn-block {
            width: 100%;
            justify-content: center;
            margin-bottom: 10px;
        }

        .blog-detail-widget .btn-block:last-child {
            margin-bottom: 0;
        }

        .blog-detail-related {
            padding-top: 8px;
        }

        .blog-detail-related .section-header {
            margin-bottom: 36px;
        }

        @media (max-width: 992px) {
            .blog-detail-layout {
                grid-template-columns: 1fr;
            }

            .blog-detail-widget {
                position: static;
            }

            .blog-detail-article {
                padding: 28px 24px;
            }
        }

        @media (max-width: 640px) {
            .blog-detail-hero__inner {
                padding: 32px 0 40px;
            }
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--dark);
            color: rgba(255,255,255,0.7);
            padding: 80px 0 0 0;
            font-size: 14px;
            border-top: 4px solid var(--primary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr repeat(4, 1fr);
            gap: 40px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .footer-logo-side h2 {
            color: var(--light);
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .footer-logo-side h2 span { color: var(--primary); }

        .footer-logo-side p {
            margin-bottom: 24px;
            font-size: 13px;
            line-height: 1.6;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-socials a {
            background: rgba(255,255,255,0.05);
            width: 36px;
            height: 36px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
        }

        .footer-socials a:hover {
            background: var(--primary);
        }

        .footer-col h3 {
            color: var(--light);
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col ul a:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        .bottom-footer {
            padding: 30px 0;
            text-align: center;
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }

        /* --- RESPONSIVE ADJUSTMENTS --- */
        @media (max-width: 1200px) {
            .site-header__cluster { gap: 16px; }
            .site-header__menu { gap: 4px; }
            .site-header__link { padding: 10px 10px; font-size: 13px; }
            .site-header__mega-grid {
                grid-template-columns: 1fr 1fr;
            }
            .site-header__mega-card {
                grid-column: 1 / -1;
                margin: 12px 24px 24px;
                min-height: auto;
            }
            .categories-grid, .products-grid, .hosting-grid { grid-template-columns: repeat(2, 1fr); }
            .why-grid, .testimonials-grid, .reseller-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 1024px) {
            :root {
                --header-total-h: var(--header-main-h);
            }

            .site-header__top { display: none; }
            .site-header__nav {
                position: fixed;
                top: var(--header-main-h);
                left: 0;
                right: 0;
                bottom: 0;
                width: auto;
                max-width: none;
                flex: none;
                display: block;
                background: #ffffff;
                padding: 16px 20px 32px;
                overflow-y: auto;
                transform: translateX(100%);
                transition: transform 0.3s ease;
                z-index: 1102;
                border-top: 1px solid var(--border-color);
            }

            .site-header.is-nav-open .site-header__nav {
                transform: translateX(0);
            }

            .site-header__menu {
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
            }

            .site-header__item {
                width: 100%;
            }

            .site-header__link {
                width: 100%;
                justify-content: space-between;
                padding: 14px 16px;
            }

            .site-header__dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                padding: 0 0 8px 12px;
                display: none;
                min-width: 0;
            }

            .site-header__item.is-open > .site-header__dropdown {
                display: block;
            }

            .site-header__item--mega {
                display: none;
            }

            .site-header__item--mobile-only,
            .site-header__item--mobile-mega {
                display: list-item;
            }

            .site-header__action-login,
            .site-header__action-register {
                display: none;
            }

            .site-header__bar {
                justify-content: space-between;
            }

            .site-header__cluster {
                justify-content: flex-start;
                gap: 12px;
                flex: 1;
                min-width: 0;
            }

            .site-header__main > .container.site-header__bar {
                padding-left: 16px;
                padding-right: 16px;
            }

            .site-header__nav {
                padding: 0;
            }

            .site-header__cart-text {
                display: none;
            }

            .site-header__mobile-auth {
                display: flex;
            }

            .site-header__pickers {
                gap: 4px;
            }

            .site-header__picker-btn {
                padding: 4px 8px;
                font-size: 11px;
                max-width: 120px;
            }

            .site-header__picker-label {
                max-width: 72px;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .site-header__toggle {
                display: flex;
            }

            .site-header__mega {
                display: none !important;
            }
        }

        /* --- PRODUCT DETAIL (YERSOFT bileşenleri) --- */
        .product-detail-page {
            background-color: var(--bg-accent);
        }

        .product-detail-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
            gap: 30px;
            align-items: start;
        }

        .product-detail-main {
            min-width: 0;
        }

        .product-detail-gallery {
            margin-bottom: 24px;
        }

        .product-detail-gallery .prod-img {
            position: relative;
            overflow: hidden;
            height: 320px;
            font-size: 72px;
            color: rgba(17, 17, 17, 0.12);
        }

        .product-detail-prod-img__photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }

        .product-detail-gallery__cta {
            padding: 20px 24px 24px;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }

        .product-detail-gallery__cta .btn {
            width: 100%;
            max-width: 320px;
        }

        .product-detail-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 16px;
            position: sticky;
            top: calc(var(--header-total-h) + 12px);
            z-index: 15;
        }

        .product-detail-tab {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: var(--light);
            font-weight: 600;
            font-size: 14px;
            color: var(--text-muted);
            cursor: pointer;
            transition: var(--transition);
        }

        .product-detail-tab:hover {
            border-color: var(--dark);
            color: var(--dark);
        }

        .product-detail-tab.is-active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--light);
        }

        .product-detail-tab.is-active:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: var(--light);
        }

        .product-detail-panel {
            display: none;
        }

        .product-detail-panel.is-active {
            display: flex;
        }

        .product-detail-panel__title {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin: 0 0 16px;
        }

        .product-detail-panel__inner {
            width: 100%;
        }

        .product-detail-sidebar {
            position: sticky;
            top: calc(var(--header-total-h) + 16px);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .product-detail-reseller {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            padding: 18px;
            background: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
        }

        .product-detail-reseller__icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--bg-accent);
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .product-detail-reseller__title {
            display: block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .product-detail-reseller__text {
            margin: 0;
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .product-detail-reseller__text a {
            color: var(--dark);
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .product-detail-reseller__text a:hover {
            color: var(--primary);
        }

        .product-detail-buy {
            text-align: center;
            padding: 32px 24px;
        }

        .product-detail-buy .product-detail-license {
            background: var(--bg-accent);
            color: var(--dark);
            margin-bottom: 12px;
        }

        .product-detail-license i {
            margin-right: 4px;
            color: var(--text-muted);
        }

        .product-detail-price-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin: 0 0 8px;
        }

        .product-detail-old-price {
            font-size: 15px;
            color: var(--text-muted);
            text-decoration: line-through;
            margin: 0 auto 6px;
            text-align: center;
        }

        .product-detail-price {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin: 0 auto 20px;
        }

        .product-detail-price__amount {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.15;
        }

        .product-detail-price__period {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-muted);
            margin-top: 6px;
        }

        .product-detail-price__note {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .product-detail-perks {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 24px;
            text-align: left;
        }

        .product-detail-perk {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            background: var(--bg-accent);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.35;
        }

        .product-detail-perk i {
            flex-shrink: 0;
            font-size: 15px;
            color: var(--dark);
            background: var(--light);
            border: 1px solid var(--border-color);
            padding: 8px;
            border-radius: 8px;
        }

        .product-detail-buy .btn {
            width: 100%;
            margin-bottom: 10px;
        }

        .product-detail-buy .btn:last-child {
            margin-bottom: 0;
        }

        .product-detail-specs {
            padding: 32px 24px;
        }

        .product-detail-specs .pricing-header h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            margin-bottom: 0;
        }

        .product-detail-specs .pricing-header h3 i {
            color: var(--text-muted);
        }

        .product-detail-specs .pricing-features {
            margin-bottom: 20px;
        }

        .product-detail-support {
            margin: 0;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .product-detail-support a {
            display: block;
            color: var(--dark);
            font-weight: 600;
            margin-top: 4px;
        }

        .product-detail-support a:hover {
            color: var(--primary);
        }

        @media (max-width: 1100px) {
            .product-detail-layout {
                grid-template-columns: 1fr;
            }

            .product-detail-sidebar {
                position: static;
            }

            .product-detail-tabs {
                position: static;
            }
        }

        @media (max-width: 600px) {
            .product-detail-perks {
                grid-template-columns: 1fr;
            }

            .product-detail-gallery .prod-img {
                height: 240px;
            }
        }

        @media (max-width: 1024px) {
            .stat-item::after { display: none; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .stat-item { justify-content: flex-start; padding: 8px 12px; }
        }

        @media (max-width: 768px) {
            .stats-bar { padding: 16px 0; }
            .stat-item__value { font-size: 20px; }
            .stat-item__label { font-size: 11px; }
            .categories-grid, .products-grid, .hosting-grid, .why-grid, .testimonials-grid, .reseller-grid, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
        }

        /* Hesabım — domain yönetimi */
        .account-domain-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 20px 0;
            border-bottom: 1px solid #e8e8e8;
            padding-bottom: 12px;
        }
        .account-domain-tabs__link {
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            color: #444;
            font-weight: 600;
            font-size: 14px;
        }
        .account-domain-tabs__link.is-active,
        .account-domain-tabs__link:hover {
            background: var(--primary, #ff6b00);
            color: #fff;
        }
        .account-back-link {
            display: inline-block;
            margin-bottom: 12px;
            color: var(--primary, #ff6b00);
            text-decoration: none;
            font-weight: 600;
        }
        .account-dns-form__grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 12px;
            margin-bottom: 16px;
        }
        .account-dns-form__grid label {
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: 13px;
        }
        .account-stat-card--link {
            text-decoration: none;
            color: inherit;
            transition: box-shadow 0.2s, border-color 0.2s;
        }
        .account-stat-card--link:hover {
            border-color: var(--primary, #ff6b00);
            box-shadow: 0 4px 12px rgba(255, 107, 0, 0.15);
        }
        .btn-sm {
            padding: 6px 12px;
            font-size: 13px;
        }
