@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@600;800&family=DM+Sans:wght@400;500;700&display=swap');

/* ==========================================================
   WEBHOSTINGSATINAL.INFO - FULLY FIXED CSS
   ========================================================== */

/* 1. RESET & GLOBALS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #334155;
  background: linear-gradient(135deg, #e0f2fe 0%, #f8fafc 100%);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ==========================================================
   IMAGES - FULLY VISIBLE, NO CROP
   ========================================================== */
img,
video {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: block;
}

/* Section içindeki görseller - TAM GÖRÜNÜR, KIRPMA YOK */
.section img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  margin: 1.5rem 0 !important;
  border-radius: 12px !important;
  aspect-ratio: auto !important;
  /* Orijinal oranını koru */
}

/* Görsel container'ı - sabit yükseklik yok, tam görünür */
.section .image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.section .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Mobilde görseller - tam görünür */
@media (max-width: 768px) {
  .section img {
    margin: 1rem 0 !important;
    border-radius: 8px !important;
    max-height: none !important;
    /* KIRPMA YOK */
    object-fit: none !important;
    /* KIRPMA YOK */
  }
}

@media (max-width: 480px) {
  .section img {
    margin: 0.8rem 0 !important;
    border-radius: 6px !important;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

/* 2. TYPOGRAPHY */
h1,
h2,
h3,
h4,
.logo-text,
.section-number,
.stat-val {
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
}

/* 3. HEADER & NAVIGATION */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  width: 100%;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-dot {
  width: 12px;
  height: 12px;
  background: #0ea5e9;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: #0ea5e9;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.cta-button:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
  color: #fff;
}

/* 4. HERO SECTION */
.hero-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1rem 2rem;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: #e0f2fe;
  color: #0ea5e9;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.hero-intro h1 {
  font-size: clamp(1.6rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.hero-intro h1 span {
  color: #0ea5e9;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  color: #475569;
  max-width: 750px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 1.2rem 0.8rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.12);
}

.stat-val {
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #0ea5e9;
  margin-bottom: 0.2rem;
  line-height: 1;
}

.stat-label {
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
}

/* 5. MAIN CONTENT */
.main-content {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.content-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: clamp(1.2rem, 3.5vw, 3rem);
  border-radius: 18px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.06);
  position: relative;
  overflow: hidden;
  clear: both;
  width: 100%;
}

.section-number {
  display: inline-block;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  padding: 0.2rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.section h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.section p {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.section-cta {
  margin-top: 1.2rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  background: #0ea5e9;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-primary:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
  color: #fff;
}

/* 6. COMPONENTS */
.winner-box,
.tip-box,
.sidebar-box,
.cyber-box {
  background: rgba(240, 249, 255, 0.7);
  border-left: 4px solid #0ea5e9;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin: 1.2rem 0;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.winner-box h4,
.tip-box strong,
.winner-title,
.tip-box-title {
  display: block;
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

/* 7. TABLE */
.compare-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 1.2rem 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 450px;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
}

.compare-table th,
.compare-table td {
  padding: 0.6rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.compare-table th {
  background: rgba(248, 250, 252, 0.8);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #0f172a;
}

/* 8. RATING BAR */
.rating-container {
  margin: 1.2rem 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.rating-label {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #0f172a;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
}

.rating-bar {
  background: #e2e8f0;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}

.rating-fill {
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 9. FAQ */
.faq-list {
  margin-top: 1.2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 10px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 0.8rem 1rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  outline: none;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '▼';
  font-size: 0.7rem;
  color: #0ea5e9;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item summary:hover {
  color: #0ea5e9;
}

.faq-item-content {
  padding: 0 1rem 1rem 1rem;
  color: #475569;
  line-height: 1.6;
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
}

/* 10. PROGRESS BAR */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  z-index: 1001;
  width: 0%;
  transition: width 0.1s ease;
}

/* 11. FOOTER */
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 2.5rem;
  width: 100%;
}

.footer-cols {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.link-col h3 {
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  font-weight: 700;
}

.link-col p {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.6;
}

.link-col ul {
  list-style: none;
}

.link-col ul li {
  margin-bottom: 0.5rem;
}

.link-col ul li a {
  transition: color 0.2s;
  color: #94a3b8;
  font-size: 0.85rem;
}

.link-col ul li a:hover {
  color: #38bdf8;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.2rem;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-bottom a {
  color: #38bdf8;
}

.footer-bottom a:hover {
  color: #0ea5e9;
}

/* 12. SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-intro.reveal {
  transition-delay: 0.05s;
}

/* 13. CTA BANNER */
.cta-banner-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(2, 132, 199, 0.08));
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.8rem 1.2rem;
}

.cta-banner-h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}

.cta-banner-p {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #475569;
  margin-bottom: 1.2rem;
}

.cta-banner-btn {
  font-size: 0.95rem;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
}

.section-cta-flex {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* 14. DROPDOWN */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  color: #475569;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.dropdown-trigger:hover {
  color: #0ea5e9;
  border-color: #0ea5e9;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 10px;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
  z-index: 1000;
  max-height: 280px;
  overflow-y: auto;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 0.4rem 0.8rem;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: left;
}

.dropdown-content a:hover {
  background: rgba(14, 165, 233, 0.08);
  color: #0ea5e9;
  padding-left: 1rem;
}

.dropdown-content a.active {
  color: #0ea5e9 !important;
  font-weight: 700 !important;
  background: rgba(14, 165, 233, 0.08) !important;
}

/* 15. HIGHLIGHT */
.highlight {
  color: #0ea5e9 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  display: inline !important;
}

/* 16. BLOG META */
.blog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.6rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================== */

/* Tablet */
@media (max-width: 992px) {
  header {
    padding: 0.5rem 1rem;
  }

  .hero-intro {
    padding: 2rem 1rem 1.5rem;
  }

  .section {
    padding: 1.5rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  header {
    padding: 0.4rem 0.8rem;
  }

  .header-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .brand {
    gap: 0.4rem;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  .logo-dot {
    width: 10px;
    height: 10px;
  }

  .cta-button {
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
    border-radius: 8px;
  }

  .hero-intro {
    padding: 1.5rem 0.8rem 1.2rem;
  }

  .hero-tag {
    font-size: 0.65rem;
    padding: 0.25rem 0.7rem;
  }

  .hero-intro h1 {
    font-size: clamp(1.3rem, 5vw, 1.9rem);
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .stat-item {
    padding: 0.8rem 0.5rem;
    border-radius: 10px;
  }

  .stat-val {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.55rem;
  }

  .content-block {
    padding: 0 0.6rem;
  }

  .section {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.2rem;
  }

  .section h2 {
    font-size: 1.05rem;
  }

  .section p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .section img {
    margin: 0.8rem 0 !important;
    border-radius: 8px !important;
  }

  .section-number {
    font-size: 0.65rem;
    padding: 0.15rem 0.6rem;
  }

  .cta-primary {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    border-radius: 8px;
    width: 100%;
    justify-content: center;
  }

  .cta-banner-card {
    padding: 1.2rem 0.8rem;
  }

  .cta-banner-h2 {
    font-size: 1.05rem;
  }

  .cta-banner-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
    width: 100%;
  }

  .section-cta-flex {
    flex-direction: column;
  }

  .section-cta-flex .cta-primary {
    width: 100%;
  }

  .compare-table-wrapper {
    border-radius: 8px;
    margin: 0.8rem 0;
  }

  .compare-table {
    min-width: 350px;
    font-size: 0.75rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.4rem 0.6rem;
  }

  .winner-box,
  .tip-box,
  .sidebar-box,
  .cyber-box {
    padding: 0.8rem;
    margin: 0.8rem 0;
  }

  .winner-box h4,
  .tip-box strong {
    font-size: 0.85rem;
  }

  .rating-container {
    padding: 0.8rem;
    margin: 0.8rem 0;
  }

  .rating-label {
    font-size: 0.8rem;
  }

  .faq-item summary {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

  .faq-item-content {
    padding: 0 0.8rem 0.8rem 0.8rem;
    font-size: 0.8rem;
  }

  footer {
    padding: 1.5rem 0.8rem 1rem;
    margin-top: 1.5rem;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .link-col h3 {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }

  .link-col p,
  .link-col ul li a {
    font-size: 0.8rem;
  }

  .footer-bottom {
    font-size: 0.7rem;
    padding-top: 0.8rem;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border-radius: 8px;
    margin-top: 0.3rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }

  .brand {
    flex: 0 0 100%;
    justify-content: center;
  }

  .cta-button {
    flex: 0 0 100%;
    justify-content: center;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }

  .stat-item {
    padding: 0.6rem 0.4rem;
  }

  .stat-val {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.5rem;
  }

  .section {
    padding: 0.8rem;
  }

  .section h2 {
    font-size: 0.95rem;
  }

  .section p {
    font-size: 0.8rem;
  }

  .section img {
    margin: 0.6rem 0 !important;
    border-radius: 6px !important;
  }

  .hero-intro h1 {
    font-size: 1.2rem;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  header {
    padding: 0.2rem 0.8rem;
  }

  .logo-text {
    font-size: 0.8rem;
  }

  .cta-button {
    padding: 0.2rem 0.6rem;
    font-size: 0.65rem;
  }

  .hero-intro {
    padding: 1rem 0.8rem 0.8rem;
  }

  .hero-intro h1 {
    font-size: 1.3rem;
  }

  .stat-item {
    padding: 0.4rem 0.5rem;
  }

  .stat-val {
    font-size: 0.9rem;
  }

  .section {
    padding: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .section img {
    margin: 0.5rem 0 !important;
  }
}

/* Very Large Screens */
@media (min-width: 1400px) {

  .header-container,
  .content-block,
  .hero-intro,
  .footer-cols,
  .footer-bottom {
    max-width: 1200px;
  }

  .section {
    padding: 3.5rem;
  }

  .section img {
    max-width: 100% !important;
  }
}