/* ============================================================
   VDS Panel — Frontend'e özel bileşenler
   ============================================================ */

/* --- Header / Navbar --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--text); }
.brand .brand-dot { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 10px;
  transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active,
.nav-item.has-dropdown.active > .nav-link { color: var(--accent); background: var(--accent-soft); }
.nav-caret {
  display: inline-flex;
  transition: transform 0.28s var(--ease);
}
.nav-caret .icon-svg { width: 14px; height: 14px; }
.nav-item.has-dropdown:hover > .nav-link .nav-caret,
.nav-item.has-dropdown.open > .nav-link .nav-caret { transform: rotate(180deg); }

/* Dropdown */
.nav-item {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.22s var(--ease),
    transform 0.28s var(--ease),
    visibility 0.22s;
  z-index: 120;
}
.nav-dropdown-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  padding: 8px;
  overflow: hidden;
  transform-origin: top center;
}
.nav-item.has-dropdown:hover > .nav-dropdown,
.nav-item.has-dropdown:focus-within > .nav-dropdown,
.nav-item.has-dropdown.open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.nav-dropdown-all {
  display: block;
  padding: 10px 12px;
  margin-bottom: 4px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
}
.nav-dropdown-all:hover { background: rgba(14, 165, 233, 0.18); color: var(--accent-hover); }
.nav-dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  opacity: 0;
  transform: translateY(8px);
  transition:
    background 0.18s var(--ease),
    color 0.18s var(--ease),
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease);
}
.nav-item.has-dropdown:hover .nav-dropdown-link,
.nav-item.has-dropdown:focus-within .nav-dropdown-link,
.nav-item.has-dropdown.open .nav-dropdown-link {
  opacity: 1;
  transform: translateY(0);
}
.nav-item.has-dropdown:hover .nav-dropdown-link:nth-child(2),
.nav-item.has-dropdown.open .nav-dropdown-link:nth-child(2) { transition-delay: 0.04s; }
.nav-item.has-dropdown:hover .nav-dropdown-link:nth-child(3),
.nav-item.has-dropdown.open .nav-dropdown-link:nth-child(3) { transition-delay: 0.08s; }
.nav-item.has-dropdown:hover .nav-dropdown-link:nth-child(4),
.nav-item.has-dropdown.open .nav-dropdown-link:nth-child(4) { transition-delay: 0.12s; }
.nav-item.has-dropdown:hover .nav-dropdown-link:nth-child(5),
.nav-item.has-dropdown.open .nav-dropdown-link:nth-child(5) { transition-delay: 0.16s; }
.nav-item.has-dropdown:hover .nav-dropdown-link:nth-child(6),
.nav-item.has-dropdown.open .nav-dropdown-link:nth-child(6) { transition-delay: 0.2s; }
.nav-dropdown-link:hover,
.nav-dropdown-link.active {
  background: var(--bg-muted);
  color: var(--text);
}
.nav-dropdown-thumb {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-muted);
}
.nav-dropdown-ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-dropdown-ic .icon-svg { width: 18px; height: 18px; }
.nav-dropdown-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.nav-dropdown-text strong { font-size: 13.5px; font-weight: 650; line-height: 1.3; }
.nav-dropdown-text small { font-size: 12px; color: var(--text-muted); line-height: 1.35; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .search-box { position: relative; }
.header-actions .search-box input { width: 200px; background: var(--bg-muted); }
.notif-bell { position: relative; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-muted); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); cursor: pointer; }
.notif-bell .dot { position: absolute; top: 6px; right: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--danger); border: 2px solid #fff; display: none; }
.notif-bell.has-unread .dot { display: none; }
.notif-bell .notif-count {
  position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 9px; background: var(--danger); color: #fff; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.sound-toggle {
  width: 40px; height: 40px; border-radius: 50%; background: var(--bg-muted); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center; color: var(--text-secondary);
  cursor: pointer; padding: 0;
}
.sound-toggle:hover { color: var(--accent); border-color: var(--border-accent); }
.sound-toggle .icon-svg { width: 18px; height: 18px; }
.sound-toggle .sound-off { display: none; }
.sound-toggle.is-muted .sound-on { display: none; }
.sound-toggle.is-muted .sound-off { display: block; }
.sound-toggle.is-muted { color: var(--text-muted); opacity: .85; }
.cart-bell { position: relative; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-muted); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); text-decoration: none; font-size: 16px; }
.cart-bell .count { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.compare-fab { position: fixed; bottom: 24px; right: 24px; z-index: 90; background: var(--bg-elevated); border: 1px solid var(--border-accent); box-shadow: var(--shadow); border-radius: var(--radius); padding: 14px 18px; display: none; align-items: center; gap: 12px; }
.compare-fab.visible { display: flex; }

.mobile-toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--border);
    display: none;
    box-shadow: var(--shadow);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav .nav-link { width: 100%; justify-content: space-between; }
  .nav-item.has-dropdown { width: 100%; }
  .nav-dropdown {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
    padding: 0;
  }
  .nav-item.has-dropdown.open > .nav-dropdown {
    max-height: 480px;
    pointer-events: auto;
    margin-bottom: 6px;
  }
  .nav-dropdown-inner {
    box-shadow: none;
    border: 1px solid var(--border);
    margin-top: 4px;
  }
  .nav-dropdown-link {
    opacity: 1;
    transform: none;
    transition-delay: 0s !important;
  }
  .mobile-toggle { display: block; }
  .header-actions .search-box { display: none; }
}

/* --- Hero (legacy / iç sayfalar) --- */
.hero {
  padding: clamp(4rem, 12vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(14, 165, 233, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(14, 165, 233, 0.1), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-base) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.hero h1 { font-size: clamp(1.85rem, 4.2vw, 2.85rem); margin-bottom: 18px; font-weight: 700; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-stat-card {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.hero-stat-card strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--accent); }
.hero-stat-card span { color: var(--text-muted); font-size: 13px; }
.feature-block { padding: 8px 0; }
.feature-block h3 { font-size: 16px; margin-bottom: 8px; }

/* Reveal motion */
.reveal { opacity: 0; transform: translateY(18px); animation: vdsReveal 0.7s var(--ease) forwards; }
.reveal-stagger > * { opacity: 0; transform: translateY(16px); animation: vdsReveal 0.65s var(--ease) forwards; }
.reveal-stagger > *:nth-child(1) { animation-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { animation-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { animation-delay: 0.25s; }
.reveal-stagger > *:nth-child(4) { animation-delay: 0.35s; }
.reveal-stagger > *:nth-child(5) { animation-delay: 0.45s; }
.reveal-stagger > *:nth-child(6) { animation-delay: 0.55s; }
@keyframes vdsReveal {
  to { opacity: 1; transform: translateY(0); }
}
.product-card, .category-card { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }

/* --- Campaign banner --- */
.campaign-banner { border-radius: var(--radius); overflow: hidden; position: relative; background: linear-gradient(120deg, #f0f9ff, #fff); border: 1px solid var(--border-accent); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.campaign-banner h3 { margin: 0 0 6px; color: var(--accent); }
.campaign-banner p { margin: 0; }

/* --- Section headers --- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.section-head h2 { margin: 0; font-size: 28px; }
.section-head p { margin: 6px 0 0; }

/* --- Category cards --- */
.category-card { display: block; padding: 28px; text-align: center; }
.category-card:hover { transform: translateY(-4px); border-color: var(--border-accent); }
.category-card .icon { width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 14px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 22px; }
.category-card h3 { font-size: 16px; margin-bottom: 4px; }
.category-card span { color: var(--text-muted); font-size: 13px; }

/* --- Product / pricing cards --- */
.product-card { display: flex; flex-direction: column; position: relative; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card.featured { border-color: var(--border-accent); box-shadow: var(--shadow-accent); }
.product-card .ribbon { position: absolute; top: 16px; right: 16px; }
.product-card-media { display:block; margin-bottom:14px; }
.product-thumb { max-height: 140px; max-width: 100%; width: auto; margin: 0 auto; object-fit: contain; }
.product-card .p-name { font-size: 17px; margin-bottom: 4px; }
.product-card .p-desc { font-size: 13px; margin-bottom: 18px; min-height: 36px; }
.product-card .p-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.product-card .p-price .old { color: var(--text-muted); text-decoration: line-through; font-size: 14px; }
.product-card .p-price .now { font-family: var(--font-display); font-size: 28px; color: var(--accent); font-weight: 700; }
.product-card .p-price .cycle { color: var(--text-muted); font-size: 13px; }
.product-card .p-specs { list-style: none; margin: 16px 0 22px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.product-card .p-specs li { color: var(--text-secondary); font-size: 13.5px; display: flex; align-items: center; gap: 8px; }
.product-card .p-specs li .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  display: inline-block;
  flex-shrink: 0;
}
.product-card .p-actions { margin-top: auto; display: flex; gap: 10px; }
.compare-checkbox { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-muted); margin-top: 12px; cursor: pointer; }

.success-status-ic .icon-svg { width: 56px; height: 56px; }

/* --- Ticket / dashboard timeline --- */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; top: 4px; bottom: 4px; left: 6px; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 22px; }
.timeline-item::before { content: ''; position: absolute; left: -28px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.timeline-item .time { font-size: 12px; color: var(--text-muted); }
.timeline-item .action { color: var(--text); font-weight: 600; font-size: 14px; margin: 2px 0 2px; }

/* --- Chat / ticket replies --- */
.reply-bubble { padding: 16px 18px; border-radius: var(--radius); margin-bottom: 14px; max-width: 85%; }
.reply-bubble.from-user { background: var(--bg-panel); border: 1px solid var(--border); margin-right: auto; }
.reply-bubble.from-admin { background: var(--accent-soft); border: 1px solid var(--border-accent); margin-left: auto; }
.reply-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; display: flex; gap: 8px; }

/* --- Footer --- */
.site-footer {
  background: #0f172a;
  border-top: none;
  padding: 56px 0 24px;
  margin-top: 60px;
  color: #94a3b8;
}
.site-footer .brand,
.site-footer .brand-text,
.footer-col h4 { color: #f8fafc; }
.site-footer .brand .icon-svg,
.site-footer .brand-mark .icon-svg { color: #38bdf8; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-col h4 { font-size: 14px; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #94a3b8; font-size: 13.5px; }
.footer-col a:hover { color: #38bdf8; }
.footer-col p { color: #94a3b8; }
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- Auth pages --- */
.auth-wrapper { min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card { width: 100%; max-width: 440px; padding: 40px; }
.auth-card h1 { font-size: 24px; margin-bottom: 6px; }
.auth-card .sub { color: var(--text-muted); font-size: 13.5px; margin-bottom: 28px; }
.auth-footer-link { text-align: center; margin-top: 20px; font-size: 13.5px; color: var(--text-muted); }

/* --- Empty state --- */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state .icon { font-size: 44px; margin-bottom: 16px; }

/* --- Pagination --- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.pagination a, .pagination span { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: var(--bg-panel); border: 1px solid var(--border); color: var(--text-secondary); font-size: 13px; }
.pagination a:hover { border-color: var(--border-accent); color: var(--accent); }
.pagination .active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* --- Compare table --- */
.compare-table th, .compare-table td { text-align: center; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; color: var(--text-muted); }

/* --- Customer panel (kullanıcı paneli) --- */
.panel-grid { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.panel-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 96px; }
.panel-user-card { display: flex; align-items: center; gap: 12px; padding: 18px; }
.panel-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; flex-shrink: 0; text-transform: uppercase; }
.panel-nav { display: flex; flex-direction: column; gap: 2px; background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px; }
.panel-nav a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--text-secondary); font-size: 13.5px; font-weight: 500; }
.panel-nav a .ic { width: 18px; text-align: center; opacity: 0.85; }
.panel-nav a:hover { background: var(--bg-hover); color: var(--text); }
.panel-nav a.active { background: var(--accent-soft); color: var(--accent); }
.panel-logout { width: 100%; background: var(--bg-panel); border: 1px solid var(--border); color: var(--text-secondary); padding: 12px; border-radius: var(--radius); font-size: 13.5px; font-weight: 500; cursor: pointer; text-align: left; }
.panel-logout:hover { border-color: var(--danger); color: var(--danger); }
.panel-content { min-width: 0; }
@media (max-width: 860px) {
  .panel-grid { grid-template-columns: 1fr; }
  .panel-sidebar { position: static; }
}

/* --- Stat / chart cards (panel + admin ortak) --- */
.stat-card { display: flex; align-items: center; gap: 16px; padding: 22px; }
.stat-card .ic { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.stat-card .ic.blue { background: rgba(56,189,248,0.15); color: var(--info); }
.stat-card .ic.green { background: rgba(56,189,248,0.15); color: var(--success); }
.stat-card .ic.yellow { background: rgba(251,191,36,0.15); color: var(--warning); }
.stat-card .ic.pink { background: var(--accent-soft); color: var(--accent); }
.stat-card .val { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text); }
.stat-card .lbl { font-size: 12.5px; color: var(--text-muted); }
.chart-card canvas { width: 100% !important; }
.data-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.data-toolbar .search-box input { width: 260px; }

/* ============================================================
   Anasayfa — SunucumPlus görsel landing
   ============================================================ */
.page-home main > .container:first-child { padding-top: 12px !important; }

.home-landing {
  background: var(--bg-base);
  color: var(--text);
  margin-top: -12px;
}

.home-landing .btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.home-promo {
  background: linear-gradient(90deg, #0c4a6e, #0ea5e9 55%, #38bdf8);
  color: #f0f9ff;
  font-size: 13.5px;
}
.home-promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0;
}
.home-promo-text strong { color: #fff; }
.home-promo-code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.home-coupon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px dashed rgba(255,255,255,0.55);
  color: #fff;
  border-radius: 10px;
  padding: 6px 12px;
  cursor: pointer;
  font: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}
.home-coupon code { font-family: var(--font-mono); font-weight: 700; letter-spacing: 0.04em; }
.home-coupon:hover { background: rgba(255,255,255,0.22); }
.home-coupon.copied { background: #fff; color: #0369a1; }

.home-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(14, 165, 233, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(14, 165, 233, 0.1), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.home-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.35);
  background: rgba(14, 165, 233, 0.08);
  color: var(--home-green, var(--accent));
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 16px;
}
.home-badge.dark {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: #bae6fd;
}
.home-hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  line-height: 1.12;
}
.home-hero h1 .accent { color: var(--accent); }
.home-lead { font-size: 1.05rem; max-width: 36rem; margin-bottom: 22px; }

.home-feature-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.home-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 550;
  color: #1e293b;
}
.home-feature-ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(14, 165, 233, 0.28);
  background: #fff;
  color: var(--home-green, var(--accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }

.home-price-box {
  display: inline-block;
  background: #eef4f8;
  border-radius: 16px;
  padding: 14px 18px;
  min-width: 220px;
}
.home-price-box .label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 4px;
}
.home-price-box .price-row { display: flex; align-items: baseline; gap: 6px; }
.home-price-box strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--home-green, var(--accent));
}
.home-price-box .cycle { color: #64748b; font-size: 14px; }
.home-price-box p { margin: 6px 0 0; font-size: 12.5px; }

.home-hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  opacity: 1;
  animation: homeFloat 6s ease-in-out infinite;
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, rgba(14, 165, 233, 0.22), transparent 60%),
    linear-gradient(160deg, #0c4a6e 0%, #0369a1 45%, #0ea5e9 100%);
  min-height: 280px;
}
.home-hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.home-hero-brand {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 74, 110, 0.85) 55%, rgba(12, 74, 110, 0.95) 100%);
  color: #fff;
  text-align: left;
}
.home-hero-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.home-hero-brand strong span { color: #7dd3fc; }
.home-hero-brand em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 13px;
  color: #bae6fd;
  letter-spacing: 0.02em;
}
@keyframes homeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* reveal + homeFloat ayni elemanda catisirsa gorsel invisible kalmasin */
.home-hero-visual.reveal {
  opacity: 1 !important;
  animation: homeFloat 6s ease-in-out infinite !important;
}

.home-stats {
  background: #fff;
  border-block: 1px solid rgba(15, 23, 42, 0.06);
  padding: 28px 0;
}
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.home-stats-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--home-green, var(--accent));
  margin-bottom: 4px;
}
.home-stats-grid span { font-size: 13px; color: #64748b; }

.home-campaigns { margin-top: 36px; }
.home-campaign {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 22px 26px;
  margin-bottom: 16px;
}
.home-campaign img {
  width: 120px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}
.home-campaign h3 { margin: 0 0 4px; font-size: 1.1rem; }
.home-campaign p { margin: 0; }

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.home-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  border-color: rgba(14, 165, 233, 0.35);
  color: inherit;
}
.home-service-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}
.home-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.home-service-card:hover .home-service-media img { transform: scale(1.05); }
.home-service-body { padding: 20px 22px 24px; }
.home-service-ic {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--home-green-soft);
  color: var(--home-green, var(--accent));
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.home-service-body h3 { margin: 0 0 6px; font-size: 1.15rem; }
.home-service-body p { margin: 0 0 12px; font-size: 13.5px; }
.home-service-meta {
  font-size: 13px;
  font-weight: 600;
  color: var(--home-green, var(--accent));
}

.home-premium {
  margin: 20px 0 0;
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    linear-gradient(135deg, #0c4a6e 0%, #0369a1 45%, #0369a1 100%);
  color: #f0f9ff;
}
.home-premium h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.home-premium p { color: #bae6fd; }
.home-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.home-check-list {
  list-style: none;
  margin: 18px 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.home-check-list li {
  position: relative;
  padding-left: 28px;
  color: #f0f9ff;
  font-weight: 500;
}
.home-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: inset 0 0 0 4px rgba(6, 78, 59, 0.45);
}
.home-premium-visual {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}
.home-premium-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.home-why-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 18px;
  padding: 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.home-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.home-why-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--home-green-soft);
  color: var(--home-green, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.home-why-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.home-why-card p { margin: 0; font-size: 13.5px; }

.home-locations {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: #fff;
  border-block: 1px solid rgba(15, 23, 42, 0.06);
}
.home-locations-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
}
.home-locations h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.home-loc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.home-loc-pills span {
  background: #f1f5f9;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.home-locations-visual {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
}
.home-locations-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-faq-list { max-width: 820px; }
.home-faq-item {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  margin-bottom: 10px;
  padding: 4px 18px;
  transition: border-color 0.2s ease;
}
.home-faq-item[open] { border-color: rgba(14, 165, 233, 0.4); }
.home-faq-item summary {
  cursor: pointer;
  font-weight: 650;
  color: #0f172a;
  padding: 14px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.home-faq-item summary::-webkit-details-marker { display: none; }
.home-faq-item summary::after {
  content: '+';
  color: var(--home-green, var(--accent));
  font-size: 1.25rem;
  font-weight: 700;
}
.home-faq-item[open] summary::after { content: '−'; }
.home-faq-item p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
}

.home-support {
  padding: clamp(2.5rem, 6vw, 4rem) 0 4rem;
}
.home-support-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, #f0f9ff, #ffffff 45%, #e0f2fe);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px);
}
.home-support h2 { margin: 0 0 8px; }
.home-support p { margin: 0; max-width: 36rem; }
.home-support-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.page-home .site-footer {
  margin-top: 0;
}

@media (max-width: 980px) {
  .home-hero-grid,
  .home-premium-grid,
  .home-locations-grid { grid-template-columns: 1fr; }
  .home-hero-visual { order: -1; max-width: 560px; margin: 0 auto; }
  .home-service-grid,
  .home-why-grid { grid-template-columns: 1fr 1fr; }
  .home-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .home-feature-list { grid-template-columns: 1fr; }
  .home-service-grid,
  .home-why-grid { grid-template-columns: 1fr; }
  .home-stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .home-hero-cta .btn { width: 100%; justify-content: center; }
}

