/* ============================================================
   NuN Tarım — Profesyonel Tema
   Koyu Orman Yeşili + Krem/Altın Palette
   Playfair Display + Nunito
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Zemin Tonları — Beyazımsı / Krem */
  --bg-0:        #f7f5f0;   /* Ana zemin — sıcak beyaz */
  --bg-1:        #ffffff;   /* Kartlar — saf beyaz */
  --bg-2:        #f0ede6;   /* Panel / ayırıcı */
  --bg-3:        #e8e4db;   /* Sınırlar */

  /* Yeşil Palet — Vurgu olarak kalıyor */
  --green-dark:  #166534;
  --green-mid:   #22c55e;
  --green-light: #16a34a;
  --green-pale:  #dcfce7;

  /* Metin Tonları */
  --cream:       #1a1a1a;   /* Ana yazı — koyu */
  --cream-dim:   #5a5750;   /* İkincil yazı */
  --gold:        #b45309;   /* Amber/kahve vurgu */
  --gold-light:  #d97706;

  /* Gradient'ler */
  --grad-hero:   linear-gradient(160deg, #f7f5f0 0%, #eef5ee 50%, #f7f5f0 100%);
  --grad-brand:  linear-gradient(135deg, #166534 0%, #22c55e 100%);
  --grad-gold:   linear-gradient(135deg, #b45309 0%, #d97706 100%);
  --grad-card:   linear-gradient(145deg, #ffffff 0%, #f7f5f0 100%);

  /* Gölgeler — açık zemin için hafif */
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.09);
  --shadow-xl:   0 24px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-green: 0 0 40px rgba(34,197,94,0.1), 0 8px 32px rgba(0,0,0,0.08);

  /* Tipografi */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', sans-serif;

  /* Köşe Yuvarlaklıkları */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  /* Geçiş */
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-0);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   ARKA PLAN EFEKTİ — Beyazımsı Geçişli
   ============================================================ */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg-0);
  pointer-events: none;
}

/* Sol üst — çok hafif yeşil nefes */
.site-bg::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -15%;
  width: 75vw;
  height: 75vh;
  background: radial-gradient(ellipse, rgba(134,206,160,0.18) 0%, rgba(220,252,231,0.08) 40%, transparent 70%);
  animation: bgDrift 12s ease-in-out infinite alternate;
}

/* Sağ alt — sıcak amber/krem nefes */
.site-bg::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 65vw;
  height: 65vh;
  background: radial-gradient(ellipse, rgba(251,243,220,0.55) 0%, rgba(245,240,232,0.2) 45%, transparent 70%);
  animation: bgDrift 15s ease-in-out infinite alternate-reverse;
}

@keyframes bgDrift {
  from { opacity: 0.6; transform: scale(1) translate(0, 0); }
  to   { opacity: 1;   transform: scale(1.12) translate(2%, -2%); }
}

/* Grid KALDIRILDI — .site-bg-grid boş bırakıyoruz */
.site-bg-grid { display: none; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(247,245,240,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(34,197,94,0.15);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: #4a4743;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--green-dark);
  background: rgba(34,197,94,0.08);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bg-0);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: var(--r-sm);
  background: var(--grad-brand);
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2d2b27;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 15vh, 180px) 0 clamp(80px, 10vh, 120px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 55% 50% at 65% 45%, rgba(134,206,160,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(251,243,220,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-title .accent {
  display: block;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 400;
  color: #5a5750;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-subtitle strong {
  color: var(--green-dark);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34,197,94,0.4);
}

.btn-outline {
  background: transparent;
  color: #2d2b27;
  border: 1.5px solid rgba(26,26,26,0.18);
}

.btn-outline:hover {
  background: rgba(26,26,26,0.05);
  border-color: rgba(26,26,26,0.3);
  transform: translateY(-2px);
}

/* Hero İstatistikler */
.hero-stats {
  display: flex;
  gap: 32px;
}

.stat-item { text-align: left; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #7a7570;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}

/* Hero Görsel */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.h-browser {
  width: 100%;
  max-width: 520px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(34,197,94,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
}

.h-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #f0ede6;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.h-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.h-dot:nth-child(1) { background: #ff5f57; }
.h-dot:nth-child(2) { background: #ffbd2e; }
.h-dot:nth-child(3) { background: #28c840; }

.h-content { padding: 0; overflow: hidden; }

.h-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   SECTION GENEL
   ============================================================ */
.section {
  padding: clamp(70px, 10vh, 120px) 0;
  position: relative;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-heading em {
  font-style: italic;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: #6b6660;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 40px;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto 40px;
}

/* Tag */
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* Reveal Animasyonu */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   PROJE ÖZETİ (İki Kolon)
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(34,197,94,0.12);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-info-item:hover {
  border-color: rgba(34,197,94,0.3);
  box-shadow: 0 6px 24px rgba(34,197,94,0.08);
}

.ci-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  font-size: 1.1rem;
}

.ci-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.ci-value {
  font-size: 0.85rem;
  color: #6b6660;
  line-height: 1.6;
}

/* Mockup Frame */
.mockup-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(34,197,94,0.18);
  box-shadow: var(--shadow-xl);
  background: var(--bg-1);
}

.mockup-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   ÖZELLİKLER (3 Kart)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
  margin-top: 48px;
}

.feat-card {
  padding: clamp(24px, 4vw, 36px);
  background: #ffffff;
  border: 1px solid rgba(34,197,94,0.1);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 0 0 1px rgba(34,197,94,0.1);
}

.feat-card:hover::before { opacity: 1; }

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-mid);
  margin-bottom: 20px;
}

.feat-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feat-desc {
  font-size: 0.88rem;
  color: #6b6660;
  line-height: 1.7;
}

/* ============================================================
   GALERİ
   ============================================================ */
.shots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 28px);
  margin-top: 48px;
}

.shot-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  border: 1px solid rgba(34,197,94,0.12);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.shot-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(34,197,94,0.22);
  border-color: rgba(34,197,94,0.3);
}

.shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s var(--ease);
}

.shot-card:hover img {
  transform: scale(1.04);
}

.shot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,101,52,0.88) 0%, rgba(22,101,52,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 3vw, 24px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.shot-card:hover .shot-overlay { opacity: 1; }

.shot-overlay strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.shot-overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Büyüteç ikonu hover'da */
.shot-card::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(34,197,94,0.2);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.shot-card:hover::after { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(34,197,94,0.12);
  background: #f0ede6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #7a7570;
}

.footer-legal span {
  font-size: 0.78rem;
  color: #9a9590;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.12);
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.04em;
}

/* ============================================================
   LİGHTBOX
   ============================================================ */
#nt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

#nt-lightbox.nt-lb-active {
  opacity: 1;
  pointer-events: all;
}

.nt-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nt-lb-box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  transform: scale(0.9) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#nt-lightbox.nt-lb-active .nt-lb-box {
  transform: scale(1) translateY(0);
}

.nt-lb-img-wrap {
  max-width: 88vw;
  max-height: 74vh;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.12);
}

.nt-lb-img {
  display: block;
  max-width: 88vw;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--r-lg);
  transition: opacity 0.18s ease;
}

.nt-lb-img.nt-lb-fade { opacity: 0; }

.nt-lb-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--cream);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}

.nt-lb-close:hover {
  background: rgba(34,197,94,0.22);
  transform: rotate(90deg);
}

.nt-lb-prev,
.nt-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--cream);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, opacity 0.2s, transform 0.2s;
}

.nt-lb-prev { left: -60px; }
.nt-lb-next { right: -60px; }

.nt-lb-prev:hover,
.nt-lb-next:hover {
  background: rgba(34,197,94,0.24);
}

.nt-lb-caption {
  margin-top: 18px;
  text-align: center;
}

.nt-lb-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.nt-lb-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--green-light);
  margin-top: 4px;
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — BÜYÜK MOBİL (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(247,245,240,0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(34,197,94,0.12);
    border-bottom: 1px solid rgba(34,197,94,0.12);
    flex-direction: column;
    padding: 16px 24px 20px;
    gap: 4px;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .nav-cta {
    width: fit-content;
    margin-top: 8px;
    padding: 10px 22px;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { max-width: 100%; }

  .hero-eyebrow { justify-content: center; }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 40px;
  }

  .stat-item { text-align: center; }

  .hero-visual { margin-top: 40px; }

  .h-browser { max-width: 100%; }

  /* Grid'ler */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .shots-grid {
    grid-template-columns: 1fr;
  }

  /* Lightbox ok butonları */
  .nt-lb-prev { left: -14px; width: 38px; height: 38px; font-size: 0.85rem; }
  .nt-lb-next { right: -14px; width: 38px; height: 38px; font-size: 0.85rem; }
  .nt-lb-img-wrap { max-width: 94vw; max-height: 64vh; }
  .nt-lb-img { max-width: 94vw; max-height: 64vh; }
  .nt-lb-box { max-width: 96vw; }
}

/* ============================================================
   RESPONSIVE — KÜÇÜK MOBİL (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { justify-content: center; }

  .hero-stats {
    flex-direction: row;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .shots-grid {
    gap: 12px;
  }
}