/* =====================================================
   BA OTOMAT — Ana Stil Dosyası
   Renk Paleti: Krem, Koyu Yeşil (#1A4731 / #0E2A1C), Soft Gri
   Premium revizyon: sıcak zeminler + koyu yeşil page-hero
   ===================================================== */

:root {
  --green: #1A4731;
  --green-deep: #0E2A1C;      /* hero / koyu bantlar */
  --green-mid: #2d7a52;
  --green-light: #e8f5ee;
  --green-soft: #f0f9f4;
  --leaf: #8FC093;            /* açık yeşil vurgu */
  --cream: #F4F0E5;           /* krem (koyu zeminde metin) */
  --white: #ffffff;
  --bg: #FBFAF6;              /* sıcak beyaz — sayfa gövdesi */
  --sand: #F4F1E9;            /* sıcak krem — alternatif bölümler */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --bej: #faf7f2;
  --red: #ef4444;
  --amber: #f59e0b;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center;
  gap: 40px; height: 70px;
}
.nav-logo { display: flex; align-items: center; font-weight: 800; font-size: 1.3rem; }
.nav-logo-img { height: 38px; width: auto; display: block; }
.nav-logo .lg-dark { display: none; }  /* koyu-zemin logosu varsayılan gizli */
/* hero-mode (şeffaf koyu header) ve henüz beyazlamadıysa: koyu zemin logosunu göster */
.site-header.hero-mode:not(.solid) .nav-logo .lg-light { display: none; }
.site-header.hero-mode:not(.solid) .nav-logo .lg-dark { display: block; }
.logo-ba { color: var(--green); }
.logo-otomat { color: var(--gray-800); }
.nav-links { display: flex; gap: 8px; margin-left: auto; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--gray-600);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: var(--green-light); }
.nav-mobile-cta { display: none; }  /* sadece mobil menüde görünür */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-nav {
  background: var(--green); color: var(--white);
  padding: 9px 20px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 600;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-nav:hover { background: var(--green-mid); transform: translateY(-1px); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-800); border-radius: 2px; transition: var(--transition);
}

/* --- Hero-mode: koyu bant (ana sayfa hero / iç sayfa page-hero) üstünde şeffaf header --- */
.site-header.hero-mode { position: fixed; left: 0; right: 0; top: 0; background: transparent; backdrop-filter: none; border-bottom: 1px solid transparent; }
.site-header.hero-mode .logo-ba { color: #fff; }
.site-header.hero-mode .logo-otomat { color: var(--cream); }
.site-header.hero-mode .nav-links a { color: rgba(244,240,229,.82); }
.site-header.hero-mode .nav-links a:hover,
.site-header.hero-mode .nav-links a.active { color: #fff; background: rgba(244,240,229,.12); }
.site-header.hero-mode .btn-nav { background: var(--cream); color: var(--green-deep); }
.site-header.hero-mode .btn-nav:hover { background: #fff; }
.site-header.hero-mode .nav-hamburger span { background: var(--cream); }
/* kaydırınca beyaz/okunur */
.site-header.hero-mode.solid { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom-color: var(--gray-200); }
.site-header.hero-mode.solid .logo-ba { color: var(--green); }
.site-header.hero-mode.solid .logo-otomat { color: var(--gray-800); }
.site-header.hero-mode.solid .nav-links a { color: var(--gray-600); }
.site-header.hero-mode.solid .nav-links a:hover,
.site-header.hero-mode.solid .nav-links a.active { color: var(--green); background: var(--green-light); }
.site-header.hero-mode.solid .btn-nav { background: var(--green); color: #fff; }
.site-header.hero-mode.solid .nav-hamburger span { background: var(--gray-800); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
}
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,71,49,0.3); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover { background: var(--green-light); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: 50px; cursor: pointer; border: none; font-weight: 600; }

/* ===================== HERO (eski; ana sayfa artık kendi hero'sunu kullanıyor) ===================== */
.hero {
  background: linear-gradient(135deg, var(--green-soft) 0%, var(--white) 60%);
  padding: 100px 24px 80px;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1;
  color: var(--gray-800); margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--green); }
.hero-sub {
  font-size: 1.2rem; color: var(--gray-600);
  max-width: 600px; margin: 0 auto 40px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--gray-200); flex-wrap: wrap;
}
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--green); }
.hero-stat-label { font-size: 0.85rem; color: var(--gray-600); }

/* ===================== SECTIONS ===================== */
.section { padding: 80px 24px; }
.section-alt { background: var(--sand); }
.section-green { background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%); color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--gray-800);
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.section-sub { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 48px; }
.section-green .section-title { color: var(--white); }
.section-green .section-sub { color: rgba(255,255,255,0.8); }

/* ===================== CARDS ===================== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--leaf); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--green-light); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* ===================== PRODUCT CARD ===================== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.product-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200); overflow: hidden;
  transition: var(--transition); cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--leaf); }
.product-img {
  width: 100%; height: 200px; object-fit: cover;
  background: var(--gray-100);
}
.product-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--green-soft), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.product-body { padding: 18px; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.tag {
  font-size: 0.72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 50px;
  background: var(--green-light); color: var(--green);
}
.tag-gray { background: var(--gray-100); color: var(--gray-600); }
.product-name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.product-macros { display: flex; gap: 12px; font-size: 0.8rem; color: var(--gray-600); margin-bottom: 12px; }
.ba-score {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; padding: 4px 12px;
  border-radius: 50px; background: var(--green); color: var(--white);
}
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--green); }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.btn-qr {
  font-size: 0.8rem; color: var(--green); font-weight: 600;
  display: flex; align-items: center; gap: 4px;
  padding: 6px 12px; border-radius: 50px;
  border: 1.5px solid var(--green); transition: var(--transition);
  background: none; cursor: pointer;
}
.btn-qr:hover { background: var(--green); color: var(--white); }

/* ===================== FILTERS ===================== */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 18px; border-radius: 50px; font-size: 0.85rem;
  font-weight: 600; cursor: pointer; border: 2px solid var(--gray-200);
  background: var(--white); color: var(--gray-600); transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--green); background: var(--green); color: var(--white);
}

/* ===================== QR PAGE ===================== */
.qr-page { max-width: 700px; margin: 0 auto; padding: 40px 24px; }
.qr-product-header { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 32px; flex-wrap: wrap; }
.qr-product-img { width: 130px; height: 130px; border-radius: var(--radius); object-fit: cover; background: var(--gray-100); flex-shrink: 0; }
.qr-product-img-placeholder { width: 130px; height: 130px; border-radius: var(--radius); background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 3rem; flex-shrink: 0; }
.qr-score-big { font-size: 3rem; font-weight: 800; color: var(--green); line-height: 1; }
.qr-section { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); padding: 24px; margin-bottom: 16px; }
.qr-section h3 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-600); margin-bottom: 16px; }
.macro-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.macro-item { text-align: center; padding: 12px; background: var(--sand); border-radius: var(--radius-sm); }
.macro-val { font-size: 1.3rem; font-weight: 800; color: var(--green); }
.macro-label { font-size: 0.72rem; color: var(--gray-600); }
.uygunluk-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.uygunluk-item:last-child { border-bottom: none; }

/* ===================== LOKASYONLAR ===================== */
.map-container { border-radius: var(--radius); overflow: hidden; height: 450px; background: var(--gray-100); }
.lokasyon-card {
  display: flex; gap: 16px; padding: 16px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200); margin-bottom: 12px;
  cursor: pointer; transition: var(--transition);
}
.lokasyon-card:hover { border-color: var(--green); }
.lokasyon-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.lokasyon-name { font-weight: 700; margin-bottom: 2px; }
.lokasyon-addr { font-size: 0.85rem; color: var(--gray-600); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.status-green { background: #22c55e; }
.status-red { background: var(--red); }

/* ===================== FORMS ===================== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-800); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 0.95rem; font-family: inherit;
  transition: var(--transition); outline: none;
  background: var(--white); color: var(--gray-800);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,71,49,0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--green); }
.form-check label { font-size: 0.85rem; color: var(--gray-600); }

/* ===================== EMAIL CAPTURE ===================== */
.email-capture {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--white);
  border-radius: var(--radius); padding: 48px;
  text-align: center;
}
.email-capture h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.email-capture p { opacity: 0.8; margin-bottom: 28px; }
.email-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.email-form input {
  flex: 1; min-width: 200px; padding: 14px 20px;
  border-radius: 50px; border: none; outline: none;
  font-size: 0.95rem; font-family: inherit;
}

/* ===================== BA SCORE BAR ===================== */
.score-bar-wrap { margin-bottom: 14px; }
.score-bar-label { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 4px; }
.score-bar { height: 8px; background: var(--gray-200); border-radius: 50px; overflow: hidden; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--leaf)); border-radius: 50px; transition: width 0.8s ease; }

/* ===================== STEPS ===================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.step { text-align: center; padding: 24px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 0.875rem; color: var(--gray-600); }

/* ===================== BLOG ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); background: var(--white); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--leaf); }
.blog-img { height: 200px; object-fit: cover; width: 100%; }
.blog-body { padding: 20px; }
.blog-cat { font-size: 0.75rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.blog-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-excerpt { font-size: 0.875rem; color: var(--gray-600); margin-bottom: 12px; }
.blog-meta { font-size: 0.8rem; color: var(--gray-400); }

/* ===================== PAGE HERO (iç sayfa üst bandı — koyu yeşil + krem) ===================== */
.page-hero {
  position: relative; overflow: hidden;
  padding: 158px 24px 56px;
  background:
    radial-gradient(820px 460px at 78% 18%, #18402C 0%, transparent 60%),
    linear-gradient(160deg, var(--green-deep) 0%, #0A2016 100%);
  border-bottom: none;
  text-align: center;
  color: var(--cream);
}
.page-hero::after {
  content: ""; position: absolute; left: -120px; bottom: -120px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143,192,147,.16) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); font-weight: 800; color: #ffffff; margin-bottom: 12px; letter-spacing: -0.02em; }
.page-hero p { font-size: 1.05rem; color: rgba(244,240,229,0.78); max-width: 600px; margin: 0 auto; position: relative; }

/* ===================== ALERTS ===================== */
.alert { padding: 14px 20px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 0.9rem; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: var(--green-light); color: var(--green); border: 1px solid #a7f3d0; }

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 600px; margin: 0 auto;
  background: var(--green-deep); color: var(--white);
  border-radius: var(--radius); padding: 20px 24px;
  z-index: 9999; box-shadow: var(--shadow-md);
}
.cookie-content { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cookie-content p { flex: 1; font-size: 0.875rem; opacity: 0.9; min-width: 200px; }
.cookie-content a { color: #86efac; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--green-deep); color: var(--white); padding: 64px 24px 0; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.footer-logo .logo-ba { color: #86efac; }
.footer-logo .logo-otomat { color: var(--cream); }
.footer-tagline { font-size: 0.9rem; opacity: 0.6; line-height: 1.6; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--green-mid); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.5; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; opacity: 0.7; transition: var(--transition); }
.footer-col a:hover { opacity: 1; color: #86efac; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 0; font-size: 0.85rem; opacity: 0.5; }
.footer-bottom a { opacity: 1; color: inherit; }

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

/* --- Tablet --- */
@media (max-width: 1024px) {
  .nav-container { gap: 20px; }
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Mobil --- */
@media (max-width: 768px) {
  .nav-container { gap: 16px; }
  .nav-actions { margin-left: auto; }
  .nav-hamburger { display: flex; }
  .btn-nav { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    background: var(--white); flex-direction: column;
    padding: 14px 0 28px; gap: 2px; z-index: 1001;
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,.25);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; animation: navIn .24s ease both; }
  @keyframes navIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

  .nav-links li { width: 100%; }
  /* açılan beyaz menü satırları (hem normal hem hero-mode için aynı görünüm) */
  .site-header .nav-links.open a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; margin: 0; border-radius: 0;
    font-size: 1.05rem; font-weight: 600; color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
    background: transparent;
  }
  .site-header .nav-links.open a::after { content: "›"; color: var(--leaf); font-size: 1.4rem; line-height: 1; opacity: .65; }
  .site-header .nav-links.open a:hover,
  .site-header .nav-links.open a.active { background: var(--green-light); color: var(--green); }
  .site-header .nav-links.open a.active::after { opacity: 1; color: var(--green); }

  /* menü içi CTA butonu (sadece mobil) */
  .nav-mobile-cta { display: block; padding: 20px 24px 0; }
  .nav-mobile-cta a {
    display: block; text-align: center; background: var(--green); color: #fff;
    padding: 15px; border-radius: 50px; font-weight: 700; font-size: 1rem; border-bottom: none;
  }
  .nav-mobile-cta a::after { content: none; }
  .nav-mobile-cta a:hover { background: var(--green-mid); color: #fff; }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 56px 20px; }
  .hero { padding: 60px 20px 48px; }
  .hero-stats { gap: 28px; margin-top: 40px; padding-top: 28px; }
  .section-sub { margin-bottom: 32px; }
  .page-hero { padding: 132px 20px 38px; }

  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .macro-grid { grid-template-columns: repeat(2, 1fr); }

  .email-capture { padding: 32px 20px; }
  .email-form { flex-direction: column; }
  .email-form input { min-width: 0; }

  .qr-product-header { gap: 16px; }
  .qr-section { padding: 20px; }
}

/* --- Küçük telefonlar --- */
@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .email-capture h2 { font-size: 1.5rem; }
  .qr-score-big { font-size: 2.4rem; }
  .map-container { height: 320px; }
}

/* ===================== SKELETON LOADING ===================== */
.skeleton { background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%); background-size: 400% 100%; animation: skeleton 1.5s ease-in-out infinite; border-radius: var(--radius-sm); }
@keyframes skeleton { 0% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* ===================== UTILITIES ===================== */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.font-bold { font-weight: 700; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.gap-2 { gap: 8px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.hidden { display: none; }