/**
 * iDealSunucu Theme - KURUMSAL RENK PALETİ
 * Version: 5.4.0 - Light Mode
 * 
 * Referans: Cloudways, DigitalOcean, Natro, Turhost
 */

/* ==========================================================================
   CSS VARIABLES - LIGHT MODE (Varsayılan)
   ========================================================================== */
:root {
    /* Arka Plan Tonları - LIGHT */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFC;
    
    /* Metin Renkleri - LIGHT */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-subtle: #94A3B8;
    
    /* Ana Renkler */
    --primary: #3B82F6;
    --primary-light: #EFF6FF;
    --primary-dark: #2563EB;
    --accent: #38BDF8;
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    --gradient-text: linear-gradient(90deg, #38BDF8 0%, #3B82F6 100%);
    --gradient-hero: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 50%, #ECFEFF 100%);
    
    /* Border - LIGHT */
    --border-color: #E2E8F0;
    --border-light: #F1F5F9;
    --border-focus: rgba(59, 130, 246, 0.5);
    
    /* Status */
    --success: #10B981;
    --success-light: #ECFDF5;
    --warning: #F59E0B;
    --warning-light: #FFFBEB;
    --error: #EF4444;
    --error-light: #FEF2F2;
    
    /* Shadows - LIGHT */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 4px 20px rgba(59, 130, 246, 0.15);
}

/* ==========================================================================
   GLOBAL STYLES
   ========================================================================== */
body {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

a {
    color: var(--accent);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-light);
}

/* ==========================================================================
   SECTION STYLES
   ========================================================================== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: auto;
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

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

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -150px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--primary);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-desc strong {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

/* Domain Search Box */
.domain-search-box {
    display: flex;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto 32px;
    padding: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
}

.search-input-wrapper i {
    color: var(--text-subtle);
    font-size: 18px;
}

.search-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--text-primary);
}

.search-input-wrapper input::placeholder {
    color: var(--text-subtle);
}

.btn-search {
    padding: 14px 32px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.btn-search:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.35);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--success);
    font-size: 14px;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-number span {
    font-size: 1.6rem;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   DOMAIN SECTION
   ========================================================================== */
.domain-section {
    background: var(--bg-primary);
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.domain-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.domain-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: var(--shadow-lg);
}

.domain-card.featured {
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.08) 0%, var(--bg-secondary) 50%);
}

.badge-hot {
    position: absolute;
    top: -10px;
    right: 10px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary);
    color: #FFFFFF;
    border-radius: 12px;
    box-shadow: var(--shadow-primary);
}

.domain-ext {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.domain-price {
    margin-bottom: 14px;
}

.price-new {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-new small {
    font-size: 0.75rem;
    color: var(--text-subtle);
}

.btn-domain {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-domain:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    color: #FFFFFF;
}

/* ==========================================================================
   PRICING / HOSTING SECTION
   ========================================================================== */
.hosting-section {
    background: var(--bg-secondary);
}

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

/* SCOPED: Sadece .pricing-grid içindeki kartları etkiler */
.pricing-grid .pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.pricing-grid .pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-lg);
}

.pricing-grid .pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, var(--bg-secondary) 40%);
    transform: scale(1.02);
    z-index: 2;
}

.pricing-grid .pricing-card.premium {
    border-color: #8B5CF6;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1) 0%, var(--bg-secondary) 40%);
}

.popular-badge, .premium-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 20px;
    white-space: nowrap;
}

.popular-badge {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-primary);
}

.premium-badge {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    font-size: 24px;
    color: var(--primary);
}

.pricing-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-subtle);
}

.pricing-price {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 24px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-old {
    display: block;
    font-size: 14px;
    color: var(--text-subtle);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-amount sup {
    font-size: 1.2rem;
}

.price-amount sub {
    font-size: 1rem;
    color: var(--text-subtle);
    -webkit-text-fill-color: var(--text-subtle);
}

.pricing-features {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    font-size: 10px;
    color: var(--success);
    flex-shrink: 0;
}

/* SCOPED: Sadece .pricing-grid içindeki butonları etkiler */
.pricing-grid .btn-pricing {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
}

.pricing-grid .btn-pricing:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.pricing-grid .btn-pricing.featured {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.pricing-grid .btn-pricing.featured:hover {
    background: var(--primary-dark);
}

.pricing-grid .btn-pricing.premium {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-color: transparent;
    color: #FFFFFF;
}

/* Features Bar */
.features-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.features-bar .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.features-bar .feature-item i {
    color: var(--primary);
}

/* ==========================================================================
   VDS SECTION
   ========================================================================== */
.vds-section {
    background: var(--bg-primary);
}

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

/* SCOPED: Sadece .vds-grid içindeki kartları etkiler */
.vds-grid .vds-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.vds-grid .vds-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-lg);
}

.vds-grid .vds-card.featured {
    border-color: var(--primary);
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.08) 0%, var(--bg-secondary) 40%);
}

.vds-header {
    text-align: center;
    margin-bottom: 20px;
}

.vds-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.vds-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
    border-radius: 8px;
}

.vds-price {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.vds-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.vds-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.vds-specs li:last-child {
    border-bottom: none;
}

.vds-specs li i {
    width: 32px;
    color: var(--primary);
}

.vds-specs li span {
    color: var(--text-subtle);
    width: 55px;
}

.vds-specs li strong {
    flex: 1;
    text-align: right;
    color: var(--text-primary);
}

/* SCOPED: Sadece .vds-grid içindeki butonları etkiler */
.vds-grid .btn-vds {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
}

.vds-grid .btn-vds:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.vds-grid .btn-vds.featured {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

/* ==========================================================================
   TAB SECTION
   ========================================================================== */
.services-section {
    background: var(--bg-primary);
}

.tabs-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-secondary);
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.tab-btn.active {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.tab-btn i {
    font-size: 18px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.tab-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.tab-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.tab-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.check-list li i {
    color: var(--success);
}

/* Service Card Large */
.service-card-large {
    padding: 32px;
    background: var(--bg-secondary);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    text-align: center;
}

.service-card-large .card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    font-size: 32px;
    color: var(--primary);
}

.service-card-large.ecommerce .card-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.service-card-large.vps .card-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.service-card-large.dedicated .card-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.service-card-large h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card-large .card-price {
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.service-card-large .card-price span {
    font-size: 1rem;
    color: var(--text-subtle);
    -webkit-text-fill-color: var(--text-subtle);
}

.service-card-large ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.service-card-large ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
}

.btn-card {
    display: block;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    color: #FFFFFF;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
    background: var(--bg-primary);
}

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

.feature-card {
    padding: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 24px;
    font-size: 28px;
}

.feature-icon.cyan {
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent);
}

.feature-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.feature-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.feature-icon.yellow {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.feature-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
}

.feature-icon.pink {
    background: rgba(236, 72, 153, 0.1);
    color: #EC4899;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
}

.cta-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-cta.primary {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-primary);
}

.btn-cta.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    color: #FFFFFF;
}

.btn-cta.secondary {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

.btn-cta.secondary:hover {
    background: var(--bg-tertiary);
    border-color: rgba(59, 130, 246, 0.3);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.cta-trust i {
    color: var(--success);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
    .pricing-grid, .vds-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .tab-content-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-image {
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .domain-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .domain-search-box {
        flex-direction: column;
    }
    
    .btn-search {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-grid, .vds-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .check-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .domain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   DEDICATED SUNUCU SAYFALARI
   ========================================================================== */
.dedicated-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dedicated-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.dedicated-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-lg);
}

.dedicated-card.featured {
    border-color: var(--primary);
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, var(--bg-secondary) 40%);
    transform: scale(1.02);
    z-index: 2;
}

.dedicated-card.premium {
    border-color: #8B5CF6;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1) 0%, var(--bg-secondary) 40%);
}

.dedicated-card.gpu {
    border-color: #76b900;
    background: linear-gradient(145deg, rgba(118, 185, 0, 0.1) 0%, var(--bg-secondary) 40%);
}

/* Badges */
.dedicated-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.dedicated-badge.amd {
    background: rgba(237, 28, 36, 0.15);
    color: #ed1c24;
}

.dedicated-badge.intel {
    background: rgba(0, 113, 197, 0.15);
    color: #0071c5;
}

.dedicated-badge.nvidia {
    background: rgba(118, 185, 0, 0.15);
    color: #76b900;
}

.best-seller, .new-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    white-space: nowrap;
}

.best-seller {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.new-badge {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: #fff;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
}

/* Name & Price */
.dedicated-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.dedicated-price {
    text-align: center;
    padding: 16px 0;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.dedicated-price .price-old {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.dedicated-price .price-new {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.dedicated-price .price-new sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Specs List */
.dedicated-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.dedicated-specs li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.dedicated-specs li:last-child {
    border-bottom: none;
}

.dedicated-specs li i {
    width: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.dedicated-specs li small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Button */
.btn-dedicated {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-dedicated:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-dedicated.featured {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-dedicated.featured:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-dedicated.premium {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-color: transparent;
    color: #fff;
}

.btn-dedicated.premium:hover {
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-dedicated.gpu {
    background: linear-gradient(135deg, #76b900, #8bc34a);
    border-color: transparent;
    color: #fff;
}

.btn-dedicated.gpu:hover {
    box-shadow: 0 4px 15px rgba(118, 185, 0, 0.4);
}

/* Datacenter Locations */
.datacenter-locations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.location-card {
    text-align: center;
    padding: 24px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.location-card .flag {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.location-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.location-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.location-card .latency {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 6px;
}

/* Responsive - Dedicated */
@media (max-width: 1100px) {
    .dedicated-grid,
    .datacenter-locations {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dedicated-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .dedicated-grid,
    .datacenter-locations {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .dedicated-name {
        font-size: 1.2rem;
    }
    
    .dedicated-price .price-new {
        font-size: 1.75rem;
    }
}
