/* ============================================================
   MOHSite - Ana Stil Dosyası
   Palet: Turuncu #FF6B35 · Lacivert #1A1A2E · Teal #2EC4B6
          Altın #E8B84B · Kırmızı #E63946 · Kırık beyaz #F7F4EF
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:    #FF6B35;
  --orange-d:  #E55A26;
  --navy:      #1A1A2E;
  --navy-2:    #16213E;
  --blue:      #0F3460;
  --teal:      #2EC4B6;
  --gold:      #E8B84B;
  --red:       #E63946;
  --purple:    #6C63FF;
  --bg:        #F7F4EF;
  --bg-2:      #EFECEA;
  --white:     #FFFFFF;
  --text:      #1A1A2E;
  --text-2:    #4A4A6A;
  --text-3:    #8888AA;
  --border:    #E2DDD8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font:      'Nunito', 'Inter', system-ui, sans-serif;
  --trans:     0.2s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 15px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font); }

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

/* ── Buttons ──────────────────────────────────────────── */
.btn-primary-sm {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff;
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; transition: var(--trans);
}
.btn-primary-sm:hover { background: var(--orange-d); transform: translateY(-1px); }

.btn-outline-sm {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border); color: var(--text-2);
  padding: 7px 16px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; transition: var(--trans);
}
.btn-outline-sm:hover { border-color: var(--orange); color: var(--orange); }

/* ── Header / Navbar ──────────────────────────────────── */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--border);
  transition: box-shadow var(--trans);
}
#site-header.scrolled { box-shadow: var(--shadow); }

.navbar {
  display: flex; align-items: center; gap: 24px;
  padding: 12px 0; min-height: 64px;
}

.navbar-brand { flex-shrink: 0; }
.brand-text { font-size: 20px; font-weight: 900; color: var(--navy); letter-spacing: -.5px; }
.brand-accent { color: var(--orange); }

.navbar-menu { display: flex; align-items: center; gap: 4px; flex: 1; }

.nav-item {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--text-2);
  transition: var(--trans); position: relative; cursor: pointer;
}
.nav-item:hover, .nav-item.active { color: var(--orange); background: rgba(255,107,53,.06); }

.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 6px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all var(--trans);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-right { left: auto; right: 0; }
.dropdown-menu-catalog { min-width: 240px; max-height: 70vh; overflow-y: auto; }
.dropdown-group-label {
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-3); padding: 8px 12px 4px; pointer-events: none;
}
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 8px; }

.dropdown-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: 13px; color: var(--text-2); transition: var(--trans);
}
.dropdown-item:hover { background: rgba(255,107,53,.06); color: var(--orange); }
.dropdown-item.text-danger { color: var(--red); }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

.navbar-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.btn-icon {
  position: relative; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--text-2);
  font-size: 18px; transition: var(--trans);
}
.btn-icon:hover { background: var(--bg-2); color: var(--orange); }

.badge-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.btn-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.mobile-toggle { display: none; }

/* Search */
.search-overlay {
  background: var(--white); border-top: 1px solid var(--border);
  padding: 12px 0;
}
.search-form {
  display: flex; align-items: center; gap: 10px;
  border: 2px solid var(--orange); border-radius: var(--radius);
  padding: 8px 16px;
}
.search-icon { color: var(--text-3); font-size: 18px; }
.search-input {
  flex: 1; border: none; outline: none; font-size: 15px;
  background: none; color: var(--text);
}
.search-close { color: var(--text-3); font-size: 20px; }
.search-results { padding-top: 8px; }

/* Alerts */
.alert {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; margin: 8px 0;
}
.alert-success { background: #EAF3DE; color: #27500A; }
.alert-error   { background: #FCEBEB; color: #7D1F1F; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .3;
}
.hero-glow-1 { width: 500px; height: 500px; background: var(--orange); top: -200px; right: -100px; }
.hero-glow-2 { width: 300px; height: 300px; background: var(--blue);  bottom: -100px; left: 100px; }

.hero-inner {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 48px; align-items: center;
  padding: 80px 0 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,.15); border: 1px solid rgba(255,107,53,.3);
  color: #FF9F7A; font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; color: #fff;
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -.5px;
}
.hero-accent { color: var(--orange); }

.hero-desc {
  font-size: 16px; color: rgba(255,255,255,.6);
  margin-bottom: 28px; line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 800;
  transition: var(--trans); box-shadow: 0 4px 20px rgba(255,107,53,.4);
}
.btn-hero-primary:hover { background: var(--orange-d); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(255,107,53,.5); }

.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 13px 24px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; transition: var(--trans);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.18); }

.hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,.45); font-weight: 600;
}
.trust-item i { color: var(--teal); }

/* Phone mockup */
.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.phone-mockup { position: relative; }
.phone-frame {
  width: 260px; background: var(--navy-2);
  border: 3px solid rgba(255,255,255,.1); border-radius: 32px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.phone-screen { padding: 20px 16px; }
.phone-game-preview {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px;
}
.game-preview-card {
  background: rgba(255,255,255,.06); border-radius: 12px;
  padding: 16px 12px; text-align: center;
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--trans); cursor: pointer;
}
.game-preview-card:hover { background: rgba(255,255,255,.1); transform: scale(1.03); }
.game-preview-card i { font-size: 24px; color: var(--c, #FF6B35); display: block; margin-bottom: 6px; }
.game-preview-card span { font-size: 10px; color: rgba(255,255,255,.6); font-weight: 600; }
.phone-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pstat {
  background: rgba(255,255,255,.06); border-radius: 10px;
  padding: 12px; text-align: center;
}
.pstat-val { display: block; font-size: 18px; font-weight: 800; color: var(--gold); }
.pstat-label { font-size: 9px; color: rgba(255,255,255,.4); font-weight: 600; }
.phone-glow {
  position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 60px; background: var(--orange);
  filter: blur(40px); opacity: .25; border-radius: 50%;
}

/* Stats bar — premium animated */
.hero-stats-bar {
  background: rgba(255,255,255,.05);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; margin-top: 60px;
}
.hero-stats-bar--premium {
  position: relative;
  overflow: hidden;
  padding: 28px 0 32px;
  margin-top: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.97) 0%, rgba(15,23,42,0.88) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hero-stats-shimmer {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255,107,53,0.06) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: statsShimmer 6s ease-in-out infinite;
}
@keyframes statsShimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}
.stats-row { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stats-row--premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.stat-card {
  position: relative;
  text-align: center;
  padding: 20px 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1), border-color 0.25s, box-shadow 0.25s;
}
.stat-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.stat-card:hover {
  border-color: rgba(255,107,53,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,107,53,0.12);
  transform: translateY(-4px) scale(1.02);
}
.stat-icon-ring {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  position: relative;
  animation: statIconPulse 2.5s ease-in-out infinite;
}
.stat-icon-ring::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid currentColor; opacity: 0.25;
  animation: statRingExpand 2.5s ease-out infinite;
}
.stat-icon-ring--orange { background: rgba(255,107,53,0.15); color: #ffb347; }
.stat-icon-ring--teal   { background: rgba(46,196,182,0.15); color: #2ec4b6; }
.stat-icon-ring--purple { background: rgba(131,58,180,0.15); color: #b794f6; }
.stat-icon-ring--gold   { background: rgba(232,184,75,0.15); color: var(--gold); }
@keyframes statIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes statRingExpand {
  0% { transform: scale(1); opacity: 0.35; }
  100% { transform: scale(1.35); opacity: 0; }
}
.stat-value-row {
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
  margin-bottom: 4px; min-height: 36px;
}
.stat-value-row--rating .stat-num { letter-spacing: -0.02em; }
.stat-num {
  display: inline-block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  background: linear-gradient(135deg, #ffd166 0%, #ffb347 45%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}
.stat-star {
  font-size: 20px; color: var(--gold);
  animation: statStarTwinkle 2s ease-in-out infinite;
}
@keyframes statStarTwinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}
.stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-item { padding: 0 40px; text-align: center; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* ── Section Ortak ────────────────────────────────────── */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.section-header.center { flex-direction: column; text-align: center; gap: 8px; }

.section-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900; color: var(--navy);
}
.section-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700; color: var(--orange);
}
.section-link:hover { gap: 8px; }
.section-sub { font-size: 15px; color: var(--text-2); }

.section-categories { padding: 60px 0 40px; }
.section-products   { padding: 48px 0; }
.section-gray       { background: var(--bg-2); }
.section-how        { padding: 64px 0; }
.section-calculator { padding: 64px 0; }
.section-reviews    { padding: 64px 0; }
.section-cta        { padding: 48px 0; }

/* ── Kategoriler ────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 8px;
  transition: var(--trans); text-align: center;
}
.cat-card:hover {
  border-color: var(--cat-color, var(--orange));
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.cat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: color-mix(in srgb, var(--cat-color, var(--orange)) 12%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--cat-color, var(--orange));
  transition: var(--trans);
}
.cat-card:hover .cat-icon { background: color-mix(in srgb, var(--cat-color, var(--orange)) 20%, transparent); }
.cat-name { font-size: 11px; font-weight: 700; color: var(--text-2); }

/* ── Ürün Kartları ──────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--trans); position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,53,.2);
}

.product-thumb {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--bg-2);
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-thumb-placeholder, .product-thumb-icon {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: var(--text-3); opacity: .4;
}

.product-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 9px; font-weight: 800; padding: 3px 8px;
  border-radius: 4px; text-transform: uppercase;
}
.badge-hot { background: var(--red); color: #fff; }
.badge-new { background: var(--teal); color: #fff; }

.product-discount {
  position: absolute; top: 10px; right: 10px;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 3px 7px; border-radius: 4px;
}

.product-actions-hover {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  padding: 20px 10px 10px;
  display: flex; align-items: center; justify-content: space-between;
  opacity: 0; transform: translateY(4px); transition: var(--trans);
}
.product-card:hover .product-actions-hover { opacity: 1; transform: translateY(0); }

.btn-wishlist {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.2); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--trans);
}
.btn-wishlist:hover { background: var(--red); }
.btn-quick-view {
  font-size: 11px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,.2); padding: 5px 12px;
  border-radius: 4px; transition: var(--trans);
}
.btn-quick-view:hover { background: var(--orange); }

.product-body { padding: 12px; }
.product-cat { font-size: 10px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .05em; }
.product-name { font-size: 14px; font-weight: 700; margin: 4px 0 8px; line-height: 1.3; }
.product-name a:hover { color: var(--orange); }

.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price-sale { font-size: 16px; font-weight: 900; color: var(--orange); }
.price-old  { font-size: 11px; color: var(--text-3); text-decoration: line-through; margin-left: 4px; }
.price-contact { font-size: 12px; font-weight: 700; color: var(--blue); }

.btn-add-cart {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--trans);
}
.btn-add-cart:hover { background: var(--orange-d); transform: scale(1.1); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Nasıl Çalışır ─────────────────────────────────────── */
.how-steps {
  display: flex; align-items: flex-start; gap: 0;
  flex-wrap: wrap; justify-content: center;
}
.how-step {
  flex: 1; min-width: 220px; max-width: 280px;
  text-align: center; padding: 32px 24px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
}
.how-step:hover { box-shadow: var(--shadow); transform: translateY(-2px); transition: var(--trans); }
.how-num {
  font-size: 48px; font-weight: 900; color: var(--border);
  line-height: 1; margin-bottom: 12px; font-family: 'Nunito', sans-serif;
}
.how-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255,107,53,.1); color: var(--orange);
  font-size: 26px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.how-step h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.how-step p  { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.how-arrow {
  display: flex; align-items: center; padding: 0 8px;
  color: var(--text-3); font-size: 24px; margin-top: 60px;
}

/* ── Gelir Hesaplayıcı ────────────────────────────────── */
.calc-wrapper {
  display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: center;
  background: var(--white); border-radius: var(--radius-xl);
  padding: 48px; box-shadow: var(--shadow);
}
.calc-field { margin-bottom: 24px; }
.calc-field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--text-2); }
.calc-input-wrap {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--text);
}
.calc-input-wrap input[type=range] {
  flex: 1; accent-color: var(--orange); height: 4px; cursor: pointer;
}
.calc-select {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; background: var(--bg);
  color: var(--text); outline: none; cursor: pointer;
}
.calc-select:focus { border-color: var(--orange); }

.result-card {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 32px; text-align: center;
}
.result-label { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 600; margin-bottom: 12px; }
.result-amount { font-size: 42px; font-weight: 900; color: var(--gold); margin-bottom: 8px; }
.result-note { font-size: 11px; color: rgba(255,255,255,.3); margin-bottom: 20px; }
.result-breakdown { border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; margin-bottom: 20px; }
.rb-item {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 5px 0;
  color: rgba(255,255,255,.5);
}
.rb-item span:last-child { color: rgba(255,255,255,.8); font-weight: 700; }
.btn-calc-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; transition: var(--trans);
}
.btn-calc-cta:hover { background: var(--orange-d); gap: 10px; }

/* ── Yorumlar ──────────────────────────────────────────── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.review-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: var(--trans);
}
.review-card:hover { box-shadow: var(--shadow); border-color: rgba(255,107,53,.2); }
.review-stars { font-size: 18px; color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-footer { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; }
.review-meta { font-size: 11px; color: var(--text-3); }

/* ── CTA ───────────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius-xl); padding: 48px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cta-box h2 { font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.cta-box p  { font-size: 15px; color: rgba(255,255,255,.55); }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 14px 24px; border-radius: var(--radius);
  font-size: 14px; font-weight: 800; transition: var(--trans);
}
.btn-cta-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }

.btn-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 13px 22px; border-radius: var(--radius);
  font-size: 14px; font-weight: 700; transition: var(--trans);
}
.btn-cta-secondary:hover { background: rgba(255,255,255,.2); }

/* ── Footer ────────────────────────────────────────────── */
#site-footer { background: var(--navy); color: rgba(255,255,255,.7); margin-top: 0; }
.footer-top { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 14px; }
.footer-brand span { color: var(--orange); }
.footer-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--trans);
}
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-heading { font-size: 13px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.45); transition: var(--trans); }
.footer-links a:hover { color: var(--orange); }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 10px; }
.footer-contact i { color: var(--orange); }
.footer-contact a { color: rgba(255,255,255,.45); transition: var(--trans); }
.footer-contact a:hover { color: var(--orange); }
.footer-trust { margin-top: 20px; opacity: .4; filter: grayscale(1) brightness(10); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: var(--trans); animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* Scroll top */
.scroll-top {
  position: fixed; bottom: 84px; right: 24px; z-index: 999;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; opacity: 0; pointer-events: none;
  transition: var(--trans); box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--orange); color: #fff; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .calc-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; width: 100%; max-width: 100%; padding-bottom: 70px; }
  .container { padding: 0 14px; width: 100%; max-width: 100%; box-sizing: border-box; }
  .navbar { flex-wrap: wrap; gap: 8px; justify-content: space-between; padding: 10px 0; }
  .navbar-brand { max-width: 70%; font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .navbar-actions { display: none; /* Hide top actions on mobile, use bottom nav */ }
  .navbar-menu { display: none; }
  .mobile-toggle { display: none; /* Hide toggle since we use bottom nav */ }
  
  /* MOBİL ALT MENÜ CSS */
  .mobile-bottom-nav { display: flex; justify-content: space-around; align-items: center; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--white); border-top: 1px solid var(--border); padding: 8px 0; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.05); }
  .mb-nav-item { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-3); text-decoration: none; font-size: 10px; font-weight: 600; gap: 4px; transition: color 0.2s; width: 25%; }
  .mb-nav-item i { font-size: 22px; }
  .mb-nav-item.active { color: var(--orange); }
  .mb-nav-item.active i { transform: scale(1.1); }
  .mb-badge { position: absolute; top: -4px; right: 20%; background: var(--red); color: white; font-size: 9px; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 2px solid var(--white); }
  
  .whatsapp-float { bottom: 80px; right: 16px; width: 44px; height: 44px; font-size: 22px; }
  .scroll-top { bottom: 130px; }
  
  #urgency-bar { flex-wrap: wrap; padding: 8px 10px !important; text-align: center; justify-content: center; }
  #urgency-bar span { font-size: 11px !important; }
  
  .hero-inner { padding: 40px 0 0; }
  .hero-title { font-size: 28px; }
  .hero-actions { justify-content: center; flex-direction: column; width: 100%; }
  .hero-actions .btn-hero-primary, .hero-actions .btn-hero-secondary { width: 100%; justify-content: center; }
  
  .stat-item { padding: 0 8px; }
  .stats-row--premium { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-card { padding: 12px 8px; }
  .stat-num { font-size: 18px; }
  
  .how-arrow { display: none; }
  .how-steps { gap: 12px; }
  .cta-box { padding: 24px 16px; flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
}

@media (min-width: 769px) {
  .mobile-bottom-nav { display: none; } /* PC'de alt menüyü gizle */
}
