@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #0d1b6e;
  --primary-light: #1a2fa0;
  --teal: #00c9a7;
  --teal-light: #00e5be;
  --teal-dark: #00a88a;
  --bg-light: #f0f4ff;
  --bg-white: #ffffff;
  --text-dark: #0d1b6e;
  --text-mid: #4a5568;
  --text-light: #8898aa;
  --border: #e2e8f0;
  --card-shadow: 0 4px 24px rgba(13,27,110,0.08);
  --card-shadow-hover: 0 12px 40px rgba(13,27,110,0.16);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── TOP INFO BAR ─── */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 0.5rem 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar a { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: #fff; }
.topbar i { margin-right: 5px; color: var(--teal); }

/* ─── MAIN NAVBAR ─── */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(13,27,110,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}
.logo {
  margin-right: auto;
}
.logo img { height: 42px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
}
.nav-menu > li > a:hover { background: var(--bg-light); color: var(--teal); }

.nav-actions { display: flex; align-items: center; gap: 1.2rem; margin-left: auto; }

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ─── DROPDOWN MENUS ─── */
.nav-menu > li.has-dropdown { position: relative; }

.nav-menu > li.has-dropdown > a .fa-chevron-down {
  transition: transform 0.3s ease;
}
.nav-menu > li.has-dropdown:hover > a .fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(13,27,110,0.15), 0 2px 8px rgba(13,27,110,0.08);
  border: 1px solid var(--border);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  border-radius: 0;
}

.dropdown li a i {
  width: 18px;
  text-align: center;
  color: var(--teal);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.dropdown li a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 1.5rem;
}

.dropdown li:first-child a { border-radius: 8px 8px 0 0; }
.dropdown li:last-child a { border-radius: 0 0 8px 8px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,201,167,0.3);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,201,167,0.45);
}
.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.btn-cart {
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  position: relative;
}
.btn-cart:hover { background: var(--primary-light); }
.btn-cart .cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #0d1b6e 0%, #1a3a8f 60%, #0f4c81 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,201,167,0.15);
  border: 1px solid rgba(0,201,167,0.4);
  color: var(--teal-light);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--teal); }
.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-mini-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-mini-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.hero-mini-feature i {
  font-size: 1.4rem;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-mini-feature h4 { font-size: 0.95rem; color: #fff; font-weight: 600; margin-bottom: 2px; }
.hero-mini-feature p { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

.hero-visuals { position: relative; }
.hero-main-img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: block;
}
.hero-badge-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 190px;
}
.hero-badge-float.top { top: -20px; right: -20px; }
.hero-badge-float.bottom { bottom: 20px; left: -30px; }
.badge-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; flex-shrink: 0;
}
.badge-text h5 { font-size: 0.8rem; color: var(--primary); font-weight: 700; margin-bottom: 2px; }
.badge-text p { font-size: 0.75rem; color: var(--text-light); }

/* ─── DOMAIN SEARCH ─── */
.domain-section {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 2.5rem 0;
}
.domain-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #fff;
}
.domain-header h2 { font-size: 1.4rem; font-weight: 700; }
.domain-header p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.domain-search-bar {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  margin-bottom: 1.25rem;
}
.domain-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
}
.domain-search-bar .btn { border-radius: 0; padding: 0 2rem; }
.domain-tlds {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.domain-tld {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 700;
}
.domain-tld span {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 4px;
}

/* ─── SECTIONS COMMON ─── */
.section { padding: 5rem 0; }
.section-light { background: var(--bg-light); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,201,167,0.1);
  color: var(--teal-dark);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-subtitle {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
}
.section-header-center { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }

/* ─── PRICING CARDS ─── */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.pricing-tab {
  padding: 0.6rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid var(--teal);
  color: var(--teal);
  transition: var(--transition);
  background: #fff;
}
.pricing-tab.active { background: var(--teal); color: #fff; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.pricing-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--teal);
}
.pricing-card-header {
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  padding: 1.5rem;
  position: relative;
}
.pricing-card-header h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.pricing-popular {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.pricing-price .amount { font-size: 2.2rem; font-weight: 800; color: #fff; }
.pricing-price .currency { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.8); padding-bottom: 6px; }
.pricing-price .period { font-size: 0.8rem; color: rgba(255,255,255,0.6); padding-bottom: 4px; }
.pricing-card-body { padding: 1.5rem; }
.pricing-features-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.pricing-features-list li:last-child { border-bottom: none; }
.pricing-features-list .feat-name { font-weight: 600; color: var(--text-dark); }
.pricing-features-list .feat-val { color: var(--text-mid); }
.pricing-card-footer { padding: 0 1.5rem 1.5rem; }
.pricing-card-footer .btn { width: 100%; }

/* ─── WHY US SECTION ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.why-left h2 { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 1rem; }
.why-left p { color: var(--text-mid); font-size: 1rem; line-height: 1.8; }
.why-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.why-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: transparent;
  grid-column: span 2;
  display: flex;
  gap: 2rem;
  align-items: center;
  color: #fff;
}
.why-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,201,167,0.12);
  border: 1px solid rgba(0,201,167,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.why-card.featured .why-card-icon { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: #fff; margin-bottom: 0; }
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.why-card.featured h4, .why-card.featured p { color: rgba(255,255,255,0.9); }
.why-card.featured h4 { font-size: 1.4rem; color: #fff; margin-bottom: 0.75rem; }

/* ─── STATS BAR ─── */
.stats-bar {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--teal);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ─── FAQ ─── */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--teal); }
.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}
.faq-icon { color: var(--teal); transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 200px; padding: 0 1.5rem 1.5rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 1rem 0 1.5rem; color: rgba(255,255,255,0.6); }
.footer-logo { height: 38px; width: auto; }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--teal); color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   MOBİL UYUMLULUK — TÜM SAYFALAR
   Breakpoints: 1024px (tablet), 768px (mobil), 480px (küçük mobil), 360px (xs)
═══════════════════════════════════════════════════════════════ */

/* ── Tablet (max 1024px) ── */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visuals { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-grid { grid-template-columns: 1fr; }
  .sv-left { border-right: none; border-bottom: 1px solid var(--border); }
  /* Ürün sayfaları tablet */
  .vds-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .vds-visual { display: none; }
  .os-grid { grid-template-columns: repeat(3, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobil (max 768px) ── */
@media (max-width: 768px) {
  /* ── Genel ── */
  * { -webkit-tap-highlight-color: transparent; }
  .container { padding: 0 1rem; }
  .topbar { display: none; }
  .section { padding: 2.5rem 0; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.9rem; }
  .section-header-center { margin-bottom: 2rem; }
  .btn { padding: 0.65rem 1.1rem; font-size: 0.84rem; min-height: 44px; }

  /* ── Navbar ── */
  .nav-inner { padding: 0.7rem 0; }
  .logo img { height: 36px; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 62px; left: 0;
    width: 100%;
    background: #fff;
    padding: 0.75rem 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-top: 3px solid var(--teal);
    z-index: 9998;
    max-height: calc(100vh - 62px);
    overflow-y: auto;
    gap: 0.15rem;
  }
  .nav-menu.mobile-open { display: flex; }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 8px;
    padding: 0;
    background: var(--bg-light);
    color: var(--primary);
  }
  .mobile-menu-btn:hover { background: var(--border); }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border);
    border-radius: 8px;
    justify-content: space-between;
    font-size: 0.95rem;
    min-height: 48px;
  }
  .nav-menu > li:last-child > a { border-bottom: none; }
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--teal);
    margin-left: 1rem;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    border-radius: 0;
    padding: 0.25rem 0;
  }
  .has-dropdown.mobile-dd-open .dropdown { display: block; }
  .dropdown::before { display: none; }
  .dropdown li a { min-height: 44px; padding: 0.75rem 1rem; }
  .nav-actions { gap: 0.4rem; }
  .btn-outline-primary,
  .btn-cart { padding: 0.55rem 0.85rem; font-size: 0.78rem; }
  .user-dropdown-btn { padding: 0.55rem 0.85rem !important; font-size: 0.78rem !important; }
  .user-dropdown-menu {
    position: fixed !important;
    top: 75px !important;
    right: 1rem !important;
    left: 1rem !important;
    width: auto !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }

  /* ── Hero ── */
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 2rem 0; gap: 1rem; }
  .hero-visuals { display: none; }
  .hero h1 { font-size: 1.75rem; line-height: 1.2; }
  .hero p { font-size: 0.9rem; max-width: 100%; }
  .hero-mini-features { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .hero-mini-feature h4 { font-size: 0.82rem; }
  .hero-mini-feature p { font-size: 0.72rem; }
  .hero-badge-float { display: none; }
  .hero-left .btn-teal { width: 100%; justify-content: center; }
  .hero-label { font-size: 0.78rem; padding: 0.3rem 0.8rem; }

  /* ── Domain Arama ── */
  .domain-section { padding: 1.75rem 0; margin-bottom: 30px !important; }
  .domain-header { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .domain-header h2 { font-size: 1.15rem; }
  .domain-header p { font-size: 0.82rem; }
  .domain-search-bar { flex-direction: column !important; }
  .domain-search-bar input {
    font-size: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 10px 10px 0 0;
  }
  .domain-search-bar .btn {
    border-radius: 0 0 10px 10px;
    padding: 0.9rem;
    width: 100%;
    justify-content: center;
  }
  .domain-tlds { gap: 0.6rem; flex-wrap: wrap; justify-content: flex-start; }
  .domain-tld { font-size: 0.85rem; }

  /* ── Why Section ── */
  .why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-cards-grid { grid-template-columns: 1fr; }
  .why-card.featured { grid-column: span 1; flex-direction: column; }
  .why-card.featured .why-card-icon { margin-bottom: 0.75rem; }
  .why-left h2 { font-size: 1.8rem; }
  .why-card { padding: 1.25rem; }

  /* ── Stats ── */
  .stats-bar { padding: 2rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.78rem; }

  /* ── FAQ ── */
  .faq-container { padding: 0; }
  .faq-question { font-size: 0.88rem; padding: 1rem; }
  .faq-item.active .faq-answer { max-height: 300px; }

  /* ── Footer ── */
  footer { padding: 2.5rem 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; font-size: 0.8rem; }
  .footer-brand p { font-size: 0.82rem; margin: 0.75rem 0 1rem; }
  .footer-logo { height: 32px; }
  .footer-col h4 { font-size: 0.88rem; margin-bottom: 0.85rem; }
  .footer-col ul li a { font-size: 0.82rem; }

  /* ── Pricing ── */
  .pricing-tabs { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
  .pricing-tab { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-header .amount { font-size: 1.9rem; }
  .pricing-card-body { padding: 1.25rem; }
  .pricing-card-footer { padding: 0 1.25rem 1.25rem; }

  /* ── Ürün Sayfaları (sanal-sunucu, vps, vds, web-hosting) ── */
  .vds-hero, .prod-hero { padding: 2rem 0; min-height: auto !important; }
  .vds-hero-inner,
  .prod-hero-inner { grid-template-columns: 1fr !important; gap: 1rem; padding: 1.5rem 0; }
  .vds-hero-inner h1,
  .prod-hero-inner h1 { font-size: 1.7rem !important; }
  .vds-mini { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .vds-mini-item h4 { font-size: 0.82rem; }
  .vds-mini-item p { font-size: 0.72rem; }
  .vds-visual,
  .prod-hero-icon { display: none !important; }
  .os-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
    max-width: 100%;
  }
  .os-item { padding: 10px 12px; font-size: 0.82rem; }
  .feat-grid { grid-template-columns: 1fr 1fr !important; gap: 0.75rem; }
  .info-block,
  .info-block-reverse { grid-template-columns: 1fr !important; direction: ltr !important; }
  .info-img { order: -1; border-radius: 12px; overflow: hidden; }
  /* Paket tablosu */
  .pkg-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pkg-table { min-width: 560px; }
  /* Ürün kategori nav */
  .prod-cat-nav,
  .prod-cat-tabs { gap: 6px; flex-wrap: wrap; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .prod-cat-btn,
  .prod-cat-tab { padding: 7px 14px; font-size: 0.8rem; white-space: nowrap; }
  .period-toggle-wrap,
  .price-toggle-wrap { text-align: center; }
  .period-toggle button,
  .price-toggle button { padding: 7px 14px; font-size: 0.82rem; }
  .prod-grid { grid-template-columns: 1fr !important; }

  /* ── Dashboard ── */
  .dashboard-tabs,
  [class*="dashboard-nav"] { flex-wrap: wrap; gap: 4px; }
  .dashboard-tabs a { font-size: 0.82rem; padding: 8px 14px; }
  [class*="db-stats"],
  [class*="dash-stats"] { grid-template-columns: 1fr 1fr !important; }
  [class*="db-grid"] { grid-template-columns: 1fr !important; }

  /* ── Sepet (Cart) ── */
  main [style*="grid-template-columns: 1fr 350px"],
  main [style*="grid-template-columns:1fr 350px"],
  main [style*="grid-template-columns: 1fr 300px"] { display: block !important; }
  main [style*="grid-template-columns: 1fr 350px"] > div,
  main [style*="grid-template-columns:1fr 350px"] > div,
  main [style*="grid-template-columns: 1fr 300px"] > div { margin-bottom: 1rem; }

  /* ── Auth Sayfaları (giris, kayit, sifre-sifirla) ── */
  .auth-wrapper { grid-template-columns: 1fr !important; min-height: auto; }
  .auth-left { display: none !important; }
  .auth-card { padding: 1.5rem; margin: 1rem; border-radius: 16px; }
  .auth-wrapper-center { padding: 1rem; }
  .verify-card { padding: 1.5rem; margin: 1rem; }

  /* ── Hizmet Detay ── */
  .sv-grid { grid-template-columns: 1fr !important; }
  .sv-left { border-right: none !important; border-bottom: 1px solid var(--border); }
  .sv-tabsbar,
  .hd-tabsbar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hd-tabs,
  .sv-tabs { flex-wrap: wrap; gap: 4px; }
  .sv-bottom,
  .hd-bottom { grid-template-columns: 1fr !important; }
  .sv-scol:first-child,
  .hd-scol:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .sv-acts-r1,
  .hd-acts-r1 { grid-template-columns: 1fr 1fr !important; }
  .sv-acts-r2,
  .hd-acts-r2 { max-width: 100% !important; grid-template-columns: 1fr 1fr !important; }
  .sv-charts,
  .hd-charts { gap: 16px !important; flex-wrap: wrap; justify-content: center; }
  .hd-specs { grid-template-columns: 1fr !important; }
  .sv-bottom-wrap { grid-template-columns: 1fr !important; }

  /* ── Domain Detay ── */
  main [style*="grid-template-columns: 2fr 1fr"] { display: block !important; }
  main [style*="grid-template-columns: 2fr 1fr"] > div { margin-bottom: 1rem; }

  /* ── Destek Sistemi (Tickets) ── */
  main [style*="grid-template-columns: 1fr 320px"],
  main [style*="grid-template-columns: 1fr 300px"] { display: block !important; }
  main [style*="grid-template-columns: 1fr 320px"] > div,
  main [style*="grid-template-columns: 1fr 300px"] > div { margin-bottom: 1rem; }

  /* ── Hakkımızda ── */
  [class*="about-grid"],
  [class*="team-grid"] { grid-template-columns: 1fr !important; }

  /* ── Admin Panel ── */
  .admin-header-inner { flex-wrap: wrap; gap: 0.5rem; height: auto; padding: 0.75rem 1rem; }
  .admin-nav { display: none; }
  .admin-nav.mobile-open { display: flex; flex-direction: column; width: 100%; }
  .admin-content { padding: 1rem; }
  [class*="admin-stats"],
  [class*="admin-grid"] { grid-template-columns: 1fr 1fr !important; gap: 0.75rem; }

  /* ── Genel Tablo Düzeltme ── */
  .table-responsive,
  [class*="table-wrap"] { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }

  /* ── Form Elementleri ── */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px !important; /* iOS zoom önleme */
    min-height: 44px;
  }
}

/* ── Küçük Mobil (max 480px) ── */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.45rem; }
  .hero-mini-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .feat-grid { grid-template-columns: 1fr !important; }
  .os-grid { grid-template-columns: 1fr 1fr !important; }
  .prod-form-grid { grid-template-columns: 1fr !important; }
  .pm-grid { grid-template-columns: 1fr !important; }
  .pricing-card-header .amount { font-size: 1.65rem; }
  .domain-tld { font-size: 0.82rem; }
  .hd-charts,
  .sv-charts { gap: 10px !important; }
  .section-title { font-size: 1.3rem; }
  .nav-actions { gap: 0.3rem; }
  .btn-cart { display: flex; }
}

/* ── Çok Küçük Mobil (max 360px) ── */
@media (max-width: 360px) {
  .container { padding: 0 0.75rem; }
  .hero h1 { font-size: 1.3rem; }
  .btn-outline-primary,
  .btn-cart { padding: 0.5rem 0.65rem; font-size: 0.74rem; }
  .logo img { height: 30px; }
  .mobile-menu-btn { width: 38px; height: 38px; }
  .os-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: 1fr; }
  .vds-mini { grid-template-columns: 1fr; }
}

/* ─── USER DROPDOWN MENU ─── */
.user-dropdown-wrap {
  position: relative !important;
  display: inline-block !important;
  z-index: 1000 !important;
}
.user-dropdown-btn {
  background: transparent !important;
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
  padding: 0.7rem 1.6rem !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.user-dropdown-btn:hover {
  background: var(--primary) !important;
  color: #fff !important;
}
.user-dropdown-menu {
  display: none;
  position: absolute !important;
  top: calc(100% + 12px) !important;
  right: 0 !important;
  left: auto !important;
  width: 280px !important;
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 40px rgba(13,27,110,0.15), 0 2px 8px rgba(13,27,110,0.08) !important;
  z-index: 100000 !important;
  overflow: hidden !important;
  animation: udm-appear 0.2s ease !important;
}
@keyframes udm-appear {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.udm-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 16px 18px !important;
  background: var(--primary) !important;
}
.udm-avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: 16px !important;
  flex-shrink: 0 !important;
}
.udm-name {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff !important;
}
.udm-divider {
  height: 1px !important;
  background: var(--border) !important;
  margin: 2px 0 !important;
}
.udm-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 18px !important;
  color: var(--text-mid) !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s !important;
}
.udm-item:hover {
  background: var(--bg-light) !important;
  color: var(--primary) !important;
}
.udm-icon {
  width: 22px !important;
  text-align: center !important;
  color: var(--teal) !important;
  font-size: 15px !important;
  flex-shrink: 0 !important;
}
.udm-right {
  margin-left: auto !important;
  font-weight: 700 !important;
  color: var(--teal) !important;
  font-size: 14px !important;
}
.udm-badge {
  margin-left: auto !important;
  background: var(--teal) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  border-radius: 20px !important;
  padding: 2px 8px !important;
  min-width: 22px !important;
  text-align: center !important;
}
.udm-logout {
  color: #f87171 !important;
}
.udm-logout .udm-icon {
  color: #f87171 !important;
}
.udm-logout:hover {
  background: rgba(248,113,113,0.1) !important;
  color: #ef4444 !important;
}

/* ── Mobil Header Sıkışma Önlemi (Çok Dar Ekranlar İçin) ── */
@media (max-width: 480px) {
  .mobile-hide-text { display: none !important; }
  #mobileLoginIcon { display: inline-block !important; }
  .user-dropdown-btn i { margin: 0 !important; } /* İkonlar arası boşlukları sıfırla */
  .nav-actions { gap: 0.25rem; }
  .btn-cart i { margin-right: 0 !important; }
  .logo img { height: 26px !important; }
}
