/* ================================================================
   WEBHOSTINGSATINAL.INFO — Tech Blog / Analiz Teması
   Konsept: Teal + Charcoal — Sade, teknik, bilgi odaklı
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;700&display=swap');

:root {
  --bg:       #080e12;
  --bg2:      #0b1218;
  --panel:    #0f1a20;
  --panel2:   #132128;
  --accent:   #14b8a6;
  --accent2:  #2dd4bf;
  --accent3:  #5eead4;
  --blue:     #38bdf8;
  --text:     #d1ede9;
  --text-dim: #5a8a84;
  --border:   rgba(20,184,166,0.15);
  --radius:   12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.8; overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(ellipse at 80% 20%, rgba(20,184,166,0.05) 0%, transparent 50%),
                    radial-gradient(ellipse at 20% 80%, rgba(56,189,248,0.04) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}

.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  z-index: 9999; width: 0;
  box-shadow: 0 0 12px var(--accent);
}

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,14,18,0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.header-container {
  max-width: 1150px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 10px; }
.logo-dot {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace; font-size: 0.65rem; font-weight: 700; color: var(--bg);
}
.logo-dot::before { content: 'WH'; }
.logo-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9rem; font-weight: 500; color: #fff; letter-spacing: 1px;
}

.nav-links { display: flex; gap: 0.3rem; }
.nav-links a {
  color: var(--text-dim); text-decoration: none;
  padding: 0.4rem 0.9rem; border-radius: 6px;
  font-size: 0.88rem; font-weight: 500; transition: all 0.2s;
}
.nav-links a:hover { color: var(--accent2); background: rgba(20,184,166,0.1); }

.cta-button {
  background: var(--accent);
  color: var(--bg) !important; -webkit-text-fill-color: var(--bg);
  padding: 0.5rem 1.3rem; border-radius: 6px;
  text-decoration: none; font-size: 0.88rem; font-weight: 600;
  transition: all 0.3s; font-family: 'IBM Plex Mono', monospace;
}
.cta-button:hover { background: var(--accent2); transform: translateY(-2px); }

.container { max-width: 1150px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }

.hero-intro { padding: 7rem 2rem 5rem; text-align: left; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(20,184,166,0.1); border: 1px solid rgba(20,184,166,0.3);
  color: var(--accent2); padding: 0.35rem 1rem; border-radius: 6px;
  font-family: 'IBM Plex Mono', monospace; font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 2rem;
}

.hero-intro h1 {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; color: #fff;
  line-height: 1.2; margin-bottom: 1.5rem;
}
.hero-intro h1 span {
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.subtitle { color: var(--text-dim); font-size: 1rem; max-width: 650px; margin-bottom: 2.5rem; }

/* Pill-style stats */
.hero-stats {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 3rem;
  padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.stat-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 50px; padding: 0.7rem 1.3rem;
}
.stat-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.1rem; font-weight: 700; color: var(--accent2);
}
.stat-label { font-size: 0.82rem; color: var(--text-dim); }

.content-block { margin: 2rem 0 6rem; }

.section {
  background: linear-gradient(135deg, var(--panel), var(--panel2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 3rem; margin-bottom: 2rem;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.section::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--blue), transparent);
}
.section:hover { border-color: rgba(20,184,166,0.3); box-shadow: 0 8px 40px rgba(20,184,166,0.06); }

.section-number {
  font-family: 'IBM Plex Mono', monospace;
  display: inline-block; font-size: 0.7rem; font-weight: 500;
  color: var(--accent); margin-bottom: 0.5rem;
}

.section h2 {
  font-size: 1.5rem; font-weight: 700; color: #fff;
  margin-bottom: 1.5rem; line-height: 1.3;
}

.section img { width: 100%; height: 300px; object-fit: cover; border-radius: 8px; margin: 1.5rem 0; border: 1px solid var(--border); }
.section p { color: var(--text-dim); font-size: 0.97rem; margin-bottom: 1.1rem; line-height: 1.85; text-align: justify; }

a { color: var(--accent2); text-decoration: none; font-weight: 600; }
a:hover { color: var(--accent3); }

.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; margin-top: 4rem; }
.footer-container { max-width: 1150px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.footer-col h4 { font-family: 'IBM Plex Mono', monospace; color: var(--accent2); font-size: 0.82rem; font-weight: 700; margin-bottom: 1.2rem; }
.footer-col a { display: block; color: var(--text-dim); text-decoration: none; margin-bottom: 0.5rem; font-size: 0.88rem; transition: all 0.2s; font-weight: 400; }
.footer-col a:hover { color: var(--accent2); padding-left: 4px; }
.footer-desc { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; margin-top: 0.8rem; }
.footer-bottom { text-align: center; font-size: 0.82rem; color: var(--text-dim); }

@media (max-width: 768px) {
  .header-container { flex-direction: column; gap: 1rem; }
  .section { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .nav-links { display: none; }
  .hero-stats { flex-direction: column; }
}

/* ==========================================
   MIGRATED INLINE STYLES
   ========================================== */
:root {
            --primary: #6366f1;
            --primary-hover: #4f46e5;
            --primary-light: #e0e7ff;
            --dark: #0f172a;
            --light: #f8fafc;
            --gray: #64748b;
            --border: #e2e8f0;
        }
        
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            color: var(--dark);
            background-color: var(--light);
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }
        
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background-color: var(--primary);
            width: 0%;
            z-index: 1000;
            transition: width 0.1s ease-out;
        }
        
        header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border);
            z-index: 900;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
        }
        
        .logo-dot {
            width: 12px;
            height: 12px;
            background-color: var(--primary);
            border-radius: 50%;
        }
        
        .nav-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .nav-links a {
            color: var(--gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .cta-button {
            background-color: var(--primary);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: background-color 0.2s;
        }
        
        .cta-button:hover {
            background-color: var(--primary-hover);
        }
        
        .hero-intro {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            text-align: center;
        }
        
        .hero-tag {
            display: inline-block;
            background-color: var(--primary-light);
            color: var(--primary);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .hero-intro h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .hero-intro h1 span {
            color: var(--primary);
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto 3rem auto;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .stat-item {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border);
        }
        
        .stat-val {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }
        
        .stat-label {
            font-size: 0.875rem;
            color: var(--gray);
            font-weight: 500;
        }
        
        .content-block {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
            background: white;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
            border-radius: 16px;
            margin-bottom: 5rem;
        }
        
        .section {
            padding: 3rem 0;
            border-bottom: 1px solid var(--border);
        }
        
        .section:last-child {
            border-bottom: none;
        }
        
        .section-number {
            font-size: 0.875rem;
            text-transform: uppercase;
            color: var(--primary);
            font-weight: 700;
            letter-spacing: 0.1em;
            margin-bottom: 0.75rem;
        }
        
        .section h2 {
            font-size: 1.75rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .section img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
            display: block;
        }
        
        .section p {
            font-size: 1.05rem;
            color: #334155;
            line-height: 1.75;
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        
        .section p a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        
        .section p a:hover {
            border-bottom-color: var(--primary);
        }
        
        .winner-box {
            border: 2px solid var(--primary);
            background-color: var(--primary-light);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }
        
        .winner-box h4 {
            color: var(--primary-hover);
            margin: 0 0 0.5rem 0;
            font-size: 1.15rem;
            font-weight: 700;
        }
        
        .winner-box p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--dark);
        }
        
        .cta-primary {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: background-color 0.2s, transform 0.2s;
            text-align: center;
        }
        
        .cta-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
        }
        
        .section-cta {
            margin-top: 1.5rem;
            text-align: center;
        }
        
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        
        .compare-table th {
            background-color: var(--primary);
            color: white;
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        
        .compare-table td {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid var(--border);
            color: #334155;
        }
        
        .compare-table tr:nth-child(even) {
            background-color: var(--light);
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }
        
        .feature-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            color: #334155;
        }
        
        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .tip-box {
            border-left: 4px solid var(--primary);
            background-color: var(--light);
            padding: 1.25rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        
        .tip-box strong {
            color: var(--dark);
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .faq-list {
            margin: 1.5rem 0;
        }
        
        .faq-item {
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 1rem;
            background: white;
            overflow: hidden;
        }
        
        .faq-item summary {
            padding: 1rem;
            font-weight: 600;
            cursor: pointer;
            outline: none;
            background-color: var(--light);
            user-select: none;
        }
        
        .faq-item[open] summary {
            background-color: var(--primary-light);
            color: var(--primary-hover);
            border-bottom: 1px solid var(--border);
        }
        
        .faq-item-content {
            padding: 1rem;
            color: #475569;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .rating-container {
            margin: 1rem 0;
        }
        
        .rating-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.25rem;
            display: flex;
            justify-content: space-between;
        }
        
        .rating-bar {
            height: 8px;
            background-color: var(--border);
            border-radius: 4px;
            overflow: hidden;
        }
        
        .rating-fill {
            height: 100%;
            background-color: var(--primary);
            border-radius: 4px;
        }
        
        footer {
            background-color: var(--dark);
            color: #94a3b8;
            padding: 4rem 2rem 2rem 2rem;
            border-top: 1px solid #1e293b;
        }
        
        .footer-cols {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }
        
        .footer-col h3 {
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .footer-col p {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-col ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-col ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        
        .footer-col ul li a:hover {
            color: white;
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            border-top: 1px solid #1e293b;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }
        
        @media (max-width: 768px) {
            .hero-stats {
                grid-template-columns: 1fr 1fr;
            }
            .footer-cols {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            header {
                flex-direction: column;
                gap: 1rem;
            }
            .hero-intro h1 {
                font-size: 2.25rem;
            }
        }

