:root {
    --primary-text: #2C2E3E;    
    --primary-color: #196BDE;   
    --primary-hover: #1455C0;
    --bg-color: #f8fafc;        
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --text-muted: #475569;
    --accent: #ff7b00;          
    --accent-light: #fff5eb;
    --blue-light: #eff6ff;
    --purple-light: #f3e8ff;
    --purple: #9333ea;
    --green-light: #ecfdf5;
    --green: #10b981;
    --radius: 16px;
    --radius-sm: 8px;
    --max-width: min(1560px, calc(100vw - 80px));
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--primary-text);
    background-color: #ffffff;
    background-image: linear-gradient(180deg, #eff4f9 0%, #ffffff 60vh);
    background-attachment: fixed;
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-text);
    letter-spacing: -0.02em;
}
/* Büyük başlıklarda negatif tracking doğal, küçük başlıklarda okunurluğu bozar */
h1 { letter-spacing: -0.04em; line-height: 1.15; }
h2 { letter-spacing: -0.03em; line-height: 1.2; }
h3 { letter-spacing: -0.02em; }
h4, h5, h6 { letter-spacing: -0.01em; }

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
.db { display: block; }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-start { display: flex; justify-content: flex-start; align-items: center; }
.flex-col-center { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.flex-col { display: flex; flex-direction: column; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.align-center { align-items: center; }
.justify-start { justify-content: flex-start; }
.gap-1 { gap: 4px; } .gap-2 { gap: 8px; } .gap-3 { gap: 16px; } .gap-4 { gap: 24px; } .gap-5 { gap: 32px; }
.text-center { text-align: center; }
.text-primary { color: var(--primary-color) !important; }
.text-white { color: #fff !important; }
.text-muted { color: var(--text-muted) !important; }
.text-accent { color: var(--accent) !important; }
.text-blue { color: #3b82f6 !important; }
.text-purple { color: var(--purple) !important; }
.text-green { color: var(--green) !important; }
.text-dark { color: var(--primary-text) !important; }
.text-sm { font-size: 13px !important; }
.text-xs { font-size: 11px !important; }
.font-weight-bold { font-weight: 700 !important; }
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 16px; } .mt-4 { margin-top: 24px; } .mt-5 { margin-top: 40px; }
.mb-0 { margin-bottom: 0 !important; } .mb-1 { margin-bottom: 4px; } .mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 16px; } .mb-4 { margin-bottom: 24px; } .mb-5 { margin-bottom: 40px; }
.ml-2 { margin-left: 8px; } .ml-3 { margin-left: 16px; } .ml-4 { margin-left: 24px; }
.mr-2 { margin-right: 8px; } .mr-3 { margin-right: 16px; }
.pt-3 { padding-top: 16px; } .pt-5 { padding-top: 40px; } .pb-0 { padding-bottom: 0 !important; } .pb-5 { padding-bottom: 40px; }
.pl-4 { padding-left: 24px; }
.py-2 { padding: 8px 0; } .px-3 { padding: 0 16px; } .py-4 { padding: 24px 0; } .py-5 { padding: 48px 0; }
.p-extra { padding: 64px !important; }
.padding-y { padding: 100px 0; }
.border-y { border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.border-bottom-subtle { border-bottom: 1px solid rgba(0,0,0,0.05); }
.border-none { border: none !important; }

/* Backgrounds Fixed! (Using background-color instead of background to save inline images) */
.bg-light { background-color: rgba(255, 255, 255, 0.7); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.5); }
.bg-white { background-color: #fff !important; }
.bg-dark { background-color: var(--primary-text) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-light-blue { background-color: var(--blue-light) !important; }
.bg-accent-light { background-color: var(--accent-light) !important; }
.bg-purple-light { background-color: var(--purple-light) !important; }
.bg-green-light { background-color: var(--green-light) !important; }
.text-gradient { background: linear-gradient(135deg, var(--primary-color), #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-blue { background: linear-gradient(135deg, #1e3a8a, var(--primary-color)) !important; }
.gradient-animated { background: linear-gradient(-45deg, #090914, #1f1442, #070e1c, #160a2b) !important; background-size: 400% 400% !important; animation: gradientBG 15s ease infinite !important; }
@keyframes gradientBG { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.overlay-dark { position: relative; z-index: 1; }
.overlay-dark::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.95), rgba(15,23,42,0.4)); z-index: -1; }
.opacity-80 { opacity: 0.8; } .opacity-90 { opacity: 0.9; }

/* Effects */
.hover-float { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease; }
.hover-float:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); z-index: 10; }
.hover-lift { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.hover-lift:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.hover-glow { transition: all 0.3s ease; border: 1px solid var(--border-color); }
.hover-glow:hover { box-shadow: 0 0 40px rgba(37, 99, 235, 0.15); border-color: rgba(37, 99, 235, 0.3); }
.hover-glow-subtle:hover { box-shadow: 0 0 30px rgba(0,0,0,0.05); }
.glow-icon { filter: drop-shadow(0 0 12px rgba(37, 99, 235, 0.5)); }
.shadow-sm { box-shadow: 0 4px 12px rgba(0,0,0,0.04); }

/* Bento Container */
.container-bento { display: grid; gap: 24px; }
.bento-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 24px; font-size: 14px; font-weight: 700; border-radius: var(--radius-sm);
    cursor: pointer; border: none; gap: 8px; transition: all 0.3s ease; font-family: 'Inter', sans-serif;
    white-space: nowrap; flex-shrink: 0;
}
.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: none;
    border: 1px solid var(--primary-color);
}
.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    box-shadow: none;
}
.btn-glow { box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3); }
.btn-glow:hover { box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4); }
.btn-outline { background: transparent; border: 2px solid var(--border-color); color: var(--primary-text); }
.btn-outline:hover { background: var(--bg-color); border-color: #cbd5e1; }
.btn-white { background: #fff; border: 1px solid #fff; }
.btn-white:hover { background: rgba(255,255,255,0.9); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.btn-large { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-sm); }
.btn-circular { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-color); background: #fff; color: var(--primary-text); cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; justify-content: center; }
.btn-circular:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.hover-solid-white:hover { background: #fff !important; color: var(--primary-text) !important; }

/* Badges & Icons */
.badge { background-color: rgba(255,255,255,0.2); color: #fff; padding: 4px 8px; border-radius: 6px; font-size: 11px; font-weight: 800; margin-right: 8px; }
.badge-accent { background-color: #fff4e5; color: var(--accent); padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 800; }
.badge-blue { background-color: #e0f0ff; color: var(--primary-color); padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 800; }
.badge-blue-light { background-color: #e0f0ff; color: var(--primary-color); padding: 4px 10px; border-radius: 6px; font-size: 10px; font-weight: 800; letter-spacing: 0.5px; }
.badge-pill { display: inline-flex; align-items: center; gap: 8px; background-color: #fff; border: 1px solid var(--border-color); padding: 8px 20px; border-radius: 40px; font-size: 13px; font-weight: 800; letter-spacing: 0.05em; color: var(--text-muted); }
.badge-white { display: inline-flex; align-items: center; gap: 8px; background-color: #fff; padding: 6px 14px; border-radius: 40px; font-size: 12px; font-weight: 800; }
.badge-tiny { padding: 2px 6px; border-radius: 4px; font-size: 10px; background-color: var(--border-color); color: var(--text-muted); font-weight: 700; margin-left: 8px; vertical-align: middle; }
.icon-sq { width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; justify-content: center; align-items: center; font-size: 20px; flex-shrink: 0; }

/* Topbar & Header (Premium Yenileme) */
.topbar { background-color: #0f172a; color: #cbd5e1; padding: 12px 0; font-size: 13px; font-weight: 500; margin-bottom: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-actions span { transition: color 0.2s; cursor: pointer; }
.top-actions span:hover { color: #fff; }

.navbar { background-color: rgba(255, 255, 255, 0.95); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; backdrop-filter: saturate(180%) blur(20px); box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
.navbar-inner { display: flex; justify-content: space-between; align-items: center; height: 88px; }
.logo-text { font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 800; font-style: italic; color: var(--primary-text); letter-spacing: -0.05em; }
.logo-x { color: transparent; -webkit-text-stroke: 1.5px var(--primary-color); font-weight: 700; }

.nav-links { display: flex; gap: 24px; height: 100%; align-items: center; }
.nav-links .nav-item { position: relative; display: flex; align-items: center; height: 100%; font-weight: 500; color: #222222; font-size: 16px; transition: color 0.2s; cursor: pointer; }
.nav-links .nav-item i { font-size: 10px; margin-left: 6px; opacity: 0.6; transition: transform 0.2s; }
.nav-links .nav-item:hover { color: var(--primary-color); }
.nav-links .nav-item:hover i { transform: rotate(180deg); color: var(--primary-color); }
.nav-links .nav-item::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--primary-color); border-radius: 2px 2px 0 0; transform: scaleX(0); transition: transform 0.2s ease; }
.nav-links .nav-item:hover::after { transform: scaleX(1); }

/* MEGA MENU */
.has-mega-menu { position: relative; }
.mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 820px; background: #fff; border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,0.13); border: 1px solid var(--border-color); padding: 18px; margin-top: 10px; display: none; z-index: 1000; cursor: default; }
.mega-menu::before { content: ''; position: absolute; top: -24px; left: 0; right: 0; height: 24px; }
.nav-links > div:nth-last-of-type(-n+2) .mega-menu { left: auto; right: 0; transform: none; }
.has-mega-menu:hover .mega-menu { display: block; }
.mega-left { display: none; }
.mega-right { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: 100%; }
.mega-col { display: contents; }
.mega-title { display: none; }
.mega-link { display: flex; align-items: center; gap: 14px; border-radius: 12px; padding: 15px 16px; transition: background 0.15s, border-color 0.15s, box-shadow 0.15s; text-decoration: none; border: 1.5px solid #e8edf4; background: #fff; min-width: 0; }
.mega-link:hover { background: #f0f5ff; border-color: #c7d9f8; box-shadow: 0 4px 16px rgba(25,107,222,0.08); }
.mega-link .icon-sq { width: 46px; height: 46px; font-size: 19px; border-radius: 11px; flex-shrink: 0; background: #f1f5f9; color: #94a3b8; display: flex; align-items: center; justify-content: center; border: 1px solid #e2e8f0; align-self: center; line-height: 1; }
.mega-link .icon-sq i { display: block; line-height: 1; }
.icon-sq-grey { background: #f1f5f9 !important; color: #94a3b8 !important; border-color: #e2e8f0 !important; }
.mega-link strong { display: flex; align-items: center; gap: 5px; font-size: 16px; font-weight: 700; color: var(--primary-text); transition: color 0.15s; line-height: 1.3; white-space: nowrap; }
.mega-link span { display: block; font-size: 13.5px; color: var(--text-muted); line-height: 1.45; margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mega-link div:last-child { display: flex; flex-direction: column; min-width: 0; overflow: hidden; }
.mega-link:hover strong { color: var(--primary-color); }
.mega-link:hover .icon-sq { background: #e8ecf0; color: #64748b; border-color: #d1d9e0; }
.mega-link .badge-tiny { font-size: 9px; padding: 2px 6px; border-radius: 4px; font-weight: 700; white-space: nowrap; }

.header-actions { display: flex; gap: 12px; align-items: center; }

/* Section Titles */
.section-title { font-size: 40px; margin-bottom: 16px; letter-spacing: -0.03em; }
.section-subtitle { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* 1. Minimal Hero Slider */
.section-hero { position: relative; }
.hero-minimal-slider { position: relative; overflow: hidden; min-height: 520px; width: 100%; }
.hero-slide-min { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; opacity: 0; pointer-events: none; transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1); background: transparent; }
.hero-slide-min.active { opacity: 1; pointer-events: auto; z-index: 2; }
.hero-sl-left { flex: 1.1; padding-right: 60px; transform: translateX(-30px); opacity: 0; transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s; }
.hero-slide-min.active .hero-sl-left { transform: translateX(0); opacity: 1; }
.hero-sl-right { flex: 0.9; height: 100%; display: flex; justify-content: flex-end; align-items: center; transform: translateX(30px); opacity: 0; transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s; }
.hero-slide-min.active .hero-sl-right { transform: translateX(0); opacity: 1; }
.badge-dot { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 24px; text-transform: uppercase; }
.badge-dot .dot { width: 8px; height: 8px; border-radius: 50%; display: block; box-shadow: 0 0 8px rgba(0,0,0,0.1); }
.hero-brand-label { display: block; font-size: 14px; font-weight: 600; color: var(--text-muted); margin-bottom: 14px; letter-spacing: 0; }
.hero-title { font-size: 52px; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.03em; font-weight: 700; }
.hero-title-bold { font-weight: 700; color: var(--primary-text); }
.hero-title-light { font-weight: 400; color: var(--primary-text); }
.hero-desc { font-size: 17px; line-height: 1.65; max-width: 500px; margin-bottom: 12px; color: var(--text-muted); }
.hero-label { display: block; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.hero-mini-desc { font-size: 16px; color: var(--text-muted); font-weight: 500; margin-bottom: 0; letter-spacing: -0.2px; }
.hero-cta { display: inline-flex; margin-top: 28px; }
.slide-graphic { max-width: 100%; border-radius: 0; box-shadow: none; border: none; background: transparent; object-fit: cover; height: 440px; aspect-ratio: 4/3; }
.hero-tab-nav { display: flex; border-top: 1.5px solid var(--border-color); margin-top: 48px; gap: 0; }
.hero-tab { flex: 1; padding: 18px 12px; font-size: 14px; font-weight: 600; color: var(--text-muted); background: transparent; border: none; border-bottom: 2.5px solid transparent; margin-bottom: -1.5px; cursor: pointer; transition: all 0.2s; letter-spacing: -0.2px; }
.hero-tab:hover { color: var(--primary-color); }
.hero-tab.active { color: var(--primary-color); border-bottom-color: var(--primary-color); }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--primary-color); background: transparent; cursor: pointer; transition: all 0.3s ease; }
.hero-dot.active { background: var(--primary-color); width: 24px; border-radius: 4px; }
.hero-features span { display: inline-flex; align-items: center; }
.trust-bar { display: flex; align-items: center; gap: 28px; background: #fff; border: 1.5px solid var(--border-color); border-radius: 16px; padding: 20px 32px; }
.trust-bar-text { display: flex; flex-direction: column; gap: 2px; min-width: 200px; }
.trust-bar-text strong { font-size: 15px; font-weight: 800; color: var(--primary-text); line-height: 1.3; }
.trust-bar-text span { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.trust-divider { width: 1px; height: 44px; background: var(--border-color); flex-shrink: 0; }
.trust-item { display: flex; align-items: center; gap: 14px; flex: 1; justify-content: center; }
.trust-logo { display: flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 700; color: var(--primary-text); }
.trust-stars { display: flex; gap: 3px; font-size: 16px; }
.trust-score { display: flex; flex-direction: column; gap: 1px; }
.trust-score .trust-label { font-size: 11px; color: var(--text-muted); font-weight: 600; }
.trust-score strong { font-size: 17px; font-weight: 800; color: var(--primary-text); line-height: 1; }

/* 2. Domain Block */
.section-domain { padding-bottom: 80px; }
.domain-wrapper { display: flex; align-items: center; gap: 48px; padding: 48px; border: 1px solid rgba(37, 99, 235, 0.1); background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); }
.domain-left { flex: 1.2; }
.domain-left .sub-text { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.domain-left h2 { font-size: 36px; margin: 12px 0 32px 0; }
.domain-form { display: flex; background-color: #fff; border: 2px solid var(--border-color); border-radius: var(--radius); padding: 8px; align-items: center; transition: border-color 0.3s; }
.domain-form:focus-within { border-color: var(--primary-color); box-shadow: 0 0 0 4px rgba(37,99,235,0.1); }
.domain-form > i { margin: 0 20px; color: var(--text-muted); font-size: 20px; }
.domain-form input { flex: 1; border: none; font-size: 16px; outline: none; font-weight: 500; font-family: 'Inter', sans-serif; }
.domain-form .btn { padding: 14px 32px; font-size: 16px; }
.domain-right { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; flex: 1; }
.tld-card { border: 1px solid var(--border-color); border-radius: var(--radius-sm); padding: 24px; text-align: center; background-color: #fff; position: relative; }
.tld-card strong { display: block; font-size: 24px; font-weight: 800; font-family: 'Inter', sans-serif; margin-bottom: 4px; }
.tld-card p { font-size: 16px; color: var(--text-muted); font-weight: 600; margin: 0; }
.tld-card.highlight { border-color: var(--accent); box-shadow: 0 8px 24px rgba(255,140,0,0.15); }
.badge-top { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background-color: var(--accent); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 20px; }

/* 3. Certificates */
.certs-grid { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.cert-card { display: flex; align-items: center; gap: 20px; background-color: #fff; padding: 20px 32px; border: 1px solid var(--border-color); border-radius: var(--radius); }
.cert-card i { font-size: 28px; }
.certs-grid-new { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cert-card-new { display: flex; align-items: center; gap: 16px; background: #fff; border: 1.5px solid var(--border-color); border-radius: 16px; padding: 22px 20px; transition: all 0.2s; }
.cert-card-new:hover { border-color: rgba(37,99,235,0.2); box-shadow: 0 8px 24px rgba(0,0,0,0.07); transform: translateY(-2px); }
.cert-icon-wrap { width: 52px; height: 52px; border-radius: 14px; border: 1px solid; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cert-content { flex: 1; }
.cert-content strong { display: block; font-size: 15px; font-weight: 800; color: var(--primary-text); margin-bottom: 3px; }
.cert-content span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.cert-badge { font-size: 13px; font-weight: 800; padding: 6px 12px; border-radius: 8px; flex-shrink: 0; letter-spacing: 0.3px; }
.stars { color: #fbbf24; letter-spacing: 2px; font-size: 16px; }
.cert-text { display: flex; flex-direction: column; text-align: left; }
.cert-text strong { font-size: 16px; color: var(--primary-text); font-weight: 800; font-family: 'Inter', sans-serif;}
.cert-text span { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* 4. Services Bento */
.service-bento { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.box-tech { grid-row: span 2; padding: 48px; background-size: cover; background-position: center; border: none; }
.abstract-icon { font-size: 72px; padding: 24px; background-color: rgba(255,255,255,0.1); border-radius: 50%; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); color: #fff; margin-bottom: 32px; }
.box-tech h3 { font-size: 40px; margin-bottom: 16px; line-height: 1.1; }
.service-card { display: flex; flex-direction: column; padding: 32px; }
.s-card-top { margin-bottom: 24px; }
.s-icon { width: 56px; height: 56px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.service-card h4 { font-size: 22px; margin-bottom: 12px; }
.s-price { font-size: 32px; font-weight: 800; color: var(--primary-text); letter-spacing: -1px; font-family: 'Inter', sans-serif; white-space: nowrap; flex-shrink: 0; }
.s-price span { font-size: 16px; font-weight: 600; color: var(--text-muted); letter-spacing: 0; }
.s-btn { width: 100%; margin-top: 24px; font-size: 16px; }
.flex-1 { flex: 1; }
.s-col-2 { grid-column: span 2; }
.s-col-3 { grid-column: span 3; }
.wp-banner { flex-direction: row !important; padding: 24px 48px; border-color: rgba(37,99,235,0.2); }
.wp-banner-right { min-width: 250px; justify-content: flex-end; }
.s-btn-inline { width: auto; margin-top: 0; }

/* 5. Testimonials */
.section-testimonials { border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.testimonials-slider { display: flex; justify-content: center; gap: 32px; flex-wrap: nowrap; margin-top: 48px; padding: 40px 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.testimonials-slider::-webkit-scrollbar { display: none; }
.testimo-card { flex: 0 0 420px; scroll-snap-align: center; background-color: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); padding: 32px; display: flex; gap: 24px; transition: transform 0.3s; position: relative; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.testimo-card.t-highlight { border-color: var(--primary-color); transform: scale(1.05); box-shadow: 0 16px 40px rgba(37,99,235,0.1); z-index: 2; }
.testimo-card:hover { transform: scale(1.02); }
.testimo-card.t-highlight:hover { transform: scale(1.07); }
.t-image { width: 80px; height: 80px; border-radius: var(--radius-sm); background-size: cover; background-position: top center; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.t-content { flex-grow: 1; text-align: left; }
.t-quote { color: var(--border-color); font-size: 40px; position: absolute; top: 20px; right: 24px; opacity: 0.5; }
.t-highlight .t-quote { color: var(--blue-light); opacity: 1; }
.t-author { margin-bottom: 12px; }
.t-author strong { display: block; font-size: 18px; font-weight: 800; margin-bottom: 4px; font-family: 'Inter', sans-serif;}
.t-author span { font-size: 12px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.t-content p { font-size: 16px; font-style: italic; color: #475569; line-height: 1.6; }
.slider-dots { display: inline-flex; gap: 8px; margin: 0 24px; }
.grid-dot { width: 12px; height: 12px; border-radius: 50%; background-color: var(--border-color); transition: all 0.2s; cursor: pointer; }
.grid-dot.active { background-color: var(--primary-color); transform: scale(1.2); }

/* 6. Ecosystem */
.partners-grid { grid-template-columns: repeat(6, 1fr); gap: 24px; }
.partner-card { padding: 40px 16px; border: 1px solid var(--border-color); }
.p-logo { font-size: 28px; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; font-family: 'Inter', sans-serif;}
.p-role { font-size: 11px; font-weight: 800; letter-spacing: 1px; color: var(--text-muted); }

/* Marquee */
.marquee-wrap {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: marquee-scroll 22s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 56px;
    white-space: nowrap;
    color: #94a3b8 !important;
    filter: grayscale(1) opacity(0.5);
}
@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 7. Bottom CTA */
.cta-inner { border-radius: 24px; overflow: hidden; padding: 64px; }
.cta-content { flex: 1.5; padding-right: 48px; }
.cta-features-box { flex: 1; padding: 48px; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.clean-list li { padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-weight: 600; font-size: 16px; display: flex; align-items: center; gap: 16px; }
.clean-list li i { font-size: 20px; }
.clean-list li:last-child { border: none; padding-bottom: 0; }

/* 8. NEW RICH FOOTER */
.footer-rich { background-color: #fff; border-top: 1px solid var(--border-color); color: var(--primary-text); }
.footer-top-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; padding: 40px 0; }
.f-info-box { box-shadow: none; border-color: var(--border-color); padding: 32px; }
.f-status-badge { padding: 8px 16px; border-radius: 40px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; box-shadow: 0 4px 12px rgba(16,185,129,0.1); }
.dot-green { width: 10px; height: 10px; background-color: var(--green); border-radius: 50%; box-shadow: 0 0 10px var(--green); }

.footer-newsletter { background-color: #f8fafc; }
.newsletter-wrapper { box-shadow: none; border: none; background-color: transparent; padding: 0; }
.newsletter-form { flex: 0.8; background-color: #fff; padding: 8px; border-radius: var(--radius); border: 1px solid var(--border-color); box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.newsletter-form input { flex: 1; border: none; padding: 12px 20px; outline: none; font-size: 16px; font-weight: 500; font-family: 'Inter', sans-serif; }
.newsletter-form button { padding: 14px 36px; border-radius: var(--radius-sm); font-size: 16px; }

.footer-columns { display: grid; grid-template-columns: repeat(5, 1fr); gap: 40px; }
.f-col-title { font-size: 14px; font-weight: 800; letter-spacing: 1px; color: var(--primary-text); margin-bottom: 24px; display: flex; align-items: center; }
.f-links li { margin-bottom: 16px; }
.f-links a { color: var(--text-muted); font-size: 16px; font-weight: 500; }
.f-links a:hover { color: var(--primary-color); padding-left: 6px; }

.f-badge { border: 1px solid var(--border-color); border-radius: var(--radius-sm); }
.f-badge i { font-size: 24px; }

.footer-bottom { border-top: 1px solid var(--border-color); background-color: #f8fafc; }
.logo-mini .logo-text { font-size: 22px; }
.f-bottom-links a { margin-right: 24px; color: var(--text-muted); }
.f-bottom-links a:hover { color: var(--primary-color); }
.p-badge { font-size: 12px; padding: 6px 10px; background-color: #fff; border: 1px solid var(--border-color); border-radius: 6px; display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); font-weight: 600; }

/* 9. Client Dropdown Menu (Glassmorphism) */
.client-dropdown-wrapper { position: relative; }
.client-dropdown-menu::before { content: ''; position: absolute; top: -16px; left: 0; width: 100%; height: 16px; background: transparent; }
.client-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    width: 260px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}
.client-dropdown-wrapper:hover .client-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.cdm-header { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 20px; text-align: center; }
.w-100 { width: 100%; }
.btn-glassy { border: 1px solid var(--border-color); background: var(--bg-color); color: var(--text-muted); }
.btn-glassy:hover { background: var(--border-color); color: var(--primary-text); }
.cdm-divider { height: 1px; background: var(--border-color); margin: 20px 0; }
.cdm-footer { display: flex; flex-direction: column; gap: 8px; }
.cdm-link { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 10px; transition: background 0.2s; text-decoration: none; }
.cdm-link:hover { background: var(--bg-color); }
.cdm-link:hover strong { color: var(--primary-color) !important; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 32px; }

/* =======================================================
   VDS SUNUCU CUSTOM STYLES
   ======================================================= */

/* VDS Hero Features */
.vds-hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.vds-hero-features div { display: flex; flex-direction: column; }
.vds-hero-features strong { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; color: var(--primary-text); }
.vds-hero-features strong i { color: var(--primary-color); }
.vds-hero-features span { font-size: 12px; color: var(--text-muted); padding-left: 22px; margin-top: 2px; }

/* OS Grid */
.os-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 48px; }
.os-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-sm); padding: 16px 14px; display: flex; align-items: center; gap: 12px; transition: box-shadow 0.2s, border-color 0.2s; }
.os-card:hover { border-color: rgba(25,107,222,0.3); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.os-logo-wrap { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.os-logo-wrap img { width: 32px; height: 32px; object-fit: contain; }
.os-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--primary-text); line-height: 1.2; }
.os-info span { font-size: 11px; color: #047857; font-weight: 700; }

/* VDS Pricing Switcher */
.vds-switcher { display: flex; align-items: center; justify-content: center; background: var(--bg-color); border-radius: 40px; padding: 6px; width: fit-content; margin: 0 auto; gap: 4px; border: 1px solid var(--border-color); }
.vds-switch-btn { padding: 10px 24px; border-radius: 30px; font-weight: 700; font-size: 14px; color: var(--text-muted); cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 8px; border: none; background: transparent; font-family: 'Inter', sans-serif; }
.vds-switch-btn.active { background: #fff; color: var(--primary-text); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }

/* ═══════════════════════════════════════════
   VDS PRICING TABLE — REDESIGNED
   ═══════════════════════════════════════════ */

/* Columns: Name | CPU | RAM | Disk | Net | OS | Price | Btn */
:root { --vds-cols: 180px repeat(4, 1fr) 80px 220px 150px; }

.vds-table-wrapper {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    margin-top: 32px;
    box-shadow: none;
}

/* — Header — */
.vds-table-head {
    display: none;
    grid-template-columns: var(--vds-cols);
    padding: 13px 28px;
    background: #f7f9fc;
    border-bottom: 1px solid #e8edf5;
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    align-items: center;
    text-align: center;
}
.vds-table-head span:first-child { text-align: left; }
.vds-table-head span:nth-last-child(-n+2) { text-align: center; }

/* — Data Row — */
.vds-table-wrapper { display: flex; flex-direction: column; gap: 10px; }
.vds-table-row {
    display: grid;
    grid-template-columns: var(--vds-cols);
    gap: 16px;
    padding: 18px 28px;
    min-height: 88px;
    border-radius: 16px;
    border: 1px solid #e8edf5;
    background: white;
    align-items: center;
    transition: all 0.2s;
}
.vds-table-row:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); border-color: #c7d7f0; transform: translateY(-1px); }
.vds-table-row.pop { border: 2px solid #196BDE; box-shadow: 0 4px 20px rgba(25,107,222,0.10); }
.vds-table-row.pop .vds-server-name { color: #196BDE; }
.vds-table-row.pop .vds-spec { background: #eff6ff; }
.vds-table-row.pop .vds-spec b { color: #196BDE; }
.vds-table-row.pop .vds-spec-icon { color: #196BDE; }

/* — Server Name — */
.vds-server-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-text);
    letter-spacing: -0.3px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 8px;
}

/* — Spec Cell — */
.vds-spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    background: #f8fafc;
    border-radius: 10px;
    padding: 10px 6px;
}
.vds-spec b {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
}
.vds-spec small {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}
.vds-spec-icon {
    font-size: 13px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* — OS Icons — */
.vds-os-wrap {
    display: flex;
    flex-direction: row;
    gap: 7px;
    align-items: center;
    justify-content: center;
}
.vds-os-wrap i { font-size: 20px; }

/* — Price Cell — */
.vds-price-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding-right: 8px;
}
.vds-price-big {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--primary-text);
    line-height: 1;
}
.vds-price-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.vds-price-old {
    font-size: 12px;
    font-weight: 500;
    color: #718096;
    text-decoration: line-through;
    line-height: 1;
}
.vds-price-period {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1;
}

/* — Popular badge pill (server pages) — */
.vds-server-name .badge-tiny {
    background: #e0eeff !important;
    color: #1054b0 !important;
    border-radius: 20px !important;
    padding: 4px 12px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.4px;
}

/* — CTA Button inside row — */
.vds-table-row .btn {
    width: 126px !important;
    font-size: 13px !important;
    padding: 11px 0 !important;
    border-radius: 10px !important;
    justify-content: center !important;
    gap: 7px !important;
    font-weight: 700 !important;
    margin: 0 auto;
    background: #196BDE !important;
    color: #fff !important;
    border: none !important;
    display: flex !important;
}

/* ─ VDS Feature Cards ─ */
.vds-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vds-feature-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.vds-feature-icon { width: 52px; height: 52px; background: var(--bg-color); border: 1px solid var(--border-color); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary-text); }
.vds-feature-card h3 { font-size: 16px; font-weight: 800; color: var(--primary-text); margin: 0; }
.vds-feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin: 0; font-weight: 400; }

/* ─ Responsive ─ */
@media (max-width: 1200px) {
    :root { --vds-cols: 155px repeat(4, 1fr) 70px 195px 132px; }
    .vds-table-head, .vds-table-row { padding-left: 18px; padding-right: 18px; }
    .vds-price-big { font-size: 36px; }
}
@media (max-width: 1060px) {
    :root { --vds-cols: 130px repeat(4, 1fr) 60px 170px 116px; }
    .vds-table-head, .vds-table-row { padding-left: 14px; padding-right: 14px; }
    .vds-price-big { font-size: 30px; }
    .vds-spec b { font-size: 14px; }
    .vds-spec small { font-size: 11px; }
}
@media (max-width: 992px) {
    .os-grid { grid-template-columns: repeat(3, 1fr); }
    .vds-features-grid { grid-template-columns: repeat(2, 1fr); }
    .vds-table-head { display: none; }
    .vds-table-row { grid-template-columns: 1fr 1fr 1fr; gap: 16px; padding: 20px 16px; min-height: auto; }
    .vds-table-row > *:last-child { grid-column: 1 / -1; }
    .vds-table-row .btn { width: 100% !important; }
    .vds-spec { align-items: flex-start; text-align: left; }
}
@media (max-width: 768px) {
    .os-grid { grid-template-columns: repeat(2, 1fr); }
    .vds-features-grid { grid-template-columns: 1fr; }
    .vds-table-row { grid-template-columns: 1fr 1fr; }
}

/* =======================================================
   LINUX HOSTING CUSTOM STYLES
   ======================================================= */
/* Pricing Switcher */
.hosting-switcher { display: flex; align-items: center; justify-content: center; background: var(--bg-color); border-radius: 40px; padding: 6px; width: fit-content; margin: 0 auto; gap: 8px; border: 1px solid var(--border-color); }
.hs-btn { padding: 10px 24px; border-radius: 30px; font-weight: 700; font-size: 14px; color: var(--text-muted); cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 8px; border: none; }
.hs-btn.active { background: #fff; color: var(--primary-text); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }

/* Pricing Cards – V5 Style */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.pricing-card {
  background: #fff;
  border: 1.5px solid #e8edf5 !important;
  border-left: 5px solid #e2e8f0 !important;
  border-radius: 20px;
  padding: 36px 28px 32px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  transform: none !important;
  box-shadow: none !important;
}
.pricing-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.08) !important; transform: translateY(-2px) !important; }
.pricing-card:hover .pc-price { color: var(--primary-color) !important; }
.pricing-card:hover .pc-btn { background: var(--primary-color) !important; color: #fff !important; }

.pc-title { font-size: 22px; font-weight: 900; color: var(--primary-text); margin-bottom: 6px; letter-spacing: -0.3px; display: block; }
.pc-subtitle { font-size: 14px; font-weight: 700; color: var(--primary-text); display: block; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pc-spec { font-size: 14px; color: var(--text-muted); display: inline; }
.pc-spec + .pc-spec::before { content: " · "; color: #94a3b8; }
.pc-specs-row { display: block; margin-bottom: 20px; }

.pc-price-box { margin: 20px 0 4px; display: flex !important; align-items: flex-end !important; justify-content: flex-start !important; gap: 6px; }
.pc-price { font-size: 58px !important; font-weight: 900 !important; line-height: 1 !important; letter-spacing: -3px !important; color: var(--primary-text) !important; transition: color 0.2s; }
.pc-pright { display: flex; flex-direction: column !important; gap: 3px; padding-bottom: 7px; align-items: flex-start !important; transform: none !important; }
.pc-pold { font-size: 14px !important; font-weight: 400 !important; color: #718096 !important; text-decoration: line-through !important; line-height: 1 !important; margin-bottom: 0 !important; }
.pc-pper { font-size: 14px !important; font-weight: 600 !important; color: var(--text-muted) !important; line-height: 1 !important; letter-spacing: 0 !important; }

.pc-gift {
  display: flex !important;
  align-items: center;
  gap: 8px;
  background: #fef9c3 !important;
  color: #854d0e !important;
  border: 1.5px solid #fde047;
  font-size: 13px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  padding: 11px 14px !important;
  margin-top: 6px;
  margin-bottom: 26px;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 0 !important;
}
.pc-gift::before { content: "🎁"; font-size: 15px; }

.pc-features { text-align: left; margin-bottom: 28px; flex-grow: 1; }
.pc-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 400; margin-bottom: 12px; color: var(--primary-text); }
.pc-features li i {
  width: 32px !important; height: 32px !important;
  background: #f1f5f9; color: #94a3b8 !important;
  border-radius: 9px;
  display: inline-flex !important;
  align-items: center; justify-content: center;
  font-size: 13px !important;
  flex-shrink: 0;
  text-align: center;
}

.pc-btn {
  width: 100%; justify-content: center;
  background: #f1f5f9 !important; color: var(--primary-text) !important;
  border: none !important; font-weight: 700; font-size: 16px;
  padding: 15px; margin-bottom: 10px;
  transition: all 0.2s !important; border-radius: 12px;
}
.pc-btn:hover { background: var(--primary-color) !important; color: #fff !important; transform: none !important; box-shadow: none !important; }
.pc-all-feat {
  display: flex; align-items: center; justify-content: center;
  text-align: center; width: 100%; font-size: 14px; font-weight: 600;
  color: var(--text-muted); border: 1.5px solid var(--border-color);
  background: transparent; padding: 12px; border-radius: 12px;
  cursor: pointer; transition: all 0.2s; text-decoration: none; box-sizing: border-box;
}
.pc-all-feat:hover { border-color: var(--primary-color); color: var(--primary-color); background: #f0f6ff; }

/* Circle Features */
.circle-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.cf-item { display: flex; gap: 24px; align-items: flex-start; }
.cf-icon { width: 80px; height: 80px; background: #1e293b; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; flex-shrink: 0; box-shadow: 0 8px 24px rgba(30,41,59,0.2); }
.cf-content h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--primary-text); }
.cf-content p { font-size: 15px; color: var(--text-muted); line-height: 1.75; font-weight: 400; }

/* Compare Table */
.compare-table-wrapper { overflow-x: auto; background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); padding: 0; }
.compare-table { width: 100%; border-collapse: collapse; text-align: center; min-width: 800px; }
.compare-table th { padding: 24px 16px; border-bottom: 1px solid var(--border-color); font-weight: 800; font-size: 14px; background: #f8fafc; }
.compare-table th.feature-col { text-align: left; padding-left: 32px; width: 25%; }
.compare-table td { padding: 20px 16px; border-bottom: 1px solid var(--border-color); font-size: 14px; font-weight: 600; color: var(--primary-text); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.feature-col { text-align: left; padding-left: 32px; font-weight: 700; color: var(--primary-text); }
.compare-table td.feature-col i { color: var(--text-muted); font-size: 16px; width: 24px; text-align: center; margin-right: 8px; }
.ct-pack-name { display: block; font-size: 16px; color: var(--primary-text); margin-bottom: 4px; }
.ct-pack-sub { display: block; font-size: 12px; color: var(--text-muted); font-weight: 600; }
.ct-check { color: var(--primary-text); font-weight: bold; }

/* FAQ Accordion */
.faq-wrapper { max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-item:last-child { border-bottom: none; }
.faq-question { padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 17px; color: var(--primary-text); transition: background 0.2s; gap: 16px; }
.faq-question:hover { background: #f8fafc; }
.faq-question i { color: var(--text-muted); font-size: 12px; transition: transform 0.3s; flex-shrink: 0; }
.faq-answer { padding: 0 28px; max-height: 0; overflow: hidden; transition: all 0.3s ease; font-size: 16px; color: var(--text-muted); line-height: 1.8; }
.faq-answer p { margin-bottom: 0; }
.faq-item.active .faq-question { background: var(--blue-light); color: var(--primary-text); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary-color); }
.faq-item.active .faq-answer { padding: 24px 28px; max-height: 600px; border-top: 1px solid var(--border-color); }

/* Custom Hero Layout */
.lh-hero-flex { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.lh-hero-content { flex: 1; }
.lh-hero-image { flex: 1; display: flex; justify-content: flex-end; }
.lh-hero-image img { max-width: 100%; height: auto; }
.hero-logos { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; margin-top: 32px; }
.hero-logos img { height: 36px; object-fit: contain; opacity: 0.9; }

.lh-features-list { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lh-features-list div { display: flex; flex-direction: column; }
.lh-features-list strong { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; color: var(--primary-text); }
.lh-features-list strong i { color: var(--primary-color); }
.lh-features-list span { font-size: 12px; color: var(--text-muted); padding-left: 22px; margin-top: 2px; }
@media (max-width: 992px) { 
    .features-grid { grid-template-columns: repeat(2, 1fr); } 
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .circle-features-grid { grid-template-columns: 1fr; }
    .lh-hero-flex { flex-direction: column; }
    .lh-hero-image { justify-content: center; margin-top: 40px; }
}
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }

@media (max-width: 1200px) {
    .container { padding: 0 32px; }
    .nav-links { gap: 16px; }
    .nav-links .nav-item { font-size: 15px; }
    .service-bento { grid-template-columns: repeat(2, 1fr); }
    .box-tech { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 992px) {
    .container { padding: 0 24px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-columns { grid-template-columns: repeat(3, 1fr); }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    /* Genel Yapılar */
    .container { padding: 0 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .lh-features-list { grid-template-columns: 1fr; }
    .hero-logos { justify-content: center; gap: 24px; }
    .cf-item { flex-direction: column; align-items: center; text-align: center; }
    .d-none-mobile { display: none !important; }
    .mt-mobile { margin-top: 16px !important; }
    .wrap-mobile { flex-wrap: wrap; }

    /* Topbar (duyuru çubuğu) - mobilde gizle */
    .topbar { display: none !important; }

    /* Tipografi Küçültmeleri */
    .hero-title { font-size: 32px !important; line-height: 1.2 !important; margin-bottom: 16px; }
    .section-title { font-size: 26px !important; letter-spacing: -0.02em !important; line-height: 1.25 !important; }
    .section-subtitle { font-size: 15px !important; line-height: 1.7 !important; }
    .hero-desc { font-size: 15px; line-height: 1.7; }
    .faq-question { font-size: 15px; padding: 18px 20px; }
    .faq-answer { font-size: 15px; padding: 0 20px; }
    .faq-item.active .faq-answer { padding: 20px; }
    h1 { font-size: 30px !important; line-height: 1.25 !important; }
    h2 { font-size: 24px !important; line-height: 1.3 !important; }
    h3 { font-size: 20px !important; }

    /* Nav & Hero */
    .nav-links { display: none; }
    .navbar-inner { justify-content: space-between; }
    .header-right { flex-wrap: nowrap; }
    .header-right .btn { padding: 10px 16px !important; font-size: 13px !important; }
    .header-right .btn span { display: none; }
    .hero-minimal-slider { min-height: auto !important; }
    .section-hero { padding-top: 24px !important; padding-bottom: 24px !important; }
    .hero-slide-min { flex-direction: column; text-align: center; padding: 24px 0; }
    .hero-sl-left { padding-right: 0; margin-bottom: 0; flex: auto; width: 100%; }
    /* Slider görsellerini mobilde gizle */
    .hero-sl-right, .slide-graphic { display: none !important; }
    .hero-features { justify-content: center; gap: 12px !important; margin-top: 24px !important; display: flex; flex-wrap: wrap; }
    .hero-features span { width: 45%; justify-content: center; background: #f8fafc; padding: 10px; border-radius: 8px; border: 1px solid var(--border-color); font-size: 12px !important; }

    /* Hero stat row (4 sütun) → 2x2 */
    .hero-stats, .stats-row { flex-wrap: wrap !important; }

    /* Domain Bölümü */
    .domain-wrapper { flex-direction: column; padding: 24px !important; text-align: center; }
    .domain-right { grid-template-columns: 1fr; width: 100%; }
    .domain-form { flex-direction: column; background: transparent; border: none; padding: 0; }
    .domain-form input { width: 100%; border: 2px solid var(--border-color); border-radius: var(--radius); padding: 12px 20px; margin-bottom: 12px; }
    .domain-form .btn { width: 100%; }
    .domain-form > i { display: none; } /* Gizle ikonları çünkü input alanı daraldı */

    /* Hizmet Vitrini */
    .service-bento { grid-template-columns: 1fr; }
    .box-tech, .s-col-2, .s-col-3 { grid-column: span 1; }
    .box-tech { padding: 32px; }
    .wp-banner { flex-direction: column !important; text-align: center; padding: 24px; }
    .wp-banner-right { margin-top: 24px; border-left: none !important; border-top: 1px dashed var(--border-color); padding-left: 0 !important; padding-top: 24px; min-width: auto; justify-content: center; }

    /* Ekosistem ve Ortaklar */
    .partners-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px; }

    /* Müşteri Yorumları Mobil */
    .testimonials-slider { padding: 24px 16px; margin-top: 24px; gap: 16px; }
    .testimo-card { flex: 0 0 85%; padding: 24px; flex-direction: column; text-align: center; align-items: center; gap: 16px; }
    .testimo-card.t-highlight { transform: none; }

    /* VDS / Hosting Paket Tablosu - horizontal scroll yerine kart görünümü */
    .vds-table-wrapper { border-radius: 12px; }
    .vds-table-head { display: none !important; }
    .vds-table-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 16px !important;
        border-bottom: 1px solid var(--border-color);
        position: relative;
    }
    .vds-table-row .vds-server-name { grid-column: span 2; font-size: 16px; font-weight: 800; margin-bottom: 8px; }
    .vds-table-row .vds-spec { font-size: 13px; }
    .vds-table-row .vds-os-wrap { justify-content: flex-start; }
    .vds-table-row .vds-price-wrap { grid-column: span 2; margin-top: 8px; justify-content: flex-start; }
    .vds-table-row .btn, .vds-table-row .pc-btn { grid-column: span 2; width: 100%; justify-content: center; }

    /* Genel görsel/section düzenlemeleri */
    section [style*="flex:0 0 460px"],
    section [style*="flex:0 0 440px"],
    section [style*="flex:0 0 420px"],
    section [style*="flex:0 0 400px"],
    section [style*="flex:0 0 380px"] { flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important; }
    section [style*="display:flex"][style*="gap:72px"],
    section [style*="display:flex"][style*="gap: 72px"],
    section [style*="display:flex"][style*="gap:56px"],
    section [style*="display:flex"][style*="gap: 56px"],
    section [style*="display:flex"][style*="gap:48px"],
    section [style*="display:flex"][style*="gap: 48px"] { flex-direction: column !important; gap: 32px !important; }

    /* Hero geniş başlıklar */
    h1[style*="font-size:52px"], h1[style*="font-size: 52px"] { font-size: 32px !important; letter-spacing: -1px !important; }
    h1[style*="font-size:46px"], h1[style*="font-size: 46px"] { font-size: 30px !important; letter-spacing: -0.5px !important; }

    /* Pricing card price küçültme */
    .pc-price { font-size: 44px !important; letter-spacing: -2px !important; }
    .pc-title { font-size: 18px !important; }

    /* Footer kolonları */
    .footer-columns { grid-template-columns: 1fr 1fr !important; gap: 32px 24px !important; }
    .footer-bottom { flex-direction: column !important; gap: 12px; text-align: center; }

    /* CTA butonları full-width */
    .btn-large { padding: 14px 24px !important; font-size: 15px !important; }
}

/* VDS oyun sayfaları hero stats row mobil */
@media (max-width: 768px) {
    section [style*="border-top:1px solid var(--border-color)"][style*="padding-top:28px"] {
        flex-wrap: wrap !important;
        gap: 16px 0 !important;
    }
    section [style*="border-top:1px solid var(--border-color)"][style*="padding-top:28px"] > div {
        flex: 0 0 50% !important;
        padding: 0 12px !important;
        border-left: none !important;
        box-sizing: border-box;
    }
    /* Hero stats sayı boyutu */
    section [style*="border-top:1px solid var(--border-color)"][style*="padding-top:28px"] span[style*="font-size:22px"] {
        font-size: 18px !important;
    }

    /* Servis panel mockup'ları (canlı sunucu kartı) mobil */
    [style*="display:grid"][style*="grid-template-columns:1fr 1fr 1fr"] {
        gap: 8px !important;
    }

    /* Hero badge mobil */
    [style*="display:inline-flex"][style*="border-radius:30px"][style*="font-size:12px"] {
        font-size: 11px !important;
        padding: 5px 12px !important;
    }

    /* VDS oyun sayfası hero CTA - butonlar full-width yerine yan yana */
    section [style*="display:flex"][style*="gap:12px"][style*="flex-wrap:wrap"] > .btn {
        flex: 1 1 calc(50% - 6px) !important;
        justify-content: center;
    }

    /* Image container'lar - shadow ve filter mobilde küçült */
    img[style*="filter:drop-shadow"] { filter: none !important; }
}

/* Çok küçük ekranlar (eski telefonlar) */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .footer-columns { grid-template-columns: 1fr !important; }
    .partners-grid { grid-template-columns: 1fr !important; }
    .hero-features span { width: 100% !important; }
    h1, h1[style*="font-size:52px"], h1[style*="font-size: 52px"] { font-size: 28px !important; }
    .section-title, h2 { font-size: 22px !important; }
    .pc-price { font-size: 40px !important; }
}

/* FontAwesome font-display: swap overrides for Google PageSpeed */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-regular-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2') format('woff2');
}

/* =======================================================
   MOBILE DRAWER & NAVIGATION MENU STYLES
   ======================================================= */

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--primary-text);
    cursor: pointer;
    padding: 8px;
    outline: none;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}

/* Mobil Menü Çekmecesi */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu-drawer.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
    border-bottom: 1px solid #e2e8f0;
}
.mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--text-muted);
    cursor: pointer;
    outline: none;
}
.mobile-menu-body {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-nav-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-text);
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #f1f5f9;
}
.mobile-nav-group {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
}
.mobile-nav-group-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-text);
    padding: 10px 0;
    cursor: pointer;
}
.mobile-nav-group-title i {
    font-size: 10px;
    transition: transform 0.2s;
    color: var(--text-muted);
}
.mobile-nav-group.open .mobile-nav-group-title i {
    transform: rotate(180deg);
}
.mobile-nav-group-items {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 4px 0 8px 12px;
}
.mobile-nav-group.open .mobile-nav-group-items {
    display: flex;
}
.mobile-nav-group-items a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 6px 0;
    display: block;
}
.mobile-nav-group-items a:hover {
    color: var(--primary-color);
}

/* Karartma Overlay */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}
.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* =======================================================
   RESPONSIVENESS PATCHES & MOBILE OPTIMIZATIONS
   ======================================================= */

@media (max-width: 992px) {
    /* Dynamic Layout Stack for Row-Reverse / Side-by-Side Flex Items */
    .lh-hero-flex,
    .container.lh-hero-flex,
    [style*="flex-direction:row-reverse"],
    [style*="flex-direction: row-reverse"] {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Responsive Inline Flex Sections */
    section [style*="display:flex"][style*="gap:72px"],
    section [style*="display:flex"][style*="gap: 72px"],
    section [style*="display: flex"][style*="gap:72px"],
    section [style*="display: flex"][style*="gap: 72px"],
    section [style*="display:flex"][style*="gap:56px"],
    section [style*="display:flex"][style*="gap: 56px"],
    section [style*="display: flex"][style*="gap:56px"],
    section [style*="display: flex"][style*="gap: 56px"],
    section [style*="display:flex"][style*="gap:48px"],
    section [style*="display:flex"][style*="gap: 48px"],
    section [style*="display: flex"][style*="gap:48px"],
    section [style*="display: flex"][style*="gap: 48px"] {
        flex-direction: column !important;
        gap: 32px !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* Force hero visual graphics and side images to be fully responsive */
    .lh-hero-image,
    [class*="-hero-visual"],
    [style*="flex: 0 0 400px"],
    [style*="flex:0 0 400px"],
    [style*="flex: 0 0 480px"],
    [style*="flex:0 0 480px"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        justify-content: center !important;
        margin-top: 24px !important;
    }
    
    .lh-hero-content {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
    }

    /* Overrides for inline multi-column grids on tablets */
    [style*="grid-template-columns:repeat(3,1fr)"],
    [style*="grid-template-columns:repeat(3, 1fr)"],
    [style*="grid-template-columns: repeat(3,1fr)"],
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    [style*="grid-template-columns:repeat(4,1fr)"],
    [style*="grid-template-columns:repeat(4, 1fr)"],
    [style*="grid-template-columns: repeat(4,1fr)"],
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    /* Main Footer columns responsiveness override */
    [style*="grid-template-columns:1.6fr 1fr 1fr 1fr 1fr"],
    [style*="grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr"] {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 32px 24px !important;
    }
}

@media (max-width: 768px) {
    /* Trust Bar Mobil */
    .trust-bar {
        flex-direction: column !important;
        gap: 16px !important;
        padding: 20px 16px !important;
        text-align: center !important;
    }
    .trust-divider {
        display: none !important;
    }
    .trust-bar-text {
        min-width: auto !important;
        margin-bottom: 8px !important;
    }
    .trust-item {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Collapse all multi-column inline grids to a single column on Mobile */
    [style*="grid-template-columns:repeat(3,1fr)"],
    [style*="grid-template-columns:repeat(3, 1fr)"],
    [style*="grid-template-columns: repeat(3,1fr)"],
    [style*="grid-template-columns: repeat(3, 1fr)"],
    [style*="grid-template-columns:repeat(4,1fr)"],
    [style*="grid-template-columns:repeat(4, 1fr)"],
    [style*="grid-template-columns: repeat(4,1fr)"],
    [style*="grid-template-columns: repeat(4, 1fr)"],
    .loc-card-grid,
    .ded-feature-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Main Footer columns: 2 columns on mobile (highly readable & compact) */
    [style*="grid-template-columns:1.6fr 1fr 1fr 1fr 1fr"],
    [style*="grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px 16px !important;
    }
    [style*="grid-template-columns:1.6fr 1fr 1fr 1fr 1fr"] > div:first-child,
    [style*="grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr"] > div:first-child {
        grid-column: span 2 !important;
        margin-bottom: 16px !important;
    }

    /* Footer Communication Band styling */
    footer [style*="border-right"] {
        border-right: none !important;
        border-bottom: 1px solid #e2e8f0 !important;
        padding-bottom: 20px !important;
        padding-top: 20px !important;
    }
    footer [style*="border-right"]:last-child {
        border-bottom: none !important;
    }

    /* HP Server Specs Band stack on mobile */
    [style*="display:flex"][style*="margin-top:48px"][style*="max-width:860px"] {
        flex-direction: column !important;
        margin-top: 24px !important;
    }
    [style*="display:flex"][style*="margin-top:48px"][style*="max-width:860px"] > div {
        border-left: none !important;
        border-bottom: 1px solid var(--border-color) !important;
        padding: 16px 0 !important;
    }
    [style*="display:flex"][style*="margin-top:48px"][style*="max-width:860px"] > div:last-child {
        border-bottom: none !important;
    }

    /* Prevent Minimal Hero Slider height collapse */
    .hero-minimal-slider {
        min-height: 420px !important;
    }
    
    /* Horizontal swiping for Hero Slider Tabs on Mobile */
    .hero-tab-nav {
        overflow-x: auto !important;
        white-space: nowrap !important;
        display: flex !important;
        justify-content: flex-start !important;
        padding-bottom: 8px !important;
        border-bottom: 1.5px solid var(--border-color) !important;
        -webkit-overflow-scrolling: touch;
    }
    .hero-tab-nav::-webkit-scrollbar {
        display: none;
    }
    .hero-tab {
        flex: 0 0 auto !important;
        padding: 12px 18px !important;
        font-size: 13px !important;
    }

    /* Header styling fixes */
    .navbar-inner {
        height: 72px !important;
        padding: 0 16px !important;
    }
    .logo img {
        height: 26px !important;
    }

    /* Responsive container paddings on Mobile */
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .hero-minimal-slider {
        min-height: 480px !important;
    }
}

/* Base resets to avoid horizontal scrolling/overflows across any screens */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
}

/* Custom local Flag and Lightning SVG Icons */
.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    margin-right: 6px;
    margin-top: -2px;
}
.lightning-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    margin-top: -2px;
}
.ryzen-icon {
    width: 24px;
    height: 14px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    margin-top: -2px;
}