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

/* ============================================================
   USKUDAR IKLIMLENDIRME — Modern tema
   Sora (baslik) + Inter (govde), ferah beyaz zemin, teal aksan,
   yumusak yuvarlak kartlar, gradient hero, pill butonlar.
   ============================================================ */

:root {
  --primary: #14b8a6;            /* teal aksan (head.php DB'den ezer) */
  --primary-dark: #0d9488;
  --primary-soft: rgba(20, 184, 166, 0.12);
  --primary-glow: rgba(20, 184, 166, 0.35);

  --ink: #0c1b1e;                /* koyu bolum/footer */
  --ink-soft: #13272b;
  --paper: #f5f8f7;             /* zemin */
  --surface: #ffffff;            /* kart yuzeyi */
  --surface-2: #eef3f2;
  --text: #24373a;
  --muted: #67797c;
  --line: #e3ebe9;

  /* Legacy takma adlar (sablonlardaki inline stiller calismaya devam etsin) */
  --primary-light: var(--primary-soft);
  --primary-hover: var(--primary-dark);
  --secondary: var(--ink);
  --bg-main: var(--surface);
  --bg-secondary: var(--paper);
  --bg-tertiary: var(--surface-2);
  --text-main: var(--text);
  --text-dark: var(--ink);
  --text-muted: var(--muted);

  --header-height: 82px;
  --container-width: 1200px;
  --border-radius: 20px;
  --radius-sm: 14px;
  --transition-speed: 0.28s;
  --box-shadow: 0 2px 4px rgba(12, 27, 30, 0.04), 0 24px 48px -28px rgba(12, 27, 30, 0.28);
  --box-shadow-hover: 0 4px 8px rgba(12, 27, 30, 0.05), 0 32px 60px -24px rgba(13, 148, 136, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--paper);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; width: 100%; }

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1rem;
  color: var(--ink);
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.3rem; font-weight: 600; }

.text-primary { color: var(--primary); }

/* Kicker — modern pill rozet */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 22px;
}

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(245, 248, 247, 0.8);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background var(--transition-speed), box-shadow var(--transition-speed), border-color var(--transition-speed);
}
header.scrolled { box-shadow: 0 8px 30px rgba(12, 27, 30, 0.07); }
.header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 11px;
  letter-spacing: -0.03em;
}
.logo img { height: 40px; }
.logo-text { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }

/* Yalnizca ana sayfada: koyu hero uzerinde seffaf + acik header */
body.sayfa-hero header:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
body.sayfa-hero header:not(.scrolled) .logo,
body.sayfa-hero header:not(.scrolled) .logo-text { color: #fff; }
body.sayfa-hero header:not(.scrolled) .nav-links a { color: rgba(255, 255, 255, 0.82); }
body.sayfa-hero header:not(.scrolled) .hamburger { color: #fff; }

.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--text); position: relative; }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition-speed);
}
.nav-links a:not(.btn):hover::after, .nav-links a:not(.btn).active::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }

.hamburger { display: none; cursor: pointer; background: none; border: none; color: var(--ink); font-size: 1.7rem; z-index: 1001; line-height: 1; }

/* ---------- Butonlar (pill) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  transition: all var(--transition-speed);
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--primary); color: #04201d; box-shadow: 0 10px 24px -8px var(--primary-glow); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -10px var(--primary-glow); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-dark); transform: translateY(-2px); }

.hero .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.32); }
.hero .btn-outline:hover { border-color: var(--primary); color: #fff; background: rgba(255, 255, 255, 0.06); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  margin-top: calc(-1 * var(--header-height));
  padding: calc(var(--header-height) + 70px) 0 90px;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(20, 184, 166, 0.28), transparent 60%),
    radial-gradient(760px 520px at 8% 108%, rgba(20, 184, 166, 0.14), transparent 55%),
    linear-gradient(160deg, #0b191c 0%, #10262a 60%, #0b191c 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.16; mix-blend-mode: luminosity; }
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000, transparent 72%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 800px; }
.hero .kicker { color: #7fe9dc; background: rgba(20, 184, 166, 0.16); }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .text-primary { color: #5eead4; }
.hero .hero-alt { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: #7fe9dc; font-weight: 500; margin-bottom: 18px; }
.hero p { font-size: 1.1rem; color: rgba(233, 242, 240, 0.78); margin-bottom: 38px; max-width: 640px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-strip { position: relative; z-index: 2; margin-top: 64px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-strip > div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 20px 26px;
  backdrop-filter: blur(6px);
  min-width: 170px;
}
.hero-strip .stat-deger { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.8rem; color: #5eead4; line-height: 1; }
.hero-strip .stat-etiket { font-size: 0.82rem; color: rgba(233, 242, 240, 0.68); margin-top: 8px; }

/* ---------- Bolumler ---------- */
.section-padding { padding: 110px 0; }
.section-bg-alt { background: var(--surface); }
.section-dark {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(20,184,166,0.18), transparent 60%),
    linear-gradient(160deg, #0b191c, #10262a);
  color: #dfeceb;
}
.section-dark h2 { color: #fff; }
.section-dark .kicker { color: #7fe9dc; background: rgba(20, 184, 166, 0.16); }

.section-title { max-width: 720px; margin-bottom: 60px; }
.section-title.merkez { margin-left: auto; margin-right: auto; text-align: center; }
.section-title.merkez .kicker { display: inline-flex; }
.section-title p.aciklama { color: var(--muted); font-size: 1.06rem; margin-top: 16px; }
.section-dark .section-title p.aciklama { color: rgba(223, 236, 235, 0.72); }

/* ---------- Hakkimizda ---------- */
.about-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 68px; align-items: center; }
.about-metin p { color: var(--muted); margin-bottom: 16px; }
.about-galeri { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 155px; gap: 16px; }
.about-galeri img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); box-shadow: var(--box-shadow); }
.about-galeri img:first-child { grid-row: span 2; height: 100%; }
.about-istatistik { display: flex; gap: 44px; margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.about-istatistik .deger { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.8rem; color: var(--primary-dark); line-height: 1; }
.about-istatistik .etiket { font-size: 0.86rem; color: var(--muted); margin-top: 6px; }

/* ---------- Hizmet kartlari ---------- */
.hizmet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 28px; }
.hizmet-kart {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.hizmet-kart:hover { transform: translateY(-8px); box-shadow: var(--box-shadow-hover); }
.hizmet-kart-img { width: 100%; height: 208px; object-fit: cover; }
.hizmet-kart-govde { padding: 32px; display: flex; flex-direction: column; flex-grow: 1; }
.hizmet-numara { font-family: 'Sora', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; color: var(--primary-dark); margin-bottom: 12px; }
.hizmet-ikon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--primary-soft), rgba(20,184,166,0.04));
  color: var(--primary-dark);
  border-radius: 16px;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.hizmet-kart-govde h3 { font-size: 1.22rem; margin-bottom: 12px; }
.hizmet-kart-govde .aciklama { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
.hizmet-maddeler { margin-top: auto; border-top: 1px solid var(--line); padding-top: 18px; }
.hizmet-maddeler li { position: relative; padding-left: 28px; color: var(--text); font-size: 0.9rem; margin-bottom: 11px; }
.hizmet-maddeler li:last-child { margin-bottom: 0; }
.hizmet-maddeler li::before {
  content: '\2713';
  position: absolute; left: 0; top: 2px;
  color: var(--primary-dark);
  font-size: 0.68rem;
  font-weight: 700;
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary-soft);
  border-radius: 50%;
}

/* ---------- Matris ---------- */
.matris-tablo { width: 100%; border-collapse: separate; border-spacing: 0; }
.matris-tablo thead th {
  text-align: left;
  padding: 18px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7fe9dc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.matris-tablo tbody td { padding: 26px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.09); vertical-align: top; font-size: 0.97rem; }
.matris-tablo tbody tr:last-child td { border-bottom: none; }
.matris-tablo tbody tr { transition: background var(--transition-speed); }
.matris-tablo tbody tr:hover { background: rgba(255, 255, 255, 0.03); }
.matris-tablo .m-lokasyon { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.08rem; color: #fff; width: 26%; }
.matris-tablo .m-ihtiyac { color: rgba(223, 236, 235, 0.74); width: 40%; }
.matris-tablo .m-cozum { color: #5eead4; font-weight: 500; }
.matris-kaydir {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.02);
}
.matris-kaydir table { min-width: 680px; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 28px; }
.blog-kart {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.blog-kart:hover { transform: translateY(-8px); box-shadow: var(--box-shadow-hover); }
.blog-kart-img { width: 100%; height: 205px; object-fit: cover; }
.blog-kart-govde { padding: 26px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-kart-govde h3 { font-size: 1.22rem; margin-bottom: 10px; }
.blog-kart-govde .ozet { color: var(--muted); font-size: 0.93rem; margin-bottom: 18px; flex-grow: 1; }
.oku-link { color: var(--primary-dark); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; transition: gap var(--transition-speed); }
.blog-kart:hover .oku-link { gap: 12px; }

/* ---------- Accordion (SSS) ---------- */
.accordion { max-width: 860px; margin: 0 auto; }
.accordion-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; background: var(--surface); overflow: hidden; transition: box-shadow var(--transition-speed), border-color var(--transition-speed); }
.accordion-item:hover { border-color: rgba(20, 184, 166, 0.4); }
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  background: none;
  border: none;
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.accordion-header:hover { color: var(--primary-dark); }
.accordion-header i { color: var(--primary); transition: transform var(--transition-speed); font-size: 1rem; }
.accordion-header.active i { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height var(--transition-speed) ease-out; }
.accordion-body { padding: 0 28px 24px; color: var(--muted); }

/* ---------- Formlar ---------- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--ink); font-size: 0.9rem; }
.form-control {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-speed), box-shadow var(--transition-speed), background var(--transition-speed);
}
.form-control:focus { border-color: var(--primary); background: var(--surface); box-shadow: 0 0 0 4px var(--primary-soft); }

.clean-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--border-radius); overflow: hidden; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--border-radius); padding: 36px; box-shadow: var(--box-shadow); }

/* ---------- WhatsApp ---------- */
.whatsapp-btn {
  position: fixed; bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: transform var(--transition-speed);
  background: transparent;
}
.whatsapp-btn:hover { transform: scale(1.08); }
.whatsapp-btn img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(37, 211, 102, 0.45)); }
.whatsapp-btn i { font-size: 2.4rem; color: #25d366; }

/* ---------- Footer ---------- */
footer {
  background: linear-gradient(160deg, #0b191c, #0e2226);
  color: rgba(223, 236, 235, 0.7);
  padding: 84px 0 34px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 46px; margin-bottom: 54px; }
.footer-col h3 { font-family: 'Sora', sans-serif; font-size: 1.02rem; color: #fff; margin-bottom: 22px; font-weight: 600; }
.footer-col p, .footer-col a { color: rgba(223, 236, 235, 0.62); margin-bottom: 13px; font-size: 0.92rem; display: flex; align-items: center; gap: 10px; }
.footer-col a:hover { color: #5eead4; }
.footer-col .footer-logo { margin-bottom: 20px; display: inline-flex; }
.footer-col .footer-logo img { height: 42px; }
.footer-aciklama { display: block !important; line-height: 1.8; }
.footer-col p i, .footer-col a i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.footer-bottom { text-align: center; padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(223, 236, 235, 0.45); font-size: 0.86rem; }

/* ---------- Iletisim ---------- */
.iletisim-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .iletisim-grid { grid-template-columns: 1fr; } }

/* ---------- Ic sayfa basligi ---------- */
.ic-hero {
  background:
    radial-gradient(800px 420px at 88% -20%, rgba(20,184,166,0.2), transparent 60%),
    linear-gradient(160deg, #0b191c, #10262a);
  color: #dfeceb;
  padding: 76px 0 64px;
}
.ic-hero .kicker { color: #7fe9dc; background: rgba(20, 184, 166, 0.16); }
.ic-hero h1 { color: #fff; font-size: clamp(2.1rem, 4vw, 3.1rem); margin-bottom: 14px; }
.ic-hero p { color: rgba(223, 236, 235, 0.74); max-width: 640px; }

/* ---------- Blog ekleri ---------- */
.blog-search-form { display: flex; gap: 12px; flex-wrap: wrap; width: 100%; }
.blog-meta-row { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; color: var(--muted); font-size: 0.88rem; }
.blog-meta-row span { display: flex; align-items: center; gap: 8px; }
.blog-meta-row .etiket { background: var(--primary-soft); color: var(--primary-dark); border-radius: 999px; padding: 5px 14px; font-size: 0.78rem; font-weight: 600; }
.kategori-listesi { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 46px; }
.kategori-listesi a {
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition-speed);
}
.kategori-listesi a:hover, .kategori-listesi a.aktif { background: var(--primary); border-color: var(--primary); color: #04201d; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; font-size: 0.86rem; color: var(--muted); }
.breadcrumb li::after { content: '/'; margin-left: 8px; color: var(--line); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a:hover { color: var(--primary-dark); }

.sayfalama { display: flex; justify-content: center; gap: 8px; margin-top: 58px; flex-wrap: wrap; }
.sayfalama a, .sayfalama span {
  min-width: 46px; padding: 12px 15px;
  text-align: center; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--line);
  color: var(--muted); font-weight: 600; transition: var(--transition-speed);
}
.sayfalama a:hover { border-color: var(--primary); color: var(--primary-dark); }
.sayfalama .aktif { background: var(--primary); border-color: var(--primary); color: #04201d; }

.bos-durum { background: var(--surface); border: 1px solid var(--line); border-radius: var(--border-radius); padding: 68px 30px; text-align: center; color: var(--muted); }

.yasal-icerik h2, .yasal-icerik h3 { margin: 32px 0 12px; color: var(--ink); }
.yasal-icerik p { margin-bottom: 15px; }
.yasal-icerik ul, .yasal-icerik ol { padding-left: 22px; margin-bottom: 15px; }
.yasal-icerik li { margin-bottom: 8px; }
.son-guncelleme { color: var(--muted); font-size: 0.9rem; margin-bottom: 25px; }
.ilgili-yazilar { margin-top: 66px; }

/* ---------- Toast ---------- */
.toast-kapsayici { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
.toast {
  display: flex; align-items: center; gap: 12px;
  min-width: 280px; max-width: 380px;
  padding: 16px 20px; border-radius: var(--radius-sm);
  color: #fff; font-weight: 500; font-size: 0.9rem;
  box-shadow: 0 16px 40px rgba(12, 27, 30, 0.25);
  transform: translateY(16px); opacity: 0;
  transition: all var(--transition-speed) ease;
  pointer-events: auto;
}
.toast.gorunur { transform: translateY(0); opacity: 1; }
.toast i { font-size: 1.2rem; line-height: 1; flex-shrink: 0; }
.toast-basari { background-color: #0d9488; }
.toast-hata { background-color: #dc4a3d; }
.toast-bilgi { background-color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .about-split { grid-template-columns: 1fr; gap: 46px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
}
@media (max-width: 768px) {
  .section-padding { padding: 76px 0; }
  .hamburger { display: block; }
  .nav-links {
    position: fixed;
    top: var(--header-height); left: -100%;
    width: 100%; height: calc(100vh - var(--header-height));
    background: var(--paper);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 30px;
    transition: left 0.4s ease;
    z-index: 1000;
  }
  .nav-links.active { left: 0; }
  .nav-links a { font-size: 1.2rem; color: var(--ink) !important; }
  body.sayfa-hero header:not(.scrolled) .nav-links a { color: var(--ink) !important; }
  .hero-strip { gap: 12px; }
  .hero-strip > div { min-width: 140px; flex: 1; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
